Searched refs:getNumProtocols (Results 1 – 14 of 14) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | TypeLoc.h | 767 return getNumProtocols() ? in getProtocolLAngleLoc() 777 return getNumProtocols() ? in getProtocolRAngleLoc() 786 unsigned getNumProtocols() const { in getNumProtocols() function 787 return this->getTypePtr()->getNumProtocols(); in getNumProtocols() 791 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocolLoc() 796 assert(i < getNumProtocols() && "Index is out of bounds!"); in setProtocolLoc() 801 assert(i < getNumProtocols() && "Index is out of bounds!"); in getProtocol() 812 if (!this->getNumProtocols()) return 0; in getExtraLocalDataSize() 979 unsigned getNumProtocols() const { in getNumProtocols() function 980 return this->getTypePtr()->getNumProtocols(); in getNumProtocols() [all …]
|
| H A D | CanonicalType.h | 593 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols) 612 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
|
| H A D | Type.h | 5427 assert(getNumProtocols() == protocols.size() && 5440 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); } 5442 bool qual_empty() const { return getNumProtocols() == 0; } 5446 unsigned getNumProtocols() const { 5452 assert(I < getNumProtocols() && "Out-of-range protocol access"); 5458 return ArrayRef<ObjCProtocolDecl *>(qual_begin(), getNumProtocols()); 5768 getNumProtocols, 5930 unsigned getNumProtocols() const { 5931 return getObjectType()->getNumProtocols();
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | TypeLoc.cpp | 444 if (!getNumProtocols()) return; in initializeLocal() 448 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) in initializeLocal() 464 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) in initializeLocal()
|
| H A D | ASTStructuralEquivalence.cpp | 766 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) in IsStructurallyEquivalent() 768 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { in IsStructurallyEquivalent() 782 if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) in IsStructurallyEquivalent() 784 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { in IsStructurallyEquivalent()
|
| H A D | Type.cpp | 1079 T->getNumProtocols()), in TRIVIAL_TYPE_CLASS() 1296 objcObjectType->getNumProtocols()); in substObjCTypeArgs() 1314 objcObjectType->getNumProtocols()); in substObjCTypeArgs() 1553 if (T->getNumProtocols() && T->getInterface()) in getAsObjCQualifiedInterfaceType() 3401 llvm::makeArrayRef(qual_begin(), getNumProtocols()), in Profile() 3416 llvm::makeArrayRef(qual_begin(), getNumProtocols())); in Profile()
|
| H A D | ASTDiagnostic.cpp | 195 Ty->getNumProtocols()), in Desugar()
|
| H A D | ASTContext.cpp | 8371 if (LHS->getNumProtocols() > 0) { in canAssignObjCInterfaces()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Index/ |
| H A D | IndexTypeSourceInfo.cpp | 123 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) { in VisitObjCObjectTypeLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 541 Record.push_back(T->getNumProtocols()); in VisitObjCTypeParamType() 552 Record.push_back(T->getNumProtocols()); in VisitObjCObjectType() 723 if (TL.getNumProtocols()) { in VisitObjCTypeParamTypeLoc() 727 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCTypeParamTypeLoc() 850 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
| H A D | ASTReader.cpp | 6719 if (TL.getNumProtocols()) { in VisitObjCTypeParamTypeLoc() 6723 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCTypeParamTypeLoc() 6735 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) in VisitObjCObjectTypeLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaType.cpp | 1167 if (OTPTL.getNumProtocols() > 0) { in actOnObjCTypeArgsAndProtocolQualifiers() 1168 assert(OTPTL.getNumProtocols() == Protocols.size()); in actOnObjCTypeArgsAndProtocolQualifiers() 1194 if (ObjCObjectTL.getNumProtocols() > 0) { in actOnObjCTypeArgsAndProtocolQualifiers() 1195 assert(ObjCObjectTL.getNumProtocols() == Protocols.size()); in actOnObjCTypeArgsAndProtocolQualifiers()
|
| H A D | TreeTransform.h | 6335 TL.getNumProtocols()), in TransformObjCTypeParamType() 6343 if (TL.getNumProtocols()) { in TransformObjCTypeParamType() 6345 for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i) in TransformObjCTypeParamType() 6456 llvm::makeArrayRef(TL.getTypePtr()->qual_begin(), TL.getNumProtocols()), in TransformObjCObjectType() 6470 for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i) in TransformObjCObjectType()
|
| H A D | SemaDeclObjC.cpp | 1122 ProtocolLocs.append(OPT->getNumProtocols(), SuperLoc); in ActOnTypedefedProtocols()
|