Searched refs:C1 (Results 1 - 25 of 254) sorted by relevance

1234567891011

/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp9.cpp5 template<char C1, char C2>
10 template<int C1>
11 struct X<C1, C1> {
22 template<unsigned char C1, unsigned char C3>
23 struct int_values<C1, 12, C3> {
/external/clang/test/SemaTemplate/
H A Ddependent-class-member-operator.cpp4 template<class T> struct C1 { void operator()(T); }; struct
8 foo(&C1<int>::operator());
9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}}
H A Dclass-template-id-2.cpp12 class C1 : public N::A<int> { }; class in inherits:N::A
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp5 struct C1 { int a; virtual void C1M() {} }; struct
7 struct C3 : C0, C1, C2 {} a;
9 // Check to see that both C1 and C2 get laid out before C0 does.
10 // CHECK: %struct.C3 = type { %struct.C1, %struct.C2, %struct.C0 }
H A Dvtable-layout-extreme.cpp10 class C1 class in namespace:Test1
17 , virtual public C1
23 , virtual public C1
42 , public C1
52 , public C1
71 , public C1
111 // CHECK-NEXT: -- (Test1::C1, 64) vtable address --
122 // CHECK-NEXT: -- (Test1::C1, 104) vtable address --
132 // CHECK-NEXT: -- (Test1::C1, 152) vtable address --
164 // CHECK-NEXT: -- (Test1::C1, 22
[all...]
H A Dvtt-layout.cpp33 class C1 : public virtual V1 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
52 class C1 : public virtual V1 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_one.h4 long *C1; variable
/external/clang/test/SemaCXX/
H A DPR12481.cpp3 class C1 { }; class
14 BinaryTrie<C1> c1_trie_;
H A Dambiguous-builtin-unary-operator.cpp27 struct C1 : B1, A1 { }; struct in inherits:B1,A1
29 void test(C1 c) {
H A Dout-of-line-def-mismatch.cpp7 class C1 {}; class in namespace:N2::N1
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
H A Dbuiltin-ptrtomember-overload-1.cpp33 struct C1 : B1 { struct in inherits:B1
37 void foo1(C1 c1, int A::* pmf) {
42 void foo1(C1 c1, int E::* pmf) {
44 // expected-note {{because of ambiguity in conversion of 'C1' to 'E *'}} \
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-calls-with-migrating-prototypes.js33 function C1(f) { class
36 var o1 = new C1(f);
37 var o2 = {__proto__: new C1(f) }
45 var o3 = new C1(function() { return 2; });
H A Dregress-618.js29 function C1() { class
32 var c1 = new C1();
38 C1.prototype = { set x(value) { this.y = 23; } };
39 var c1 = new C1();
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Ddeduction.cpp33 template<int C1, char C3>
34 struct char_values<C1, 12, C3> {
44 template<unsigned char C1, unsigned char C3>
45 struct int_values<C1, 12, C3> {
/external/libcxxabi/test/
H A Dcatch_class_03.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;}
70 assert(C1
[all...]
H A Dcatch_class_04.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;}
70 assert(C1
[all...]
H A Dcatch_ptr.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;}
85 assert(static_cast<const C1*>(
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp12.cpp37 class C1 {}; class
39 C1<> c1; // expected-note{{while checking a default template argument}}
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_formats.c160 C4A(B8G8R8A8_UNORM, BGRA8_UNORM, C2, C1, C0, C3, UNORM, 8_8_8_8, TDV, 1),
161 F3A(B8G8R8X8_UNORM, BGRX8_UNORM, C2, C1, C0, xx, UNORM, 8_8_8_8, TD),
162 C4A(B8G8R8A8_SRGB, BGRA8_SRGB, C2, C1, C0, C3, UNORM, 8_8_8_8, TD, 1),
163 F3A(B8G8R8X8_SRGB, BGRX8_SRGB, C2, C1, C0, xx, UNORM, 8_8_8_8, TD),
164 C4A(R8G8B8A8_UNORM, RGBA8_UNORM, C0, C1, C2, C3, UNORM, 8_8_8_8, TBV, 0),
165 F3A(R8G8B8X8_UNORM, RGBX8_UNORM, C0, C1, C2, xx, UNORM, 8_8_8_8, TB),
166 C4A(R8G8B8A8_SRGB, RGBA8_SRGB, C0, C1, C2, C3, UNORM, 8_8_8_8, TB, 0),
172 ZSB(X24S8_UINT, NONE, C1, C1, C1, x
[all...]
/external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
H A Dmain.c51 int C1 = c(5); // Find the call site of c in main. local
52 printf ("c(5) returns %d\n", C1);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_formats.c160 C4A(B8G8R8A8_UNORM, BGRA8_UNORM, C2, C1, C0, C3, UNORM, 8_8_8_8, TDV, 1),
161 F3A(B8G8R8X8_UNORM, BGRX8_UNORM, C2, C1, C0, xx, UNORM, 8_8_8_8, TD),
162 C4A(B8G8R8A8_SRGB, BGRA8_SRGB, C2, C1, C0, C3, UNORM, 8_8_8_8, TD, 1),
163 F3A(B8G8R8X8_SRGB, BGRX8_SRGB, C2, C1, C0, xx, UNORM, 8_8_8_8, TD),
164 C4A(R8G8B8A8_UNORM, RGBA8_UNORM, C0, C1, C2, C3, UNORM, 8_8_8_8, TBV, 0),
165 F3A(R8G8B8X8_UNORM, RGBX8_UNORM, C0, C1, C2, xx, UNORM, 8_8_8_8, TB),
166 C4A(R8G8B8A8_SRGB, RGBA8_SRGB, C0, C1, C2, C3, UNORM, 8_8_8_8, TB, 0),
172 ZSB(X24S8_UINT, NONE, C1, C1, C1, x
[all...]
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java16 public long toMicros(long d) { return d/(C1/C0); }
26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
28 public long toMillis(long d) { return d/(C2/C1); }
29 public long toSeconds(long d) { return d/(C3/C1); }
30 public long toMinutes(long d) { return d/(C4/C1); }
31 public long toHours(long d) { return d/(C5/C1); }
32 public long toDays(long d) { return d/(C6/C1); }
34 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
38 public long toMicros(long d) { return x(d, C2/C1, MA
94 static final long C1 = C0 * 1000L; field in class:TimeUnit
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp89 class C1 { class in namespace:ClassNameRedecl
91 using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}}
94 using C0 = C1; // ok
147 class C1 {
151 C1::U w; // ok
/external/chromium_org/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js31 function C1() {
34 C1.prototype = { set x(value) { this.y = 23; } };
36 %ToFastProperties(C1.prototype);
40 var c1 = new C1();
33 C1.prototype = { set x(value) { this.y = 23; } }; class
/external/clang/test/Modules/
H A Dwildcard-submodule-exports.cpp9 long *C1_ptr = C1;

Completed in 835 milliseconds

1234567891011