Home
last modified time | relevance | path

Searched refs:Constructable (Results 1 – 2 of 2) sorted by relevance

/external/llvm/unittests/ADT/
DSmallVectorTest.cpp26 class Constructable { class
35 Constructable() : value(0) { in Constructable() function in __anon8c6e93ec0111::Constructable
39 Constructable(int val) : value(val) { in Constructable() function in __anon8c6e93ec0111::Constructable
43 Constructable(const Constructable & src) { in Constructable() function in __anon8c6e93ec0111::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/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java78 TypeId<Constructable> constructable = TypeId.get(Constructable.class); in testNewInstance()
79 MethodId<?, Constructable> methodId = GENERATED.getMethod( in testNewInstance()
84 MethodId<Constructable, Void> constructor in testNewInstance()
86 Local<Constructable> localResult = code.newLocal(constructable); in testNewInstance()
90 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false); in testNewInstance()
95 public static class Constructable { class in DexMakerTest
98 public Constructable(long a, boolean b) { in Constructable() method in DexMakerTest.Constructable