/external/clang/test/CodeGenCXX/ |
D | mangle-extreme.cpp | 3 struct X { }; struct 6 void f(X****************************************, in f() argument
|
D | atomicinit.cpp | 61 struct X { struct 63 short n; 64 char c; 77 _Atomic(X) c{X(3)}; in _Atomic() argument 91 struct X { struct 92 constexpr X(int n) : n(n) {} in X() function 93 short n; 94 char c = 6; 98 _Atomic(X) c{X(3)}; in _Atomic() argument
|
/external/clang/test/SemaTemplate/ |
D | ms-class-specialization-class-scope.cpp | 6 template<typename T> struct X { typedef int x; }; struct in A 10 …template<> struct X<int>; // expected-error {{explicit specialization of 'A::X<int>' after instant… 15 template<> struct X<double> { struct in A 21 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in A 22 template<> struct X<float> {}; // expected-error {{redefinition of 'A::X<float>'}} argument 30 template<typename U> struct X { typedef int x; }; argument 39 template<> struct X<double> { struct in B 40 typedef int y; 45 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in B 46 template<> struct X<T> {}; // expected-error {{redefinition of 'X<float>'}} struct in B
|
D | injected-class-name.cpp | 3 struct X { struct 4 X<T*> *ptr; argument 10 struct X<int***> { struct 11 typedef X<int***> *ptr; argument 57 struct X { struct 58 typedef T foo; 59 typedef X<T> xt; 60 typename xt::foo *t;
|
/external/google-fruit/extras/benchmark/ |
D | compile_time_benchmark.cpp | 20 #define REPEAT(X) REPEAT_1(X, _) argument 23 #define REPEAT(X) REPEAT_2(X, _) argument 26 #define REPEAT(X) REPEAT_4(X, _) argument 29 #define REPEAT(X) REPEAT_8(X, _) argument 32 #define REPEAT(X) REPEAT_16(X, _) argument 35 #define REPEAT(X) REPEAT_32(X, _) argument 38 #define REPEAT(X) REPEAT_64(X, _) argument 41 #define REPEAT(X) REPEAT_128(X, _) argument 44 #define REPEAT(X) REPEAT_256(X, _) argument 47 #define REPEAT(X) REPEAT_512(X, _) argument [all …]
|
/external/clang/test/CodeGenObjCXX/ |
D | nrvo.mm | 4 struct X { struct 5 X(); argument 6 X(const X&); field 7 ~X(); field 15 - (X)getNRVO { argument
|
D | literals.mm | 5 struct X { struct 6 X(); argument 7 ~X(); argument 24 // CHECK-NEXT: call void @llvm.lifetime.start(i64 8, i8* [[PTR1]]) argument
|
/external/clang/test/CodeGen/ |
D | 2007-04-11-PR1321.c | 3 struct X { struct 4 unsigned int e0 : 17; 5 unsigned int e1 : 17; 6 unsigned int e2 : 17; 7 unsigned int e3 : 17; 8 unsigned int e4 : 17; 9 unsigned int e5 : 17; 10 unsigned int e6 : 17; 11 unsigned int e7 : 17;
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/ |
D | p2.cpp | 3 template<int I, int J, class T> struct X { struct 7 template<int I, int J> struct X<I, J, int> { struct 11 template<int I> struct X<I, I, int> { argument 15 int array0[X<0, 0, float>::value == 0? 1 : -1]; argument 21 struct X { struct 22 static const unsigned value = 1; 26 struct X<T, U, typename T::is_b> { struct 27 static const unsigned value = 2; 31 struct X<T, typename T::is_a, typename T::is_b> { struct 32 static const unsigned value = 3;
|
/external/clang/test/SemaObjCXX/ |
D | propert-dot-error.mm | 4 struct X { struct 5 X(); field 6 X(const X&); field 7 ~X(); argument 15 X xval; argument 19 - (void)setx:(X)x; argument
|
D | literals.mm | 71 struct X { struct 72 ConvertibleTo<id> x; 73 ConvertibleTo<id> get(); 76 template<typename T> T test_numeric_instantiation() { 100 X x; argument 107 void test_array_literals(T t) { 111 template void test_array_literals(id); 112 template void test_array_literals(NSArray*); 113 …e{{in instantiation of function template specialization 'test_array_literals<int>' requested here}} 116 void test_dictionary_literals(T t, U u) { [all …]
|
D | objc-container-subscripting.mm | 59 struct X { struct 60 ConvertibleTo<id> x; 61 ConvertibleTo<id> get(); 64 NSMutableArray *test_array_convertibility(ConvertibleTo<NSMutableArray*> toArray, 81 id test_dict_convertibility(ConvertibleTo<NSMutableDictionary*> toDict, 103 void test_bad_variadic_array_subscripting(Args ...args) { 109 void test_variadic_array_subscripting(Args ...args) { 113 template void test_variadic_array_subscripting(id arg1, NSMutableArray* arg2, id arg3); 118 void test_variadic_dictionary_subscripting(Index I, Args ...args) { 122 … void test_variadic_dictionary_subscripting(Key *key, id arg1, NSMutableDictionary* arg2, id arg3); [all …]
|
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.observe/ |
D | value_or.pass.cpp | 32 struct X struct 36 constexpr X(int i) : i_(i) {} in X() function 37 constexpr X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() argument 38 constexpr X(const Y& y) : i_(y.i_) {} in X() function 39 constexpr X(Y&& y) : i_(y.i_+1) {} in X() function
|
/external/python/cpython2/Include/ |
D | pymath.h | 73 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument 75 # define Py_FORCE_DOUBLE(X) (X) argument 95 #define Py_IS_NAN(X) isnan(X) argument 97 #define Py_IS_NAN(X) ((X) != (X)) argument 115 # define Py_IS_INFINITY(X) isinf(X) argument 117 # define Py_IS_INFINITY(X) ((X) && \ argument 130 #define Py_IS_FINITE(X) isfinite(X) argument 132 #define Py_IS_FINITE(X) finite(X) argument 134 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument 207 #define Py_OVERFLOWED(X) isinf(X) argument [all …]
|
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/ |
D | default_recursive.pass.cpp | 18 struct X struct 20 std::multimap<int, X> m; argument 21 std::multimap<int, X>::iterator i; argument 22 std::multimap<int, X>::const_iterator ci; argument 23 std::multimap<int, X>::reverse_iterator ri; argument 24 std::multimap<int, X>::const_reverse_iterator cri; argument
|
/external/libcxx/test/std/containers/associative/map/map.cons/ |
D | default_recursive.pass.cpp | 18 struct X struct 20 std::map<int, X> m; argument 21 std::map<int, X>::iterator i; argument 22 std::map<int, X>::const_iterator ci; argument 23 std::map<int, X>::reverse_iterator ri; argument 24 std::map<int, X>::const_reverse_iterator cri; argument
|
/external/python/cpython3/Include/ |
D | pymath.h | 74 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument 76 # define Py_FORCE_DOUBLE(X) (X) argument 99 #define Py_IS_NAN(X) isnan(X) argument 101 #define Py_IS_NAN(X) ((X) != (X)) argument 119 # define Py_IS_INFINITY(X) isinf(X) argument 121 # define Py_IS_INFINITY(X) ((X) && \ argument 134 #define Py_IS_FINITE(X) isfinite(X) argument 136 #define Py_IS_FINITE(X) finite(X) argument 138 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument 211 #define Py_OVERFLOWED(X) isinf(X) argument [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | OutputBuffer.h | 52 void outbyte(unsigned char X) { in outbyte() 55 void outhalf(unsigned short X) { in outhalf() 64 void outword(unsigned X) { in outword() 77 void outxword(uint64_t X) { in outxword() 98 void outaddr32(unsigned X) { in outaddr32() 101 void outaddr64(uint64_t X) { in outaddr64() 104 void outaddr(uint64_t X) { in outaddr() 126 void fixhalf(unsigned short X, unsigned Offset) { in fixhalf() 131 void fixword(unsigned X, unsigned Offset) { in fixword() 138 void fixxword(uint64_t X, unsigned Offset) { in fixxword() [all …]
|
/external/clang/test/CXX/class.access/class.friend/ |
D | p9-cxx0x.cpp | 11 class X { class 22 class X { class 35 class X { class 51 class X { class 65 template <class T> class X { class 76 template <class T> class X { class 91 template <class T> class X { class 107 template <class T> class X { class
|
/external/syzkaller/pkg/serializer/ |
D | serializer_test.go | 26 type X struct { struct 27 Y Y member 28 P *Y 29 A []Y 30 F bool 31 S string 32 T T member
|
/external/arm-neon-tests/ |
D | ref_vldX.c | 37 #define DECL_VLDX(T1, W, N, X) \ in exec_vldX() argument 47 #define TEST_VLDX(Q, T1, T2, W, N, X) \ in exec_vldX() argument 57 #define TEST_EXTRA_CHUNK(T1, W, N, X,Y) \ in exec_vldX() argument 66 #define DECL_ALL_VLDX(X) \ in exec_vldX() argument 89 #define DECL_ALL_VLDX_FP16(X) \ in exec_vldX() argument 94 #define TEST_ALL_VLDX(X) \ in exec_vldX() argument 117 #define TEST_ALL_VLDX_FP16(X) \ in exec_vldX() argument 122 #define TEST_ALL_EXTRA_CHUNKS(X, Y) \ in exec_vldX() argument 145 #define TEST_ALL_EXTRA_CHUNKS_FP16(X, Y) \ in exec_vldX() argument
|
D | ref_vldX_dup.c | 37 #define DECL_VLDX_DUP(T1, W, N, X) \ in exec_vldX_dup() argument 47 #define TEST_VLDX_DUP(Q, T1, T2, W, N, X) \ in exec_vldX_dup() argument 58 #define TEST_EXTRA_CHUNK(T1, W, N, X,Y) \ in exec_vldX_dup() argument 65 #define DECL_ALL_VLDX_DUP(X) \ in exec_vldX_dup() argument 79 #define DECL_ALL_VLDX_DUP_FP16(X) \ in exec_vldX_dup() argument 83 #define TEST_ALL_VLDX_DUP(X) \ in exec_vldX_dup() argument 97 #define TEST_ALL_VLDX_DUP_FP16(X) \ in exec_vldX_dup() argument 101 #define TEST_ALL_EXTRA_CHUNKS(X, Y) \ in exec_vldX_dup() argument 115 #define TEST_ALL_EXTRA_CHUNKS_FP16(X, Y) \ in exec_vldX_dup() argument
|
/external/clang/test/SemaCXX/ |
D | delete-mismatch.h | 3 struct X { struct 5 X(); argument 7 X(bool) in X() function 9 ~X() in ~X() argument
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_bitfields.py | 56 class X(Structure): class 67 class X(Structure): class 80 class X(Structure): class 97 class X(Structure): class 150 class X(Structure): class 154 class X(Structure): class 162 class X(Structure): class 168 class X(Structure): class 179 class X(Structure): class 196 class X(Structure): class [all …]
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_bitfields.py | 57 class X(Structure): class 68 class X(Structure): class 81 class X(Structure): class 98 class X(Structure): class 151 class X(Structure): class 155 class X(Structure): class 163 class X(Structure): class 169 class X(Structure): class 180 class X(Structure): class 197 class X(Structure): class [all …]
|