Searched defs:ObjectType (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/media/formats/mp4/
H A Des_descriptor.h21 enum ObjectType { enum in namespace:media::mp4
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DObjectType.java32 public class ObjectType extends VerificationType class in inherits:VerificationType
39 * Creates an uninitialized ObjectType.
41 public ObjectType() method in class:ObjectType
47 * Creates an ObjectType that points to the given class constant.
49 public ObjectType(int u2classIndex) method in class:ObjectType
90 ObjectType other = (ObjectType)object;
/external/chromium_org/ui/base/clipboard/
H A Dclipboard.h138 // ObjectType designates the type of data to be stored in the clipboard. This
140 // is defined by FormatType. A single ObjectType might be represented by
142 // ObjectType maps to "text/plain", "STRING", and several other formats. On
144 enum ObjectType { enum in class:ui::Clipboard
154 // ObjectMap is a map from ObjectType to associated data.
155 // The data is organized differently for each ObjectType. The following
176 typedef std::map<int /* ObjectType */, ObjectMapParams> ObjectMap;
317 void DispatchObject(ObjectType type, const ObjectMapParams& params);
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc245 const abi::__class_type_info *ObjectType = findBaseAtOffset( local
249 ObjectType ? ObjectType->__type_name : "<unknown>");
/external/deqp/framework/opengl/
H A DgluObjectWrapper.hpp41 enum ObjectType enum in namespace:glu
61 const ObjectTraits& objectTraits (ObjectType type);
85 template<ObjectType Type> class TypedObjectWrapper : public ObjectWrapper
120 template<ObjectType Type> class TypedObjectVector : public ObjectVector
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp236 enum ObjectType { enum in namespace:blink
240 static void getObjectParameter(const v8::FunctionCallbackInfo<v8::Value>& info, ObjectType objectType, ExceptionState& exceptionState)
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp312 QualType ObjectType = GetTypeFromParser(ObjectTypePtr); local
318 if (!ObjectType.isNull()) {
321 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
322 LookupCtx = computeDeclContext(ObjectType);
323 isDependent = ObjectType->isDependentType();
386 /// \param ObjectType Type of postfix expression if the nested-name-specifier
416 QualType ObjectType,
430 if (!ObjectType.isNull()) {
433 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
434 LookupCtx = computeDeclContext(ObjectType);
412 BuildCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, QualType ObjectType, bool EnteringContext, CXXScopeSpec &SS, NamedDecl *ScopeLookupResult, bool ErrorRecoveryLookup, bool *IsCorrectedToColon) argument
730 ActOnCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, ParsedType ObjectType, bool EnteringContext, CXXScopeSpec &SS, bool ErrorRecoveryLookup, bool *IsCorrectedToColon) argument
778 IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation ColonLoc, ParsedType ObjectType, bool EnteringContext) argument
[all...]
H A DSemaExprMember.cpp605 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); local
608 SemaRef.LookupTemplateName(R, nullptr, SS, ObjectType, false, MOUS);
963 ParsedType ObjectType; local
966 OpLoc, tok::arrow, ObjectType,
H A DSemaTemplateInstantiate.cpp767 QualType ObjectType = QualType(),
1027 QualType ObjectType,
1080 return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType,
1024 TransformTemplateName(CXXScopeSpec &SS, TemplateName Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
H A DSemaDeclObjC.cpp2438 QualType ObjectType) {
2439 if (ObjectType.isNull())
2441 if (S.LookupMethodInObjectType(Sel, ObjectType, true/*Instance method*/))
2443 return S.LookupMethodInObjectType(Sel, ObjectType, false/*Class method*/) !=
2449 QualType ObjectType) {
2453 if (ObjectType.isNull())
2455 else if (!ObjectType->isObjCObjectPointerType())
2458 ObjectType->getAsObjCInterfacePointerType()) {
2459 ObjectType = QualType(ObjCPtr->getInterfaceType(), 0);
2462 else if (ObjectType
2437 HelperIsMethodInObjCType(Sema &S, Selector Sel, QualType ObjectType) argument
2448 SelectorsForTypoCorrection(Selector Sel, QualType ObjectType) argument
[all...]
H A DSemaExprCXX.cpp321 ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) { argument
322 if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType)
327 QualType SearchType = GetTypeFromParser(ObjectType);
5164 tok::TokenKind OpKind, ParsedType &ObjectType,
5185 ObjectType = ParsedType::make(BaseType);
5275 ObjectType = ParsedType();
5295 ObjectType = ParsedType::make(BaseType);
5313 static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base, argument
5320 ObjectType = Base->getType();
5329 if (const PointerType *Ptr = ObjectType
5163 ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, ParsedType &ObjectType, bool &MayBePseudoDestructor) argument
5357 QualType ObjectType; local
5464 QualType ObjectType; local
5592 QualType ObjectType; local
[all...]
H A DSemaTemplate.cpp166 QualType ObjectType = ObjectTypePtr.get(); local
169 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
248 QualType ObjectType,
255 if (!ObjectType.isNull()) {
258 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
259 LookupCtx = computeDeclContext(ObjectType);
260 isDependent = ObjectType->isDependentType();
261 assert((isDependent || !ObjectType->isIncompleteType() ||
262 ObjectType->castAs<TagType>()->isBeingDefined()) &&
266 if (ObjectType
246 LookupTemplateName(LookupResult &Found, Scope *S, CXXScopeSpec &SS, QualType ObjectType, bool EnteringContext, bool &MemberOfUnknownSpecialization) argument
2912 ActOnDependentTemplateName(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Name, ParsedType ObjectType, bool EnteringContext, TemplateTy &Result) argument
[all...]
H A DSemaDecl.cpp208 QualType ObjectType = ObjectTypePtr.get(); local
209 if (ObjectType->isRecordType())
210 LookupCtx = computeDeclContext(ObjectType);
H A DSemaOverload.cpp5784 QualType ObjectType,
5800 ObjectType, ObjectClassification,
5805 ObjectType, ObjectClassification, local
5820 CXXRecordDecl *ActingContext, QualType ObjectType,
5878 if (Method->isStatic() || ObjectType.isNull())
5885 = TryObjectArgumentInitialization(*this, ObjectType, ObjectClassification,
5938 QualType ObjectType,
5979 ActingContext, ObjectType, ObjectClassification, Args, local
11390 QualType ObjectType = UnresExpr->getBaseType(); local
11425 AddMethodCandidate(Method, I.getPair(), ActingDC, ObjectType,
5783 AddMethodCandidate(DeclAccessPair FoundDecl, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet, bool SuppressUserConversions) argument
5819 AddMethodCandidate(CXXMethodDecl *Method, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet &CandidateSet, bool SuppressUserConversions) argument
5934 AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, TemplateArgumentListInfo *ExplicitTemplateArgs, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet, bool SuppressUserConversions) argument
11431 ObjectType, ObjectClassification, local
[all...]
H A DTreeTransform.h438 QualType ObjectType = QualType(),
459 /// \param ObjectType If we're translating a template name within a member
473 QualType ObjectType = QualType(),
1021 QualType ObjectType,
1034 QualType ObjectType);
2751 QualType ObjectType,
2756 QualType ObjectType,
2760 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3017 QualType ObjectType,
3035 ObjectType, fals
3015 TransformNestedNameSpecifierLoc( NestedNameSpecifierLoc NNS, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
3171 TransformTemplateName(CXXScopeSpec &SS, TemplateName Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
3685 TransformTypeInObjectScope(TypeLoc TL, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
3701 TransformTypeInObjectScope(TypeSourceInfo *TSInfo, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
3713 TransformTSIInObjectScope( TypeLoc TL, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
8940 QualType ObjectType; local
9998 RebuildTemplateName(CXXScopeSpec &SS, const IdentifierInfo &Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
10017 RebuildTemplateName(CXXScopeSpec &SS, OverloadedOperatorKind Operator, SourceLocation NameLoc, QualType ObjectType) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp299 void ExprEngine::VisitCXXDestructor(QualType ObjectType, argument
314 DestVal = makeZeroElementRegion(State, DestVal, ObjectType);
317 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl();
/external/deqp/modules/egl/
H A DteglMemoryStressTests.cpp54 enum ObjectType enum in namespace:deqp::egl::__anon19832
66 MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use);
88 ObjectType m_types;
99 MemoryAllocator::MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use)
136 vector<ObjectType> types;
153 ObjectType type = m_rnd.choose<ObjectType>(types.begin(), types.end());
310 ObjectType types;
573 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT);
587 spec.types = (ObjectType)(OBJECTTYPE_PBUFFE
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java230 ObjectType[] exceptions;
232 MethodSignature(TypeParameter[] tp, Type[] p, Type ret, ObjectType[] ex) {
264 public ObjectType[] getExceptionTypes() { return exceptions; }
291 ObjectType superClass;
292 ObjectType[] superInterfaces;
294 TypeParameter(String sig, int nb, int ne, ObjectType sc, ObjectType[] si) {
312 public ObjectType getClassBound() { return superClass; }
319 public ObjectType[] getInterfaceBound() { return superInterfaces; }
361 ObjectType ar
456 public static abstract class ObjectType extends Type {} class in class:SignatureAttribute
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h47 enum ObjectType { enum in class:SkPdfNativeObject
91 ObjectType fObjectType;
209 ObjectType type() {
1283 ObjectType type) {
1288 SkPdfNativeObject* obj, ObjectType type) {
1293 ObjectType type) {
/external/clang/lib/Parse/
H A DParseExpr.cpp1364 ParsedType ObjectType; local
1379 OpLoc, OpKind, ObjectType,
1384 ParseOptionalCXXScopeSpecifier(SS, ObjectType,
1388 ObjectType = ParsedType();
1402 ObjectType);
1431 ObjectType, TemplateKWLoc, Name))
H A DParseExprCXX.cpp80 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, argument
95 TemplateName, ObjectType, EnteringContext,
161 /// \param ObjectType if this nested-name-specifier is being parsed following
185 ParsedType ObjectType,
264 ObjectType = ParsedType();
289 if (!HasScopeSpecifier && !ObjectType)
305 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
338 ObjectType, EnteringContext,
414 Next.getLocation(), ObjectType,
430 II, ObjectType)) {
184 ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, ParsedType ObjectType, bool EnteringContext, bool *MayBePseudoDestructor, bool IsTypename, IdentifierInfo **LastII) argument
1392 ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc, tok::TokenKind OpKind, CXXScopeSpec &SS, ParsedType ObjectType) argument
1872 ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS, SourceLocation TemplateKWLoc, IdentifierInfo *Name, SourceLocation NameLoc, bool EnteringContext, ParsedType ObjectType, UnqualifiedId &Id, bool AssumeTemplateId) argument
2079 ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext, ParsedType ObjectType, UnqualifiedId &Result) argument
2308 ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext, bool AllowDestructorName, bool AllowConstructorName, ParsedType ObjectType, SourceLocation& TemplateKWLoc, UnqualifiedId &Result) argument
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp278 Type *ObjectType = GVar->getType()->getElementType(); local
279 if (ObjectType->isSized()) {
286 Align = TD->getABITypeAlignment(ObjectType);
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h47 enum ObjectType { enum in class:SkPdfNativeObject
91 ObjectType fObjectType;
209 ObjectType type() {
1283 ObjectType type) {
1288 SkPdfNativeObject* obj, ObjectType type) {
1293 ObjectType type) {
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusEnums.h514 enum ObjectType enum
533 ObjectType type
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 733 milliseconds

12