Home
last modified time | relevance | path

Searched refs:ObjectType (Results 1 – 25 of 108) sorted by relevance

12345

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DReferenceType.java82 if ((this instanceof ObjectType) && (((ObjectType) this).referencesClassExact())) { in isAssignmentCompatibleWith()
86 if ((T instanceof ObjectType) && (((ObjectType) T).referencesClassExact())) { in isAssignmentCompatibleWith()
90 if (Repository.instanceOf(((ObjectType) this).getClassName(), ((ObjectType) T) in isAssignmentCompatibleWith()
97 if ((T instanceof ObjectType) && (((ObjectType) T).referencesInterfaceExact())) { in isAssignmentCompatibleWith()
98 if (Repository.implementationOf(((ObjectType) this).getClassName(), in isAssignmentCompatibleWith()
99 ((ObjectType) T).getClassName())) { in isAssignmentCompatibleWith()
106 if ((this instanceof ObjectType) && (((ObjectType) this).referencesInterfaceExact())) { in isAssignmentCompatibleWith()
109 if ((T instanceof ObjectType) && (((ObjectType) T).referencesClassExact())) { in isAssignmentCompatibleWith()
117 if ((T instanceof ObjectType) && (((ObjectType) T).referencesInterfaceExact())) { in isAssignmentCompatibleWith()
121 if (Repository.implementationOf(((ObjectType) this).getClassName(), in isAssignmentCompatibleWith()
[all …]
DObjectType.java29 public class ObjectType extends ReferenceType { class
36 public static ObjectType getInstance(final String class_name) { in getInstance()
37 return new ObjectType(class_name); in getInstance()
43 public ObjectType(final String class_name) { in ObjectType() method in ObjectType
68 return (type instanceof ObjectType) in equals()
69 ? ((ObjectType) type).class_name.equals(class_name) in equals()
143 public boolean subclassOf( final ObjectType superclass ) throws ClassNotFoundException { in subclassOf()
156 public boolean accessibleTo( final ObjectType accessor ) throws ClassNotFoundException { in accessibleTo()
DType.java57 public static final ObjectType OBJECT = new ObjectType("java.lang.Object");
58 public static final ObjectType CLASS = new ObjectType("java.lang.Class");
59 public static final ObjectType STRING = new ObjectType("java.lang.String");
60 public static final ObjectType STRINGBUFFER = new ObjectType("java.lang.StringBuffer");
61 public static final ObjectType THROWABLE = new ObjectType("java.lang.Throwable");
219 return ObjectType.getInstance(parsedSignature.replace('/', '.')); in getType()
307 return ObjectType.getInstance(cl.getName()); in getType()
DFieldOrMethod.java100 public ObjectType getClassType( final ConstantPoolGen cpg ) { in getClassType()
101 return ObjectType.getInstance(getClassName(cpg)); in getClassType()
121 return ObjectType.getInstance(className); in getReferenceType()
132 public ObjectType getLoadClassType( final ConstantPoolGen cpg ) { in getLoadClassType()
134 if(rt instanceof ObjectType) { in getLoadClassType()
135 return (ObjectType)rt; in getLoadClassType()
DCodeExceptionGen.java41 private ObjectType catch_type;
54 final InstructionHandle handler_pc, final ObjectType catch_type) { in CodeExceptionGen()
141 public void setCatchType( final ObjectType catch_type ) { in setCatchType()
147 public ObjectType getCatchType() { in getCatchType()
DINSTANCEOF.java51 public ObjectType getLoadClassType( final ConstantPoolGen cpg ) { in getLoadClassType()
56 return (t instanceof ObjectType) ? (ObjectType) t : null; in getLoadClassType()
DCHECKCAST.java57 public ObjectType getLoadClassType( final ConstantPoolGen cpg ) { in getLoadClassType()
62 return (t instanceof ObjectType) ? (ObjectType) t : null; in getLoadClassType()
DANEWARRAY.java72 public ObjectType getLoadClassType( final ConstantPoolGen cpg ) { in getLoadClassType()
77 return (t instanceof ObjectType) ? (ObjectType) t : null; in getLoadClassType()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_parser_unittest.cpp97 const CPDF_TestParser::ObjectType types[] = { in TEST()
98 CPDF_TestParser::ObjectType::kFree, in TEST()
99 CPDF_TestParser::ObjectType::kNotCompressed, in TEST()
100 CPDF_TestParser::ObjectType::kNotCompressed, in TEST()
101 CPDF_TestParser::ObjectType::kFree, in TEST()
102 CPDF_TestParser::ObjectType::kNotCompressed, in TEST()
103 CPDF_TestParser::ObjectType::kNotCompressed}; in TEST()
129 const CPDF_TestParser::ObjectType types[] = { in TEST()
130 CPDF_TestParser::ObjectType::kFree, in TEST()
131 CPDF_TestParser::ObjectType::kFree, in TEST()
[all …]
Dcpdf_parser.cpp149 CPDF_Parser::ObjectType CPDF_Parser::GetObjectType(uint32_t objnum) const { in GetObjectType()
152 return it != m_ObjectInfo.end() ? it->second.type : ObjectType::kFree; in GetObjectType()
163 case ObjectType::kFree: in IsObjectFreeOrNull()
164 case ObjectType::kNull: in IsObjectFreeOrNull()
166 case ObjectType::kNotCompressed: in IsObjectFreeOrNull()
167 case ObjectType::kCompressed: in IsObjectFreeOrNull()
175 return GetObjectType(objnum) == ObjectType::kFree; in IsObjectFree()
368 if (GetObjectType(objnum) == ObjectType::kNotCompressed) in GetObjectOffset()
371 if (GetObjectType(objnum) == ObjectType::kCompressed) { in GetObjectOffset()
576 info.type = ObjectType::kFree; in ParseAndAppendCrossRefSubsectionData()
[all …]
Dcpdf_parser.h110 enum class ObjectType : uint8_t { enum
118 ObjectInfo() : pos(0), type(ObjectType::kFree), gennum(0) {} in ObjectInfo()
126 ObjectType type;
202 ObjectType GetObjectType(uint32_t objnum) const;
203 ObjectType GetObjectTypeFromCrossRefStreamType(
/external/swiftshader/src/OpenGL/common/
DObject.hpp69 template<class ObjectType>
75 BindingPointer(const BindingPointer<ObjectType> &other) : object(nullptr) in BindingPointer()
85 ObjectType *operator=(ObjectType *newObject) in operator =()
95 ObjectType *operator=(const BindingPointer<ObjectType> &other) in operator =()
100 operator ObjectType*() const { return object; } in operator ObjectType*()
101 ObjectType *operator->() const { return object; } in operator ->()
106 ObjectType *object;
DNameSpace.hpp29 template<class ObjectType, GLuint baseName = 1>
57 GLuint allocate(ObjectType *object = nullptr) in allocate()
77 void insert(GLuint name, ObjectType *object) in insert()
87 ObjectType *remove(GLuint name) in remove()
93 ObjectType *object = element->second; in remove()
107 ObjectType *find(GLuint name) const in find()
120 typedef std::map<GLuint, ObjectType*> Map;
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
Dbullet_4_5_6.pass.cpp53 template <class ObjectType>
60 typedef TestMemberObject<ObjectType> TestType;
76 typedef ObjectType (TestType::*MemPtr); in doTest() typedef
77 typedef ObjectType E; in doTest()
91 typedef ObjectType const (TestType::*CMemPtr); in doTest()
92 typedef ObjectType const E; in doTest()
106 typedef ObjectType volatile (TestType::*VMemPtr); in doTest()
107 typedef ObjectType volatile E; in doTest()
121 typedef ObjectType const volatile (TestType::*CVMemPtr); in doTest()
122 typedef ObjectType const volatile E; in doTest()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java423 final ObjectType i_stream = new ObjectType("java.io.InputStream"); in buildClassContentsWithAnnotatedMethods()
424 final ObjectType p_stream = new ObjectType("java.io.PrintStream"); in buildClassContentsWithAnnotatedMethods()
438 Type.VOID, new Type[] { new ObjectType("java.io.Reader") }, in buildClassContentsWithAnnotatedMethods()
440 LocalVariableGen lg = mg.addLocalVariable("in", new ObjectType( in buildClassContentsWithAnnotatedMethods()
473 mg.addExceptionHandler(try_start, try_end, handler, new ObjectType( in buildClassContentsWithAnnotatedMethods()
517 final ObjectType i_stream = new ObjectType("java.io.InputStream"); in buildClassContents()
518 final ObjectType p_stream = new ObjectType("java.io.PrintStream"); in buildClassContents()
532 Type.VOID, new Type[] { new ObjectType("java.io.Reader") }, in buildClassContents()
534 LocalVariableGen lg = mg.addLocalVariable("in", new ObjectType( in buildClassContents()
567 mg.addExceptionHandler(try_start, try_end, handler, new ObjectType( in buildClassContents()
[all …]
/external/proguard/src/proguard/classfile/attribute/preverification/
DObjectType.java32 public class ObjectType extends VerificationType class
41 public ObjectType() in ObjectType() method in ObjectType
49 public ObjectType(int u2classIndex) in ObjectType() method in ObjectType
90 ObjectType other = (ObjectType)object; in equals()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DExceptionHandler.java22 import org.apache.bcel.generic.ObjectType;
33 private final ObjectType catchtype;
39 ExceptionHandler(final ObjectType catch_type, final InstructionHandle handler_pc) { in ExceptionHandler()
47 public ObjectType getExceptionType() { in getExceptionType()
DUninitializedObjectType.java23 import org.apache.bcel.generic.ObjectType;
36 private final ObjectType initialized;
39 public UninitializedObjectType(final ObjectType t) { in UninitializedObjectType()
48 public ObjectType getInitialized() { in getInitialized()
DInstConstraintVisitor.java56 …private static final ObjectType GENERIC_ARRAY = ObjectType.getInstance(GenericArray.class.getName(…
232 final ObjectType t = o.getLoadClassType(cpg); in visitLoadClass()
293 if (t instanceof ObjectType) { in visitFieldInstruction()
294 final String name = ((ObjectType)t).getClassName(); in visitFieldInstruction()
584 if (! ((stack().peek() instanceof ObjectType) || (stack().peek().equals(Type.NULL))) ) { in visitATHROW()
593 final ObjectType exc = (ObjectType) (stack().peek()); in visitATHROW()
594 final ObjectType throwable = (ObjectType) (Type.getType("Ljava/lang/Throwable;")); in visitATHROW()
1253 private ObjectType getObjectType(final FieldInstruction o) { in getObjectType()
1255 if(rt instanceof ObjectType) { in getObjectType()
1256 return (ObjectType)rt; in getObjectType()
[all …]
/external/apache-commons-bcel/src/examples/
DHelloWorldBuilder.java34 import org.apache.bcel.generic.ObjectType;
82 ObjectType i_stream = new ObjectType("java.io.InputStream"); in main()
83 ObjectType p_stream = new ObjectType("java.io.PrintStream"); in main()
97 new Type[]{new ObjectType("java.io.Reader")}, in main()
101 …LocalVariableGen lg = mg.addLocalVariable("in", new ObjectType("java.io.BufferedReader"), null, nu… in main()
137 mg.addExceptionHandler(try_start, try_end, handler, new ObjectType("java.io.IOException")); in main()
/external/clang/test/Analysis/
DDynamicTypePropagation.m23 @interface NSArray<ObjectType> : NSObject
24 - (BOOL)contains:(ObjectType)obj; argument
25 - (ObjectType)getObjAtIndex:(NSUInteger)idx;
26 - (ObjectType)objectAtIndexedSubscript:(NSUInteger)idx;
27 @property(readonly) ObjectType firstObject;
/external/deqp/modules/egl/
DteglMemoryStressTests.cpp60 enum ObjectType enum
72 …stContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWi…
94 ObjectType m_types;
105 …stContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWi… in MemoryAllocator()
142 vector<ObjectType> types; in allocateUntilFailure()
159 ObjectType type = m_rnd.choose<ObjectType>(types.begin(), types.end()); in allocateUntilFailure()
319 ObjectType types;
590 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT); in init()
604 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT); in init()
/external/deqp/framework/opengl/
DgluObjectWrapper.hpp41 enum ObjectType enum
62 const ObjectTraits& objectTraits (ObjectType type);
87 template<ObjectType Type> class TypedObjectWrapper : public ObjectWrapper
123 template<ObjectType Type> class TypedObjectVector : public ObjectVector
/external/clang/lib/Sema/
DSemaCXXScopeSpec.cpp387 QualType ObjectType = GetTypeFromParser(ObjectTypePtr); in isNonTypeNestedNameSpecifier() local
393 if (!ObjectType.isNull()) { in isNonTypeNestedNameSpecifier()
397 LookupCtx = computeDeclContext(ObjectType); in isNonTypeNestedNameSpecifier()
398 isDependent = ObjectType->isDependentType(); in isNonTypeNestedNameSpecifier()
485 QualType ObjectType, in BuildCXXNestedNameSpecifier() argument
499 if (!ObjectType.isNull()) { in BuildCXXNestedNameSpecifier()
503 LookupCtx = computeDeclContext(ObjectType); in BuildCXXNestedNameSpecifier()
504 isDependent = ObjectType->isDependentType(); in BuildCXXNestedNameSpecifier()
527 if (!ObjectType.isNull() && Found.empty()) { in BuildCXXNestedNameSpecifier()
655 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope && in BuildCXXNestedNameSpecifier()
[all …]
/external/llvm/include/llvm/CodeGen/
DMIRYamlMapping.h186 enum ObjectType { DefaultType, SpillSlot, VariableSized };
190 ObjectType Type = DefaultType;
201 template <> struct ScalarEnumerationTraits<MachineStackObject::ObjectType> {
202 static void enumeration(yaml::IO &IO, MachineStackObject::ObjectType &Type) {
238 enum ObjectType { DefaultType, SpillSlot };
240 ObjectType Type = DefaultType;
250 struct ScalarEnumerationTraits<FixedMachineStackObject::ObjectType> {
252 FixedMachineStackObject::ObjectType &Type) {

12345