/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | cxx1y-generic-lambdas.cpp | 860 struct X2 { struct 861 enum { E = [](auto i) { return i; }(3) }; //expected-error{{inside of a constant expression}}\ in __anon1df60a8b5902() 864 int L = ([] (int i) { return i; })(2); in __anon1df60a8b5a02() 865 void foo(int i = ([] (int i) { return i; })(2)) { } in __anon1df60a8b5b02() 866 int B : ([](int i) { return i; })(3); //expected-error{{inside of a constant expression}}\ in __anon1df60a8b5c02() 869 int arr[([](int i) { return i; })(3)]; //expected-error{{inside of a constant expression}}\ in __anon1df60a8b5d02() 871 int (*fp)(int) = [](int i) { return i; }; in __anon1df60a8b5e02() 872 void fooptr(int (*fp)(char) = [](char c) { return 0; }) { } in __anon1df60a8b5f02() 873 int L2 = ([](auto i) { return i; })(2); in __anon1df60a8b6002() 874 void fooG(int i = ([] (auto i) { return i; })(2)) { } in fooG() [all …]
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
H A D | p1.cpp | 61 struct X2 { struct 76 T X2<T, U>::static_member1 = 17; // expected-error{{cannot initialize}} argument
|
/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | explicit-instantiation.cpp | 47 struct X2 { struct 57 template int X2::f0(int); // expected-error{{not an instantiation}} argument
|
H A D | instantiate-member-pointers.cpp | 17 struct X2 { struct 24 template struct X2<int, Y>; variable 25 template struct X2<int&, Y>; // expected-note{{instantiation}} variable 26 template struct X2<const void, Y>; // expected-note{{instantiation}} variable
|
H A D | temp_class_order.cpp | 30 struct X2 { }; struct 33 struct X2<T*, U> { }; // expected-note{{matches}} struct 36 struct X2<T, U*> { }; // expected-note{{matches}} struct 39 struct X2<const T*, const U*> { }; struct
|
H A D | instantiate-method.cpp | 107 struct X2 : X0Base, U { struct 108 int &f2() { return X0Base::f(); } in f2() 164 template < typename U = X1<int> > struct X2 struct 166 X2( U = U()) in X2() argument
|
H A D | canonical-expr-type.cpp | 41 struct X2 { struct 42 typedef T __attribute__((ext_vector_type(N))) type1; 43 typedef T __attribute__((ext_vector_type(M))) type2; 44 typedef T __attribute__((ext_vector_type(N))) type3;
|
H A D | default-arguments.cpp | 51 struct X2 { struct 74 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}} argument
|
H A D | temp_explicit.cpp | 39 template struct X2<float>; // expected-error{{undefined template}} variable 42 struct X2 { struct 46 template struct X2<int>; // okay variable 47 template struct X2<int&>; // expected-note{{in instantiation of}} variable
|
H A D | partial-spec-instantiate.cpp | 13 template <class T> struct X2 {}; struct 16 struct X2<U*> { struct 22 void a(char *a, char *b) {X2<char*>::f();} in a() argument
|
H A D | instantiate-function-1.cpp | 16 struct X2 { struct 26 template struct X2<int>; variable 27 template struct X2<int&>; // expected-note{{instantiation of}} variable
|
H A D | friend-template.cpp | 154 template<typename , typename T> struct X2 struct 156 typename T::type e; 186 template<typename , typename T> struct X2 struct 188 typename T::type e;
|
/aosp_15_r20/external/webrtc/modules/audio_processing/aec3/ |
H A D | residual_echo_estimator.cc | 98 const std::array<float, kFftLengthBy2Plus1>& X2, in NonLinearEstimate() 110 rtc::ArrayView<float, kFftLengthBy2Plus1> X2) { in ApplyNoiseGate() 125 rtc::ArrayView<float, kFftLengthBy2Plus1> X2) { in EchoGeneratingPower() 223 std::array<float, kFftLengthBy2Plus1> X2; in Estimate() local 273 rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>> X2 = in UpdateRenderNoisePower() local 320 rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>> X2 = in UpdateReverb() local
|
H A D | erle_estimator_unittest.cc | 83 std::array<float, kFftLengthBy2Plus1>* X2, in FormFarendFrame() 108 std::array<float, kFftLengthBy2Plus1>* X2, in FormNearendFrame() 157 std::array<float, kFftLengthBy2Plus1> X2; in TEST_P() local 222 std::array<float, kFftLengthBy2Plus1> X2; in TEST_P() local
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/test/ |
D | multi_shared2.cpp | 12 struct X2{ struct 17 BOOST_CLASS_IMPLEMENTATION(X2, boost::serialization::object_class_info) in BOOST_CLASS_IMPLEMENTATION() argument
|
/aosp_15_r20/external/clang/test/CXX/class/class.mem/ |
H A D | p14.cpp | 17 struct X2 { struct 19 float X2; // expected-error{{member 'X2' has the same name as its class}} member
|
H A D | p13.cpp | 25 struct X2 { struct 26 typedef int X2; // expected-error{{member 'X2' has the same name as its class}} argument
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | attr-used.cpp | 19 struct X2 { struct 25 // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23barEv argument
|
H A D | override-layout.cpp | 27 struct PACKED X2 : public X1, public X0, public Empty1 { struct 28 short x; 29 int y;
|
/aosp_15_r20/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/ |
H A D | p9.cpp | 17 template<template<class> class X0 = X0> struct X2 { }; struct 18 template<> struct X2<X0> { static const bool value = true; }; argument
|
/aosp_15_r20/external/clang/test/CodeGenObjCXX/ |
H A D | implicit-copy-constructor.mm | 65 struct X2 { X1<int> result; }; argument 66 void test_X2() argument
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/unordered/test/unordered/ |
D | merge_tests.cpp | 139 void merge_empty_test(X1*, X2*, test::random_generator generator) in merge_empty_test() argument 169 void merge_into_unique_keys_test(X1*, X2*, int hash_equal1, int hash_equal2, in merge_into_unique_keys_test() argument 202 void merge_into_equiv_keys_test(X1*, X2*, int hash_equal1, int hash_equal2, in merge_into_equiv_keys_test() argument
|
/aosp_15_r20/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
H A D | p3-0x.cpp | 123 struct X2 { struct 124 int m; 129 auto g(T x) -> decltype(f(x)) { return 0; } in g()
|
/aosp_15_r20/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
H A D | templates.cpp | 142 …struct X2 { // expected-note{{in instantiation of default member initializer 'NonLocalLambdaInstan… struct 148 …X2<int*> x2ip; // expected-note{{implicit default constructor for 'NonLocalLambdaInstantation::X2<…
|
/aosp_15_r20/external/lzma/CPP/7zip/UI/Far/ |
H A D | FarUtils.h | 36 int X1,Y1,X2,Y2; member 138 int X1, int Y1, int X2, int Y2, DWORD flags, int startLine, int startChar) in Editor() 145 int X1, int Y1, int X2, int Y2, DWORD flags) in Viewer()
|