Searched refs:getNumProtocols (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DTypeLoc.h797 unsigned getNumProtocols() const { function in class:clang::ObjCObjectTypeLoc
798 return this->getTypePtr()->getNumProtocols();
802 assert(i < getNumProtocols() && "Index is out of bounds!");
806 assert(i < getNumProtocols() && "Index is out of bounds!");
811 assert(i < getNumProtocols() && "Index is out of bounds!");
835 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
840 return this->getNumProtocols() * sizeof(SourceLocation);
H A DCanonicalType.h645 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
663 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
H A DType.h4266 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); }
4268 bool qual_empty() const { return getNumProtocols() == 0; }
4270 /// getNumProtocols - Return the number of qualifying protocols in this
4272 unsigned getNumProtocols() const { return ObjCObjectTypeBits.NumProtocols; } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCObjectType
4276 assert(I < getNumProtocols() && "Out-of-range protocol access");
4359 getNumProtocols, enumerator in enum:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCInterfaceType::__anon2802
4475 /// getNumProtocols - Return the number of qualifying protocols on
4477 unsigned getNumProtocols() const { function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCObjectPointerType
4478 return getObjectType()->getNumProtocols();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp486 assert(getNumProtocols() == NumProtocols &&
498 if (T->getNumProtocols() && T->getInterface())
2023 Profile(ID, getBaseType(), qual_begin(), getNumProtocols());
H A DASTImporter.cpp794 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
796 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
H A DASTContext.cpp6623 unsigned LHSNumProtocols = LHS->getNumProtocols();
6634 unsigned RHSNumProtocols = RHS->getNumProtocols();
6696 if (LHS->getNumProtocols() == 0)
6701 if (RHS->getNumProtocols() == 0) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp924 if (ObjT->getNumProtocols())
3369 assert(TL.getNumProtocols() > 0);
3370 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
3376 assert(TL.getNumProtocols() == 0);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp392 Record.push_back(T->getNumProtocols());
616 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
H A DASTReader.cpp5131 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)

Completed in 221 milliseconds