Home
last modified time | relevance | path

Searched defs:X (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/external/clang/test/CodeGenCXX/
Dmangle-extreme.cpp3 struct X { }; struct
6 void f(X****************************************, in f() argument
/external/clang/test/SemaTemplate/
Dms-class-specialization-class-scope.cpp6 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
Dinjected-class-name.cpp3 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;
Dpartial-spec-instantiate.cpp4 template <class T> struct X {}; struct
6 template <> struct X<char> struct
24 struct X { struct
25 int m;
44 template<typename T, T N> struct X { }; struct
45 template<bool C> struct X<bool, C> { struct
46 typedef int type;
/external/clang/test/CodeGenObjCXX/
Dnrvo.mm4 struct X { struct
5 X(); argument
6 X(const X&); argument
7 ~X(); argument
15 - (X)getNRVO { argument
Dliterals.mm5 struct X { struct
6 X(); argument
7 ~X(); argument
23 // CHECK-NEXT: call void @_ZN1XC1Ev argument
/external/clang/test/CodeGen/
D2007-04-11-PR1321.c3 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;
DBasicInstrs.c6 unsigned int udiv(unsigned int X, unsigned int Y) { in udiv()
9 int sdiv(int X, int Y) { in sdiv()
12 unsigned int urem(unsigned int X, unsigned int Y) { in urem()
15 int srem(int X, int Y) { in srem()
19 _Bool setlt(int X, int Y) { in setlt()
23 _Bool setgt(int X, int Y) { in setgt()
Dalign-param.c13 struct X { int x,y,z,a; }; argument
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
Dp2.cpp3 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/
Dpropert-dot-error.mm4 struct X { struct
5 X(); field
6 X(const X&); field
7 ~X(); field
15 X xval; argument
19 - (void)setx:(X)x; argument
Dliterals.mm71 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 …]
Dobjc-container-subscripting.mm59 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/utilities/optional/optional.object/optional.object.observe/
Dvalue_or.pass.cpp31 struct X struct
35 X(int i) : i_(i) {} in X() argument
36 X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() argument
37 X(const Y& y) : i_(y.i_) {} in X() function
38 X(Y&& y) : i_(y.i_+1) {} in X() function
Dvalue_or_const.pass.cpp29 struct X struct
33 constexpr X(int i) : i_(i) {} in X() argument
34 constexpr X(const Y& y) : i_(y.i_) {} in X() argument
35 constexpr X(Y&& y) : i_(y.i_+1) {} in X() argument
/external/chromium_org/third_party/sqlite/src/src/
Dmutex.h61 #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) argument
62 #define sqlite3_mutex_free(X) argument
63 #define sqlite3_mutex_enter(X) argument
64 #define sqlite3_mutex_try(X) SQLITE_OK argument
65 #define sqlite3_mutex_leave(X) argument
66 #define sqlite3_mutex_held(X) ((void)(X),1) argument
67 #define sqlite3_mutex_notheld(X) ((void)(X),1) argument
68 #define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8) argument
Dbtree.h210 # define sqlite3BtreeEnter(X) argument
211 # define sqlite3BtreeEnterAll(X) argument
228 # define sqlite3BtreeSharable(X) 0 argument
229 # define sqlite3BtreeLeave(X) argument
230 # define sqlite3BtreeEnterCursor(X) argument
231 # define sqlite3BtreeLeaveCursor(X) argument
232 # define sqlite3BtreeLeaveAll(X) argument
234 # define sqlite3BtreeHoldsMutex(X) 1 argument
235 # define sqlite3BtreeHoldsAllMutexes(X) 1 argument
236 # define sqlite3SchemaMutexHeld(X,Y,Z) 1 argument
/external/qemu/distrib/sdl-1.2.15/include/
DSDL_endian.h182 #define SDL_Swap64(X) (X) argument
192 #define SDL_SwapLE16(X) (X) argument
193 #define SDL_SwapLE32(X) (X) argument
194 #define SDL_SwapLE64(X) (X) argument
195 #define SDL_SwapBE16(X) SDL_Swap16(X) argument
196 #define SDL_SwapBE32(X) SDL_Swap32(X) argument
197 #define SDL_SwapBE64(X) SDL_Swap64(X) argument
199 #define SDL_SwapLE16(X) SDL_Swap16(X) argument
200 #define SDL_SwapLE32(X) SDL_Swap32(X) argument
201 #define SDL_SwapLE64(X) SDL_Swap64(X) argument
[all …]
/external/llvm/include/llvm/Support/
DOutputBuffer.h52 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/
Dp9-cxx0x.cpp11 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/clang/test/CXX/expr/expr.prim/expr.prim.general/
Dp4-0x.cpp14 struct X { struct
15 int n = 10;
16 int m = [&]{return n + 1; }(); in __anon3798f3590102()
17 int o = [&]{return this->m + 1; }(); in __anon3798f3590202()
18 int p = [&]{return [&](int x) { return this->m + x;}(o); }(); in __anon3798f3590302()
/external/clang/test/SemaCXX/
Dillegal-member-initialization.cpp12 struct X { struct
13X() { } // expected-error {{constructor for 'X' must explicitly initialize the reference memb… in X() argument
17 int &value; // expected-note{{declared here}}
18 const int cvalue; // expected-note{{declared here}}
19 B& b; // expected-note{{declared here}}
20 const B cb; // expected-note{{declared here}}
/external/clang/test/Analysis/
Dptr-arith.cpp3 struct X { struct
16 X littleX; in test() argument
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
Dlogging.h25 #define CHECK_EQ(X, Y) assert((X) == (Y)) argument
29 #define DCHECK(X) assert(X) argument
30 #define DCHECK_EQ(X, Y) CHECK_EQ((X), (Y)) argument
31 #define DCHECK_GE(X, Y) assert((X) >= (Y)) argument
32 #define DCHECK_GT(X, Y) assert((X) > (Y)) argument
33 #define DCHECK_LT(X, Y) assert((X) < (Y)) argument
/external/clang/test/Index/
Dprint-bitwidth.c9 struct X { struct
10 unsigned light : 1;
11 unsigned toaster : 1;
12 int count;
13 union S stat;

12345678910>>...65