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

/external/chromium_org/media/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.h141 // ObjectType designates the type of data to be stored in the clipboard. This
143 // is defined by FormatType. A single ObjectType might be represented by
145 // ObjectType maps to "text/plain", "STRING", and several other formats. On
147 enum ObjectType { enum in class:ui::Clipboard
159 // ObjectMap is a map from ObjectType to associated data.
160 // The data is organized differently for each ObjectType. The following
189 typedef std::map<int /* ObjectType */, ObjectMapParams> ObjectMap;
331 void DispatchObject(ObjectType type, const ObjectMapParams& params);
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc243 const abi::__class_type_info *ObjectType = findBaseAtOffset( local
247 ObjectType ? ObjectType->__type_name : "<unknown>");
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp258 enum ObjectType { enum in namespace:WebCore
262 static void getObjectParameter(const v8::FunctionCallbackInfo<v8::Value>& args, ObjectType objectType)
/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();
394 QualType ObjectType,
405 if (!ObjectType.isNull()) {
408 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
409 LookupCtx = computeDeclContext(ObjectType);
410 isDependent = ObjectType
390 BuildCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, QualType ObjectType, bool EnteringContext, CXXScopeSpec &SS, NamedDecl *ScopeLookupResult, bool ErrorRecoveryLookup) argument
681 ActOnCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, ParsedType ObjectType, bool EnteringContext, CXXScopeSpec &SS) argument
726 IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation ColonLoc, ParsedType ObjectType, bool EnteringContext) argument
[all...]
H A DSemaExprMember.cpp585 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); local
588 SemaRef.LookupTemplateName(R, 0, SS, ObjectType, false, MOUS);
903 ParsedType ObjectType; local
906 OpLoc, tok::arrow, ObjectType,
H A DSemaTemplateInstantiate.cpp852 QualType ObjectType = QualType(),
1089 QualType ObjectType,
1142 return inherited::TransformTemplateName(SS, Name, NameLoc, ObjectType,
1086 TransformTemplateName(CXXScopeSpec &SS, TemplateName Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
H A DSemaDeclObjC.cpp2342 QualType ObjectType) {
2343 if (ObjectType.isNull())
2345 if (S.LookupMethodInObjectType(Sel, ObjectType, true/*Instance method*/))
2347 return S.LookupMethodInObjectType(Sel, ObjectType, false/*Class method*/) != 0;
2352 QualType ObjectType) {
2356 if (ObjectType.isNull())
2358 else if (!ObjectType->isObjCObjectPointerType())
2361 ObjectType->getAsObjCInterfacePointerType()) {
2362 ObjectType = QualType(ObjCPtr->getInterfaceType(), 0);
2365 else if (ObjectType
2341 HelperIsMethodInObjCType(Sema &S, Selector Sel, QualType ObjectType) argument
2351 SelectorsForTypoCorrection(Selector Sel, QualType ObjectType) argument
[all...]
H A DSemaExprCXX.cpp318 ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) { argument
319 if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType)
324 QualType SearchType = GetTypeFromParser(ObjectType);
5049 tok::TokenKind OpKind, ParsedType &ObjectType,
5070 ObjectType = ParsedType::make(BaseType);
5151 ObjectType = ParsedType();
5171 ObjectType = ParsedType::make(BaseType);
5189 static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base, argument
5196 ObjectType = Base->getType();
5205 if (const PointerType *Ptr = ObjectType
5048 ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc, tok::TokenKind OpKind, ParsedType &ObjectType, bool &MayBePseudoDestructor) argument
5233 QualType ObjectType; local
5339 QualType ObjectType; local
5467 QualType ObjectType; local
[all...]
H A DSemaTemplate.cpp165 QualType ObjectType = ObjectTypePtr.get(); local
168 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
2805 ActOnDependentTemplateName(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Name, ParsedType ObjectType, bool EnteringContext, TemplateTy &Result) argument
[all...]
H A DSemaDecl.cpp142 QualType ObjectType = ObjectTypePtr.get(); local
143 if (ObjectType->isRecordType())
144 LookupCtx = computeDeclContext(ObjectType);
H A DSemaOverload.cpp5573 QualType ObjectType,
5589 ObjectType, ObjectClassification,
5594 ObjectType, ObjectClassification, local
5609 CXXRecordDecl *ActingContext, QualType ObjectType,
5660 if (Method->isStatic() || ObjectType.isNull())
5667 = TryObjectArgumentInitialization(*this, ObjectType, ObjectClassification,
5713 QualType ObjectType,
5754 ActingContext, ObjectType, ObjectClassification, Args, local
11020 QualType ObjectType = UnresExpr->getBaseType(); local
11054 AddMethodCandidate(Method, I.getPair(), ActingDC, ObjectType,
5572 AddMethodCandidate(DeclAccessPair FoundDecl, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet, bool SuppressUserConversions) argument
5608 AddMethodCandidate(CXXMethodDecl *Method, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet, bool SuppressUserConversions) argument
5709 AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, TemplateArgumentListInfo *ExplicitTemplateArgs, QualType ObjectType, Expr::Classification ObjectClassification, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet, bool SuppressUserConversions) argument
11060 ObjectType, ObjectClassification, local
[all...]
H A DTreeTransform.h435 QualType ObjectType = QualType(),
456 /// \param ObjectType If we're translating a template name within a member
470 QualType ObjectType = QualType(),
998 QualType ObjectType,
1011 QualType ObjectType);
2613 QualType ObjectType,
2618 QualType ObjectType,
2856 QualType ObjectType,
2874 ObjectType, false, SS,
2908 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType,
2854 TransformNestedNameSpecifierLoc( NestedNameSpecifierLoc NNS, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
3010 TransformTemplateName(CXXScopeSpec &SS, TemplateName Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
3523 TransformTypeInObjectScope(TypeLoc TL, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
3577 TransformTypeInObjectScope(TypeSourceInfo *TSInfo, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
8417 QualType ObjectType; local
9453 RebuildTemplateName(CXXScopeSpec &SS, const IdentifierInfo &Name, SourceLocation NameLoc, QualType ObjectType, NamedDecl *FirstQualifierInScope) argument
9472 RebuildTemplateName(CXXScopeSpec &SS, OverloadedOperatorKind Operator, SourceLocation NameLoc, QualType ObjectType) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp281 void ExprEngine::VisitCXXDestructor(QualType ObjectType, argument
294 DestVal = makeZeroElementRegion(State, DestVal, ObjectType);
297 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl();
/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/clang/lib/Parse/
H A DParseExpr.cpp1457 ParsedType ObjectType; local
1473 OpLoc, OpKind, ObjectType,
1478 ParseOptionalCXXScopeSpecifier(SS, ObjectType,
1482 ObjectType = ParsedType();
1496 ObjectType);
1525 ObjectType, TemplateKWLoc, Name))
H A DParseExprCXX.cpp76 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, argument
91 TemplateName, ObjectType, EnteringContext,
157 /// \param ObjectType if this nested-name-specifier is being parsed following
181 ParsedType ObjectType,
259 ObjectType = ParsedType();
284 if (!HasScopeSpecifier && !ObjectType)
296 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType,
329 ObjectType, EnteringContext,
406 Next.getLocation(), ObjectType,
423 II, ObjectType)) {
180 ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, ParsedType ObjectType, bool EnteringContext, bool *MayBePseudoDestructor, bool IsTypename, IdentifierInfo **LastII) argument
1275 ParseCXXPseudoDestructor(ExprArg Base, SourceLocation OpLoc, tok::TokenKind OpKind, CXXScopeSpec &SS, ParsedType ObjectType) argument
1753 ParseUnqualifiedIdTemplateId(CXXScopeSpec &SS, SourceLocation TemplateKWLoc, IdentifierInfo *Name, SourceLocation NameLoc, bool EnteringContext, ParsedType ObjectType, UnqualifiedId &Id, bool AssumeTemplateId) argument
1959 ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext, ParsedType ObjectType, UnqualifiedId &Result) argument
2187 ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext, bool AllowDestructorName, bool AllowConstructorName, ParsedType ObjectType, SourceLocation& TemplateKWLoc, UnqualifiedId &Result) argument
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp279 Type *ObjectType = GVar->getType()->getElementType(); local
280 if (ObjectType->isSized()) {
287 Align = TD->getABITypeAlignment(ObjectType);
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1420 milliseconds