Searched refs:getNumProtocols (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 834 unsigned getNumProtocols() const { in getNumProtocols() function 835 return this->getTypePtr()->getNumProtocols(); in getNumProtocols() 839 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocolLoc() 843 assert(i < getNumProtocols() && "Index is out of bounds!"); in setProtocolLoc() 848 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocol() 872 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) in initializeLocal() 877 return this->getNumProtocols() * sizeof(SourceLocation); in getExtraLocalDataSize()
|
D | CanonicalType.h | 645 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols) 663 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
|
D | Type.h | 4311 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); } 4313 bool qual_empty() const { return getNumProtocols() == 0; } 4317 unsigned getNumProtocols() const { return ObjCObjectTypeBits.NumProtocols; } 4321 assert(I < getNumProtocols() && "Out-of-range protocol access"); 4404 getNumProtocols, 4522 unsigned getNumProtocols() const { 4523 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 | 1485 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) { in VisitObjCObjectTypeLoc()
|
/external/clang/lib/AST/ |
D | Type.cpp | 470 assert(getNumProtocols() == NumProtocols && in ObjCObjectType() 482 if (T->getNumProtocols() && T->getInterface()) in getAsObjCQualifiedInterfaceType() 2057 Profile(ID, getBaseType(), qual_begin(), getNumProtocols()); in Profile()
|
D | ASTImporter.cpp | 808 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) in IsStructurallyEquivalent() 810 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { in IsStructurallyEquivalent()
|
D | ASTContext.cpp | 6677 unsigned LHSNumProtocols = LHS->getNumProtocols(); in getIntersectionOfProtocols() 6688 unsigned RHSNumProtocols = RHS->getNumProtocols(); in getIntersectionOfProtocols() 6750 if (LHS->getNumProtocols() == 0) in canAssignObjCInterfaces() 6755 if (RHS->getNumProtocols() == 0) { in canAssignObjCInterfaces()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 934 if (ObjT->getNumProtocols()) in ConvertDeclSpecToType() 3428 assert(TL.getNumProtocols() > 0); in VisitObjCObjectTypeLoc() 3429 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers()); in VisitObjCObjectTypeLoc() 3435 assert(TL.getNumProtocols() == 0); in VisitObjCObjectTypeLoc()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 397 Record.push_back(T->getNumProtocols()); in VisitObjCObjectType() 624 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
D | ASTReader.cpp | 5170 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|