Home
last modified time | relevance | path

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

12345678910>>...72

/external/clang/test/CodeGenCXX/
Dmangle-extreme.cpp3 struct X { }; struct
6 void f(X****************************************, in f() argument
Datomicinit.cpp61 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() argument
93 short n;
94 char c = 6;
98 _Atomic(X) c{X(3)}; in _Atomic() 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.cpp6 template <class T> struct X {}; struct
8 template <> struct X<char> struct
26 struct X { struct
27 int m;
46 template<typename T, T N> struct X { }; struct
47 template<bool C> struct X<bool, C> { struct
48 typedef int type;
/external/clang/test/CodeGenObjCXX/
Dnrvo.mm4 struct X { struct
5 X(); argument
6 X(const X&); argument
7 ~X(); field
15 - (X)getNRVO { argument
Dliterals.mm5 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/
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()
/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(); argument
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/std/experimental/optional/optional.object/optional.object.observe/
Dvalue_or.pass.cpp31 struct X struct
35 X(int i) : i_(i) {} in X() function
36 X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() argument
37 X(const Y& y) : i_(y.i_) {} in X() argument
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() function
34 constexpr X(const Y& y) : i_(y.i_) {} in X() argument
35 constexpr X(Y&& y) : i_(y.i_+1) {} in X() function
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/
Ddefault_recursive.pass.cpp18 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/
Ddefault_recursive.pass.cpp18 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/clang/test/SemaCXX/
Ddelete-mismatch.h3 struct X { struct
5 X(); argument
7 X(bool) in X() argument
9 ~X() in ~X() argument
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/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 __anon64701d830102()
17 int o = [&]{return this->m + 1; }(); in __anon64701d830202()
18 int p = [&]{return [&](int x) { return this->m + x;}(o); }(); in __anon64701d830302()
/external/mesa3d/src/mesa/drivers/x11/
Dxm_line.c137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel ); argument
152 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
154 #define PLOT(X,Y) *pixelPtr = pixel; argument
169 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
171 #define PLOT(X,Y) *pixelPtr = pixel; argument
186 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
188 #define PLOT(X,Y) *pixelPtr = pixel; argument
202 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR3(xrb, X, Y) argument
204 #define PLOT(X,Y) { \ argument
223 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR2(xrb, X, Y) argument
[all …]
/external/clang/test/Analysis/
Dptr-arith.cpp3 struct X { struct
16 X littleX; in test() argument
/external/clang/test/SemaObjC/
Dproperty-12.m4 @property(readonly,assign) id X; property
8 @property(readonly,retain) id X; property
12 @property(readonly,copy) id X; property
16 @property(readonly,readwrite) id X; // expected-error {{property attributes 'readonly' and 'readwri… property
20 @property(assign,copy) id X; // expected-error {{property attributes 'assign' and 'copy' are mutual… property
24 @property(assign,retain) id X; // expected-error {{property attributes 'assign' and 'retain' are mu… property
28 @property(copy,retain) id X; // expected-error {{property attributes 'copy' and 'retain' are mutual… property
/external/cblas/testing/
Dc_sblas1.c11 float F77_sasum(const int *N, float *X, const int *incX) in F77_sasum()
16 void F77_saxpy(const int *N, const float *alpha, const float *X, in F77_saxpy()
23 float F77_scasum(const int *N, void *X, const int *incX) in F77_scasum()
28 float F77_scnrm2(const int *N, const void *X, const int *incX) in F77_scnrm2()
33 void F77_scopy(const int *N, const float *X, const int *incX, in F77_scopy()
40 float F77_sdot(const int *N, const float *X, const int *incX, in F77_sdot()
46 float F77_snrm2(const int *N, const float *X, const int *incX) in F77_snrm2()
57 void F77_srot( const int *N, float *X, const int *incX, float *Y, in F77_srot()
64 void F77_sscal(const int *N, const float *alpha, float *X, in F77_sscal()
71 void F77_sswap( const int *N, float *X, const int *incX, in F77_sswap()
[all …]

12345678910>>...72