Home
last modified time | relevance | path

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

12

/external/javassist/src/main/javassist/bytecode/
DSignatureAttribute.java230 ObjectType[] exceptions;
232 MethodSignature(TypeParameter[] tp, Type[] p, Type ret, ObjectType[] ex) { in MethodSignature()
264 public ObjectType[] getExceptionTypes() { return exceptions; } in getExceptionTypes()
291 ObjectType superClass;
292 ObjectType[] superInterfaces;
294 TypeParameter(String sig, int nb, int ne, ObjectType sc, ObjectType[] si) { in TypeParameter()
312 public ObjectType getClassBound() { return superClass; } in getClassBound()
319 public ObjectType[] getInterfaceBound() { return superInterfaces; } in getInterfaceBound()
361 ObjectType arg;
364 TypeArgument(ObjectType a, char w) { in TypeArgument()
[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()
DVerificationTypeFactory.java108 public static ObjectType createObjectType(int classIndex) in createObjectType()
110 return new ObjectType(classIndex); in createObjectType()
/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
DgluObjectWrapper.cpp83 const ObjectTraits& objectTraits (ObjectType type) in objectTraits()
/external/clang/lib/Sema/
DSemaCXXScopeSpec.cpp360 QualType ObjectType = GetTypeFromParser(ObjectTypePtr); in isNonTypeNestedNameSpecifier() local
366 if (!ObjectType.isNull()) { in isNonTypeNestedNameSpecifier()
370 LookupCtx = computeDeclContext(ObjectType); in isNonTypeNestedNameSpecifier()
371 isDependent = ObjectType->isDependentType(); in isNonTypeNestedNameSpecifier()
461 QualType ObjectType, in BuildCXXNestedNameSpecifier() argument
475 if (!ObjectType.isNull()) { in BuildCXXNestedNameSpecifier()
479 LookupCtx = computeDeclContext(ObjectType); in BuildCXXNestedNameSpecifier()
480 isDependent = ObjectType->isDependentType(); in BuildCXXNestedNameSpecifier()
503 if (!ObjectType.isNull() && Found.empty()) { in BuildCXXNestedNameSpecifier()
623 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope && in BuildCXXNestedNameSpecifier()
[all …]
DSemaExprCXX.cpp327 ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) { in getDestructorType() argument
328 if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType) in getDestructorType()
333 QualType SearchType = GetTypeFromParser(ObjectType); in getDestructorType()
5314 ParsedType &ObjectType, in ActOnStartCXXMemberReference() argument
5335 ObjectType = ParsedType::make(BaseType); in ActOnStartCXXMemberReference()
5425 ObjectType = ParsedType(); in ActOnStartCXXMemberReference()
5445 ObjectType = ParsedType::make(BaseType); in ActOnStartCXXMemberReference()
5449 static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base, in CheckArrow() argument
5456 ObjectType = Base->getType(); in CheckArrow()
5465 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) { in CheckArrow()
[all …]
DSemaDeclObjC.cpp2493 QualType ObjectType) { in HelperIsMethodInObjCType() argument
2494 if (ObjectType.isNull()) in HelperIsMethodInObjCType()
2496 if (S.LookupMethodInObjectType(Sel, ObjectType, true/*Instance method*/)) in HelperIsMethodInObjCType()
2498 return S.LookupMethodInObjectType(Sel, ObjectType, false/*Class method*/) != in HelperIsMethodInObjCType()
2504 QualType ObjectType) { in SelectorsForTypoCorrection() argument
2508 if (ObjectType.isNull()) in SelectorsForTypoCorrection()
2510 else if (!ObjectType->isObjCObjectPointerType()) in SelectorsForTypoCorrection()
2513 ObjectType->getAsObjCInterfacePointerType()) { in SelectorsForTypoCorrection()
2514 ObjectType = QualType(ObjCPtr->getInterfaceType(), 0); in SelectorsForTypoCorrection()
2517 else if (ObjectType->isObjCIdType() || ObjectType->isObjCQualifiedIdType()) in SelectorsForTypoCorrection()
[all …]
DTreeTransform.h459 QualType ObjectType = QualType(),
494 QualType ObjectType = QualType(),
1048 QualType ObjectType,
1061 QualType ObjectType);
2856 QualType ObjectType,
2861 QualType ObjectType,
2865 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3134 QualType ObjectType, in TransformNestedNameSpecifierLoc() argument
3152 ObjectType, false, SS, in TransformNestedNameSpecifierLoc()
3194 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, in TransformNestedNameSpecifierLoc()
[all …]
DSemaTemplate.cpp167 QualType ObjectType = ObjectTypePtr.get(); in isTemplateName() local
170 LookupTemplateName(R, S, SS, ObjectType, EnteringContext, in isTemplateName()
249 QualType ObjectType, in LookupTemplateName() argument
256 if (!ObjectType.isNull()) { in LookupTemplateName()
260 LookupCtx = computeDeclContext(ObjectType); in LookupTemplateName()
261 isDependent = ObjectType->isDependentType(); in LookupTemplateName()
262 assert((isDependent || !ObjectType->isIncompleteType() || in LookupTemplateName()
263 ObjectType->castAs<TagType>()->isBeingDefined()) && in LookupTemplateName()
267 if (ObjectType->isObjCObjectOrInterfaceType()) { in LookupTemplateName()
290 if (!ObjectType.isNull() && Found.empty()) { in LookupTemplateName()
[all …]
DSemaExprMember.cpp617 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord() local
620 SemaRef.LookupTemplateName(R, nullptr, SS, ObjectType, false, MOUS); in LookupMemberExprInRecord()
978 ParsedType ObjectType; in BuildMemberReferenceExpr() local
981 OpLoc, tok::arrow, ObjectType, in BuildMemberReferenceExpr()
/external/clang/lib/Parse/
DParseExprCXX.cpp80 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, in CheckForTemplateAndDigraph() argument
95 TemplateName, ObjectType, EnteringContext, in CheckForTemplateAndDigraph()
188 ParsedType ObjectType, in ParseOptionalCXXScopeSpecifier() argument
286 ObjectType = ParsedType(); in ParseOptionalCXXScopeSpecifier()
311 if (!HasScopeSpecifier && !ObjectType) in ParseOptionalCXXScopeSpecifier()
327 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, in ParseOptionalCXXScopeSpecifier()
360 ObjectType, EnteringContext, in ParseOptionalCXXScopeSpecifier()
436 Next.getLocation(), ObjectType, in ParseOptionalCXXScopeSpecifier()
463 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) { in ParseOptionalCXXScopeSpecifier()
500 ObjectType, EnteringContext, SS, in ParseOptionalCXXScopeSpecifier()
[all …]
DParseExpr.cpp1496 ParsedType ObjectType; in ParsePostfixExpressionSuffix() local
1511 OpLoc, OpKind, ObjectType, in ParsePostfixExpressionSuffix()
1516 ParseOptionalCXXScopeSpecifier(SS, ObjectType, in ParsePostfixExpressionSuffix()
1520 ObjectType = ParsedType(); in ParsePostfixExpressionSuffix()
1534 ObjectType); in ParsePostfixExpressionSuffix()
1564 ObjectType, TemplateKWLoc, Name)) { in ParsePostfixExpressionSuffix()
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java41 … Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objec… in visitObjectType()
51 …zz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objec… in visitStackObjectType()
61 …zz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objec… in visitVariablesObjectType()
/external/compiler-rt/lib/ubsan/
Dubsan_type_hash.cc247 const abi::__class_type_info *ObjectType = findBaseAtOffset( in getDynamicTypeInfo() local
251 ObjectType ? ObjectType->__type_name : "<unknown>"); in getDynamicTypeInfo()
/external/skia/experimental/PdfViewer/pdfparser/native/
DSkPdfNativeObject.h47 enum ObjectType { enum
91 ObjectType fObjectType;
209 ObjectType type() { in type()
1283 ObjectType type) { in makeStringCore()
1288 SkPdfNativeObject* obj, ObjectType type) { in makeStringCore()
1293 ObjectType type) { in makeStringCore()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCXX.cpp299 void ExprEngine::VisitCXXDestructor(QualType ObjectType, in VisitCXXDestructor() argument
314 DestVal = makeZeroElementRegion(State, DestVal, ObjectType); in VisitCXXDestructor()
317 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl(); in VisitCXXDestructor()
/external/eigen/doc/
DQuickReference.dox143 ObjectType::Scalar ObjectType::RowsAtCompileTime
144 ObjectType::RealScalar ObjectType::ColsAtCompileTime
145 ObjectType::Index ObjectType::SizeAtCompileTime
/external/clang/include/clang/Parse/
DParser.h1415 ParsedType ObjectType,
1452 ParsedType ObjectType);
2325 ParsedType ObjectType,
2329 ParsedType ObjectType,
2392 ParsedType ObjectType,
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java712 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType()
766 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) in visitStackObjectType()
821 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) in visitVariablesObjectType()
/external/clang/include/clang/Sema/
DSema.h1354 ParsedType ObjectType = ParsedType(),
2222 QualType ObjectType,
2229 CXXRecordDecl *ActingContext, QualType ObjectType,
2239 QualType ObjectType,
2979 QualType ObjectType=QualType());
4248 ParsedType ObjectType,
4251 ParsedType getDestructorType(const DeclSpec& DS, ParsedType ObjectType);
4498 ParsedType &ObjectType,
4581 ParsedType ObjectType);
4587 QualType ObjectType,
[all …]
/external/proguard/src/proguard/classfile/editor/
DConstantPoolShrinker.java412 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType()
DConstantPoolRemapper.java559 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java721 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType()
1050 case VerificationType.OBJECT_TYPE: return new ObjectType(); in createVerificationType()

12