Home
last modified time | relevance | path

Searched defs:Z (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/external/clang/test/CXX/temp/temp.res/temp.local/
Dp6.cpp68 template<int T> struct Z { // expected-note 16{{declared here}} struct
69 …mplate<typename T> struct A {}; // expected-error {{declaration of 'T' shadows template parameter}}
71 struct B {
74 struct C {
77 struct D {
80 struct E {
83 struct F {
86 struct G {
89 struct H {
92 struct I {
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
Drvalue_T.pass.cpp27 class Z class
30 Z(int) {} in Z() function in Z
31 Z(Z&&) {TEST_THROW(6);} in Z() argument
136 struct Z { in main() struct
137 Z(int) {} in main() argument
138 Z(Z&&) {throw 6;} in main() function
Dcopy.pass.cpp37 struct Z { in test_throwing_ctor() struct
38 Z() : count(0) {} in test_throwing_ctor() function
39 Z(Z const& o) : count(o.count + 1) in test_throwing_ctor() function
41 int count; in test_throwing_ctor()
Dmove.pass.cpp38 struct Z { in test_throwing_ctor() struct
39 Z() : count(0) {} in test_throwing_ctor() function
40 Z(Z&& o) : count(o.count + 1) in test_throwing_ctor() function
42 int count; in test_throwing_ctor()
Dconst_T.pass.cpp111 struct Z { in main() struct
112 Z(int) {} in main() argument
113 Z(const Z&) {throw 6;} in main() argument
Dinitializer_list.pass.cpp56 class Z class
61 Z() : i_(0) {} in Z() function in Z
62 Z(int i) : i_(i) {} in Z() function in Z
63 Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() function in Z
/external/clang/test/CodeGenObjC/
Dencode-test-6.m5 typedef struct {} Z; typedef
8 -(void)bar:(Z)a; argument
9 -(void)foo:(Z)a : (char*)b : (Z)c : (double) d; argument
13 -(void)bar:(Z)a {} argument
14 -(void)foo:(Z)a: (char*)b : (Z)c : (double) d {} argument
/external/curl/tests/libtest/
Dtest.h127 #define exe_easy_init(A,Y,Z) do { \ argument
137 #define chk_easy_init(A,Y,Z) do { \ argument
148 #define exe_multi_init(A,Y,Z) do { \ argument
158 #define chk_multi_init(A,Y,Z) do { \ argument
169 #define exe_easy_setopt(A,B,C,Y,Z) do { \ argument
182 #define chk_easy_setopt(A, B, C, Y, Z) do { \ argument
193 #define exe_multi_setopt(A, B, C, Y, Z) do { \ argument
206 #define chk_multi_setopt(A,B,C,Y,Z) do { \ argument
217 #define exe_multi_add_handle(A,B,Y,Z) do { \ argument
230 #define chk_multi_add_handle(A, B, Y, Z) do { \ argument
[all …]
/external/clang/test/Modules/
Drecursive_visibility.mm8 template<typename T> struct Z { typedef T type; }; struct
9 template void g<Z>(); argument
/external/clang/test/Index/
Dcomplete-ctor-inits.cpp12 struct Z : public X<int>, public Y { struct
18 Z::Z() : ::X<int>(0), Virt(), b(), c() { } in Z() function in Z
/external/libvncserver/webclients/novnc/include/web-socket-js/
Dswfobject.js4 …"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(… argument
/external/clang/test/Sema/
Dnested-redef.c12 struct Z { struct
13 struct T { int x; } t;
14 struct U { int x; } u;
/external/clang/test/CodeGen/
D2007-04-17-ZeroSizeBitFields.c4 struct Z { int a:1; int :0; int c:1; } z; argument
/external/clang/test/CodeGenCXX/
Dconversion-function.cpp29 struct Z { struct
30 operator X() { printf("perator X()\n"); x.iX += iZ; x.fX += fZ; return x; } in operator X() argument
31 int iZ; argument
32 float fZ; argument
33 Z() : iZ(1), fZ(1.00) {} in Z() argument
Dmicrosoft-abi-vtables-virtual-inheritance.cpp65 struct Z : virtual Y { struct
76 Z::Z() {} in Z() function in Test1::Z
251 struct Z : Y, C { struct
311 struct Z : Y, virtual B { struct
331 Z::Z() {} in Z() function in Test9::Z
445 struct Z : virtual X, Y { struct
465 struct Z : virtual Y { struct
475 …// CHECK-LABEL: VFTable for 'A' in 'Test12::X' in 'Test12::Y' in 'Test12::Z' in 'Test12::W' (2 ent…
505 struct Z { struct
606 struct Z { struct
[all …]
/external/ImageMagick/MagickCore/
Dgem-private.h77 double *X,double *Y,double *Z) in ConvertLabToXYZ()
108 double *X,double *Y,double *Z) in ConvertLuvToXYZ()
125 const double blue,double *X,double *Y,double *Z) in ConvertRGBToXYZ()
146 static inline void ConvertXYZToLab(const double X,const double Y,const double Z, in ConvertXYZToLab()
174 static inline void ConvertXYZToLuv(const double X,const double Y,const double Z, in ConvertXYZToLuv()
195 static inline void ConvertXYZToRGB(const double X,const double Y,const double Z, in ConvertXYZToRGB()
/external/clang/test/SemaCXX/
Dstruct-class-redecl.cpp11 struct Z { struct
12 struct Z { // expected-error{{member 'Z' has the same name as its class}} argument
Ddefaulted-private-dtor.cpp31 struct Z : virtual BadDtor { // expected-error {{private destructor}} struct
32 ~Z() {} in ~Z() argument
51 struct Z : virtual BadDtor { struct in K
52 ~Z() {} in ~Z()
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp1-0x.cpp18 struct Z { struct
23 template enum Z<int>::E; // expected-error {{enumerations cannot be explicitly instantiated}} argument
/external/libcxx/test/std/experimental/optional/optional.specalg/
Dswap.pass.cpp54 class Z class
58 Z(int i) : i_(i) {} in Z() function in Z
59 Z(Z&&) {TEST_THROW(7);} in Z() argument
62 friend void swap(Z&, Z&) {TEST_THROW(6);} in swap() argument
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/
Dswap.pass.cpp56 class Z class
60 Z(int i) : i_(i) {} in Z() function in Z
61 Z(Z&&) {TEST_THROW(7);} in Z() function in Z
64 friend void swap(Z&, Z&) {TEST_THROW(6);} in swap() argument
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/
Dop_arrow_const.pass.cpp35 struct Z struct
37 const Z* operator&() const {return this;} in operator &() argument
52 constexpr optional<Z> opt(Z{}); in main() argument
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.swap/
Dswap.pass.cpp55 class Z class
59 Z(int i) : i_(i) {} in Z() function in Z
60 Z(Z&&) {TEST_THROW(7);} in Z() function in Z
63 friend void swap(Z&, Z&) {TEST_THROW(6);} in swap() argument
/external/libcxx/test/std/utilities/optional/optional.specalg/
Dswap.pass.cpp55 class Z class
59 Z(int i) : i_(i) {} in Z() function in Z
60 Z(Z&&) { TEST_THROW(7);} in Z() function in Z
63 friend void swap(Z&, Z&) { TEST_THROW(6);} in swap() argument
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.ctor/
Dconst_T.pass.cpp42 class Z class
45 Z(int) {} in Z() function in Z
46 Z(const Z&) {TEST_THROW(6);} in Z() function in Z

12345678910>>...13