Searched refs:Constructable (Results 1 – 4 of 4) sorted by relevance
/external/llvm/unittests/ADT/ |
D | SmallVectorTest.cpp | 27 class Constructable { class 41 Constructable() : constructed(true), value(0) { in Constructable() function in __anon2392e2010111::Constructable 45 Constructable(int val) : constructed(true), value(val) { in Constructable() function in __anon2392e2010111::Constructable 49 Constructable(const Constructable & src) : constructed(true) { in Constructable() function in __anon2392e2010111::Constructable 55 Constructable(Constructable && src) : constructed(true) { in Constructable() function in __anon2392e2010111::Constructable 61 ~Constructable() { in ~Constructable() 67 Constructable & operator=(const Constructable & src) { in operator =() 75 Constructable & operator=(Constructable && src) { in operator =() 125 friend bool operator==(const Constructable & c0, const Constructable & c1) { in operator ==() 130 operator!=(const Constructable & c0, const Constructable & c1) { in operator !=() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/ADT/ |
D | SmallVectorTest.cpp | 26 class Constructable { class 35 Constructable() : value(0) { in Constructable() function in __anon46813bad0111::Constructable 39 Constructable(int val) : value(val) { in Constructable() function in __anon46813bad0111::Constructable 43 Constructable(const Constructable & src) { in Constructable() function in __anon46813bad0111::Constructable 48 ~Constructable() { in ~Constructable() 52 Constructable & operator=(const Constructable & src) { in operator =() 76 friend bool operator==(const Constructable & c0, const Constructable & c1) { in operator ==() 81 operator!=(const Constructable & c0, const Constructable & c1) { in operator !=() 86 int Constructable::numConstructorCalls; 87 int Constructable::numDestructorCalls; [all …]
|
/external/guice/core/test/com/google/inject/spi/ |
D | InjectionPointTest.java | 55 public static class Constructable { class in InjectionPointTest 56 @Inject public Constructable(@Named("c") String param) {} in Constructable() method in InjectionPointTest.Constructable 107 TypeLiteral<?> typeLiteral = TypeLiteral.get(Constructable.class); in testConstructorInjectionPoint() 109 Constructor<?> constructor = Constructable.class.getConstructor(String.class); in testConstructorInjectionPoint() 113 assertEquals(Constructable.class.getName() + ".<init>()", injectionPoint.toString()); in testConstructorInjectionPoint() 119 + Constructable.class.getName() + ".<init>()[0]", dependency.toString()); in testConstructorInjectionPoint() 168 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Constructable.class); in testForConstructorOf() 169 assertEquals(Constructable.class.getName() + ".<init>()", injectionPoint.toString()); in testForConstructorOf()
|
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 99 TypeId<Constructable> constructable = TypeId.get(Constructable.class); in testNewInstance() 100 MethodId<?, Constructable> methodId = GENERATED.getMethod( in testNewInstance() 105 MethodId<Constructable, Void> constructor in testNewInstance() 107 Local<Constructable> localResult = code.newLocal(constructable); in testNewInstance() 111 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false); in testNewInstance() 116 public static class Constructable { class in DexMakerTest 119 public Constructable(long a, boolean b) { in Constructable() method in DexMakerTest.Constructable
|