Searched refs:getNumProtocols (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 797 unsigned getNumProtocols() const { in getNumProtocols() function 798 return this->getTypePtr()->getNumProtocols(); in getNumProtocols() 802 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocolLoc() 806 assert(i < getNumProtocols() && "Index is out of bounds!"); in setProtocolLoc() 811 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocol() 835 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) in initializeLocal() 840 return this->getNumProtocols() * sizeof(SourceLocation); in getExtraLocalDataSize()
|
D | CanonicalType.h | 648 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols) 666 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
|
D | Type.h | 4245 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); } 4247 bool qual_empty() const { return getNumProtocols() == 0; } 4251 unsigned getNumProtocols() const { return ObjCObjectTypeBits.NumProtocols; } 4255 assert(I < getNumProtocols() && "Out-of-range protocol access"); 4338 getNumProtocols, 4456 unsigned getNumProtocols() const { 4457 return getObjectType()->getNumProtocols();
|
/external/clang/tools/libclang/ |
D | IndexTypeSourceInfo.cpp | 66 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) { in VisitObjCObjectTypeLoc()
|
D | CIndex.cpp | 1468 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) { in VisitObjCObjectTypeLoc()
|
/external/clang/lib/AST/ |
D | Type.cpp | 486 assert(getNumProtocols() == NumProtocols && in ObjCObjectType() 498 if (T->getNumProtocols() && T->getInterface()) in getAsObjCQualifiedInterfaceType() 2017 Profile(ID, getBaseType(), qual_begin(), getNumProtocols()); in Profile()
|
D | ASTImporter.cpp | 794 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) in IsStructurallyEquivalent() 796 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { in IsStructurallyEquivalent()
|
D | ASTContext.cpp | 6456 unsigned LHSNumProtocols = LHS->getNumProtocols(); in getIntersectionOfProtocols() 6467 unsigned RHSNumProtocols = RHS->getNumProtocols(); in getIntersectionOfProtocols() 6529 if (LHS->getNumProtocols() == 0) in canAssignObjCInterfaces() 6534 if (RHS->getNumProtocols() == 0) { in canAssignObjCInterfaces()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 923 if (ObjT->getNumProtocols()) in ConvertDeclSpecToType() 3228 assert(TL.getNumProtocols() > 0); in VisitObjCObjectTypeLoc() 3229 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers()); in VisitObjCObjectTypeLoc() 3235 assert(TL.getNumProtocols() == 0); in VisitObjCObjectTypeLoc()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 389 Record.push_back(T->getNumProtocols()); in VisitObjCObjectType() 613 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
D | ASTReader.cpp | 4878 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|