Searched refs:getNumProtocols (Results 1 – 14 of 14) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 910 unsigned getNumProtocols() const { in getNumProtocols() function 911 return this->getTypePtr()->getNumProtocols(); in getNumProtocols() 915 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocolLoc() 919 assert(i < getNumProtocols() && "Index is out of bounds!"); in setProtocolLoc() 924 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocol() 930 return llvm::makeArrayRef(getProtocolLocArray(), getNumProtocols()); in getProtocolLocs() 959 + this->getNumProtocols() * sizeof(SourceLocation); in getExtraLocalDataSize()
|
D | CanonicalType.h | 574 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols) 592 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
|
D | Type.h | 4841 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); } 4843 bool qual_empty() const { return getNumProtocols() == 0; } 4847 unsigned getNumProtocols() const { return ObjCObjectTypeBits.NumProtocols; } 4851 assert(I < getNumProtocols() && "Out-of-range protocol access"); 4857 return ArrayRef<ObjCProtocolDecl *>(qual_begin(), getNumProtocols()); 4968 getNumProtocols, 5126 unsigned getNumProtocols() const { 5127 return getObjectType()->getNumProtocols();
|
/external/clang/lib/Index/ |
D | IndexTypeSourceInfo.cpp | 100 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) { in VisitObjCObjectTypeLoc()
|
/external/clang/lib/AST/ |
D | Type.cpp | 551 assert(getNumProtocols() == protocols.size() && in ObjCObjectType() 1005 T->getNumProtocols()), in TRIVIAL_TYPE_CLASS() 1212 objcObjectType->getNumProtocols()); in substObjCTypeArgs() 1230 objcObjectType->getNumProtocols()); in substObjCTypeArgs() 1469 if (T->getNumProtocols() && T->getInterface()) in getAsObjCQualifiedInterfaceType() 3211 llvm::makeArrayRef(qual_begin(), getNumProtocols()), in Profile()
|
D | TypeLoc.cpp | 404 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) in initializeLocal()
|
D | ASTDiagnostic.cpp | 196 Ty->getNumProtocols()), in Desugar()
|
D | ASTImporter.cpp | 907 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) in IsStructurallyEquivalent() 909 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { in IsStructurallyEquivalent()
|
D | ASTContext.cpp | 7318 if (LHS->getNumProtocols() > 0) { in canAssignObjCInterfaces()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 1201 if (ObjCObjectTL.getNumProtocols() > 0) { in actOnObjCTypeArgsAndProtocolQualifiers() 1202 assert(ObjCObjectTL.getNumProtocols() == Protocols.size()); in actOnObjCTypeArgsAndProtocolQualifiers()
|
D | TreeTransform.h | 6056 TL.getNumProtocols()), in TransformObjCObjectType() 6071 for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i) in TransformObjCObjectType()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 459 Record.push_back(T->getNumProtocols()); in VisitObjCObjectType() 698 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
D | ASTReader.cpp | 5938 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1546 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) { in VisitObjCObjectTypeLoc()
|