/external/llvm/unittests/Support/ |
D | TrailingObjectsTest.cpp | 19 class Class1 final : protected TrailingObjects<Class1, short> { class 27 Class1(int *ShortArray, unsigned NumShorts) : NumShorts(NumShorts) { in Class1() function in __anon07bada1e0111::Class1 33 static Class1 *create(int *ShortArray, unsigned NumShorts) { in create() 35 return new (Mem) Class1(ShortArray, NumShorts); in create() 102 Class1 *C = Class1::create(arr, 3); in TEST() 103 EXPECT_EQ(sizeof(Class1), sizeof(unsigned)); in TEST() 104 EXPECT_EQ(Class1::additionalSizeToAlloc<short>(1), sizeof(short)); in TEST() 105 EXPECT_EQ(Class1::additionalSizeToAlloc<short>(3), sizeof(short) * 3); in TEST() 107 EXPECT_EQ(Class1::totalSizeToAlloc<short>(1), sizeof(Class1) + sizeof(short)); in TEST() 108 EXPECT_EQ(Class1::totalSizeToAlloc<short>(3), in TEST() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
D | util_test.py | 79 class Class1(object): class 88 instance_of_class1 = Class1() 91 instance_of_class1, util.Typecheck(instance_of_class1, Class1)) 95 util.Typecheck(instance_of_class1, ((Class1, Class2), Class3))) 99 util.Typecheck(instance_of_class1, (Class1, (Class2, Class3)))) 103 util.Typecheck(instance_of_class1, Class1, 'message')) 108 instance_of_class1, ((Class1, Class2), Class3), 'message')) 113 instance_of_class1, (Class1, (Class2, Class3)), 'message'))
|
/external/v8/test/webkit/fast/js/kde/ |
D | object_prototype.js | 50 function Class1() {} class 54 Class1.prototype = new Object(); 55 Class1.prototype.hasClass1 = true; 56 Class2.prototype = new Class1();
|
D | object_prototype-expected.txt | 40 PASS Class1.prototype.isPrototypeOf(obj) is true 43 PASS obj.isPrototypeOf(Class1.prototype) is false 46 PASS Class1.prototype.isPrototypeOf(Class2.prototype) is true 47 PASS Class2.prototype.isPrototypeOf(Class1.prototype) is false 48 PASS Class1.prototype.isPrototypeOf(Class3.prototype) is true 49 PASS Class3.prototype.isPrototypeOf(Class1.prototype) is false 52 PASS Class1.prototype.prototype is undefined.
|
/external/clang/test/CodeGenCXX/ |
D | attr-notail.cpp | 3 class Class1 { class 9 int foo1(int a, Class1 *c1) { in foo1()
|
D | visibility.cpp | 1126 struct Class1 struct 1132 inline void Class1<int>::f2() in f2() 1135 void g(Class1<int> *x) { in g() 1143 template class HIDDEN Class1<int>; variable 1148 struct Class1 struct 1154 inline void Class1<int>::f2() in f2() 1157 void g(Class1<int> *x) { in g() 1162 template class HIDDEN Class1<int>; variable
|
/external/v8/test/mjsunit/strong/ |
D | class-extend-null.js | 13 class Class1 extends null { class 59 class Class1 extends null { class
|
/external/clang/test/SemaObjC/ |
D | class-method-lookup.m | 30 @interface Class1 interface 35 - (void)setWindow:(Class1 *)window; argument
|
D | property-typecheck-1.m | 70 @interface Class1 interface 84 Class1* container;
|
D | warn-strict-selector-match.m | 15 @interface Class1 interface 20 - (void)setWindow:(Class1 *)window; // expected-note 2 {{also found}} argument
|
D | warn-selector-selection.m | 7 @interface Class1 interface
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/cycle/ |
D | LongCycle.java | 23 static class Class1 { @Inject Class1(Class2 class2) {} } in Class1() class in LongCycle 123 static class Class101 { @Inject Class101(Provider<Class1> class1Provider) {} } in Class101() 128 Class1 class1(); in class1()
|
/external/clang/test/Parser/ |
D | cxx-decl.cpp | 108 class Class1; 113 typedef Class1<Class2> Type1;
|
/external/clang/test/PCH/ |
D | pr18806.cpp | 16 struct Class1 { struct
|
/external/testng/src/test/java/test/inheritance/testng471/ |
D | Class1.java | 6 public class Class1 extends SuperClass1 { class
|
D | TestNG471.java | 15 TestNG tng = create(Class1.class, Class2.class, Class3.class); in test_classes_should_not_be_skipped_when_a_after_method_fails()
|
/external/clang/test/SemaCXX/ |
D | using-decl-1.cpp | 116 class Class1; // expected-note{{forward declaration}} 119 …using ::foo::Class1::Function; // expected-error{{incomplete type 'foo::Class1' named in nested na…
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
D | TypeTokenTest.java | 192 abstract class Class2 extends Class1 implements Interface12 {} in testGetTypes_withInterfacesAndSuperclasses() 203 TypeToken.of(Class1.class), in testGetTypes_withInterfacesAndSuperclasses() 214 TypeToken.of(Class1.class), in testGetTypes_withInterfacesAndSuperclasses() 220 abstract class Class2 extends Class1 implements Interface12 {} in testGetTypes_rawTypes_withInterfacesAndSuperclasses() 230 Class1.class, in testGetTypes_rawTypes_withInterfacesAndSuperclasses() 241 Class1.class, in testGetTypes_rawTypes_withInterfacesAndSuperclasses() 246 public <A extends Class1 & Interface1, B extends A> 250 TypeToken.of(Interface1.class), TypeToken.of(Class1.class), in testGetTypes_ignoresTypeVariablesByDefault() 257 .has().exactly(TypeToken.of(Class1.class), TypeToken.of(Object.class)) in testGetTypes_ignoresTypeVariablesByDefault() 261 public <A extends Class1 & Interface1, B extends A> [all …]
|