Searched refs:Constructable (Results 1 – 2 of 2) sorted by relevance
26 class Constructable { class35 Constructable() : value(0) { in Constructable() function in __anon8c6e93ec0111::Constructable39 Constructable(int val) : value(val) { in Constructable() function in __anon8c6e93ec0111::Constructable43 Constructable(const Constructable & src) { in Constructable() function in __anon8c6e93ec0111::Constructable48 ~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 …]
78 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 DexMakerTest98 public Constructable(long a, boolean b) { in Constructable() method in DexMakerTest.Constructable