Home
last modified time | relevance | path

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

/external/llvm/unittests/ADT/
DSmallVectorTest.cpp27 class Constructable { class
41 Constructable() : constructed(true), value(0) { in Constructable() function in __anon27179be20111::Constructable
45 Constructable(int val) : constructed(true), value(val) { in Constructable() function in __anon27179be20111::Constructable
49 Constructable(const Constructable & src) : constructed(true) { in Constructable() function in __anon27179be20111::Constructable
55 Constructable(Constructable && src) : constructed(true) { in Constructable() function in __anon27179be20111::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/llvm-project/llvm/unittests/ADT/
DSmallVectorTest.cpp26 class Constructable { class
40 Constructable() : constructed(true), value(0) { in Constructable() function in __anonec5547b00111::Constructable
44 Constructable(int val) : constructed(true), value(val) { in Constructable() function in __anonec5547b00111::Constructable
48 Constructable(const Constructable & src) : constructed(true) { in Constructable() function in __anonec5547b00111::Constructable
54 Constructable(Constructable && src) : constructed(true) { in Constructable() function in __anonec5547b00111::Constructable
60 ~Constructable() { in ~Constructable()
66 Constructable & operator=(const Constructable & src) { in operator =()
74 Constructable & operator=(Constructable && src) { in operator =()
124 friend bool operator==(const Constructable & c0, const Constructable & c1) { in operator ==()
129 operator!=(const Constructable & c0, const Constructable & c1) { in operator !=()
[all …]
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java54 public static class Constructable { class in InjectionPointTest
56 public Constructable(@Named("c") String param) {} in Constructable() method in InjectionPointTest.Constructable
119 TypeLiteral<?> typeLiteral = TypeLiteral.get(Constructable.class); in testConstructorInjectionPoint()
121 Constructor<?> constructor = Constructable.class.getConstructor(String.class); in testConstructorInjectionPoint()
125 assertEquals(Constructable.class.getName() + ".<init>()", injectionPoint.toString()); in testConstructorInjectionPoint()
134 + Constructable.class.getName() in testConstructorInjectionPoint()
194 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Constructable.class); in testForConstructorOf()
195 assertEquals(Constructable.class.getName() + ".<init>()", injectionPoint.toString()); in testForConstructorOf()
/external/python/asn1crypto/asn1crypto/
Dcore.py636 if isinstance(self, Constructable) and self._indefinite:
716 if isinstance(self, Constructable):
722 class Constructable(object): class
796 super(Constructable, self)._copy(other, copy_func)
1766 class AbstractString(Constructable, Primitive):
2089 class BitString(_IntegerBitString, Constructable, Castable, Primitive, ValueMap):
2344 class OctetBitString(Constructable, Castable, Primitive):
2490 class IntegerBitString(_IntegerBitString, Constructable, Castable, Primitive):
2555 class OctetString(Constructable, Castable, Primitive):
2633 class IntegerOctetString(Constructable, Castable, Primitive):
[all …]
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java110 TypeId<Constructable> constructable = TypeId.get(Constructable.class); in testNewInstance()
111 MethodId<?, Constructable> methodId = GENERATED.getMethod( in testNewInstance()
116 MethodId<Constructable, Void> constructor in testNewInstance()
118 Local<Constructable> localResult = code.newLocal(constructable); in testNewInstance()
122 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false); in testNewInstance()
127 public static class Constructable { class in DexMakerTest
130 public Constructable(long a, boolean b) { in Constructable() method in DexMakerTest.Constructable