Home
last modified time | relevance | path

Searched defs:X2 (Results 1 – 25 of 197) sorted by relevance

12345678

/external/clang/test/SemaCXX/
Dcxx1y-generic-lambdas.cpp860 struct X2 { struct
861 enum { E = [](auto i) { return i; }(3) }; //expected-error{{inside of a constant expression}}\ in __anone224b50b5902()
864 int L = ([] (int i) { return i; })(2); in __anone224b50b5a02()
865 void foo(int i = ([] (int i) { return i; })(2)) { } in foo()
866 int B : ([](int i) { return i; })(3); //expected-error{{inside of a constant expression}}\ in __anone224b50b5c02()
869 int arr[([](int i) { return i; })(3)]; //expected-error{{inside of a constant expression}}\ in __anone224b50b5d02()
871 int (*fp)(int) = [](int i) { return i; }; in __anone224b50b5e02()
872 void fooptr(int (*fp)(char) = [](char c) { return 0; }) { } in fooptr()
873 int L2 = ([](auto i) { return i; })(2); in __anone224b50b6002()
874 void fooG(int i = ([] (auto i) { return i; })(2)) { } in fooG()
[all …]
/external/sdv/vsomeip/third_party/boost/serialization/test/
Dmulti_shared2.cpp12 struct X2{ struct
17 BOOST_CLASS_IMPLEMENTATION(X2, boost::serialization::object_class_info) in BOOST_CLASS_IMPLEMENTATION() argument
/external/clang/test/SemaTemplate/
Dtemp_class_order.cpp30 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
Dexplicit-instantiation.cpp47 struct X2 { struct
57 template int X2::f0(int); // expected-error{{not an instantiation}} argument
Dinstantiate-member-pointers.cpp17 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
Dcanonical-expr-type.cpp41 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;
Dpartial-spec-instantiate.cpp13 template <class T> struct X2 {}; struct
16 struct X2<U*> { struct
22 void a(char *a, char *b) {X2<char*>::f();} in a() argument
Dtemp_explicit_cxx0x.cpp14 template<typename T> struct X2 { }; // expected-note{{here}} struct
23 template struct X2<float>; // expected-error{{at global scope}} variable
Dtemp_explicit.cpp39 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
Dinstantiate-method.cpp107 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
/external/clang/test/CXX/class/class.mem/
Dp14.cpp17 struct X2 { struct
19 float X2; // expected-error{{member 'X2' has the same name as its class}} argument
Dp13.cpp25 struct X2 { struct
26 typedef int X2; // expected-error{{member 'X2' has the same name as its class}} argument
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp1.cpp61 struct X2 { struct
76 T X2<T, U>::static_member1 = 17; // expected-error{{cannot initialize}} argument
/external/clang/test/CodeGenCXX/
Dattr-used.cpp19 struct X2 { struct
25 // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23barEv argument
Dinstantiate-temporaries.cpp12 struct X2 { struct
29 (X2){}; in compound_literal() argument
Dglobal-llvm-constant.cpp26 struct X2 { struct
31 extern const X2 x2b; argument
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
Dp9.cpp17 template<template<class> class X0 = X0> struct X2 { }; struct
18 template<> struct X2<X0> { static const bool value = true; }; argument
/external/clang/test/CodeGenObjCXX/
Dimplicit-copy-constructor.mm65 struct X2 { X1<int> result; }; argument
66 void test_X2() argument
/external/sdv/vsomeip/third_party/boost/core/test/
Dlightweight_test_test2.cpp28 struct X2 struct
37 BOOST_TEST_TRAIT_TRUE(( Y1<X1::type, X2::type> )); in main() argument
Dlightweight_test_fail8.cpp28 struct X2 struct
35 BOOST_TEST_TRAIT_FALSE(( Y1<X1::type, X2::type> )); in main() argument
Dlightweight_test_fail7.cpp28 struct X2 struct
35 BOOST_TEST_TRAIT_TRUE(( Y2<X1::type, X2::type> )); in main() argument
/external/clang/test/CXX/temp/temp.param/
Dp3.cpp27 template<class T, T i> struct X2 { struct
28 void f(T t) in f()
/external/clang/test/Parser/
Dmissing-end-4.m10 @interface X2 interface
12 @implementation X2 // expected-note {{implementation started here}} implementation
/external/webrtc/modules/audio_processing/aec3/
Dresidual_echo_estimator.cc98 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
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
DF_incomplete.pass.cpp49 IncompleteReturnType X2 = CX; in test_pr34298() local
57 IncompleteReturnType X2 = Empty; in test_pr34298() local

12345678