HomeSort by: relevance | last modified time | path
    Searched refs:getNumProtocols (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TypeLoc.h 769 return getNumProtocols() ?
779 return getNumProtocols() ?
788 unsigned getNumProtocols() const {
789 return this->getTypePtr()->getNumProtocols();
793 assert(i < getNumProtocols() && "Index is out of bounds!");
798 assert(i < getNumProtocols() && "Index is out of bounds!");
803 assert(i < getNumProtocols() && "Index is out of bounds!");
808 return llvm::makeArrayRef(getProtocolLocArray(), getNumProtocols());
814 if (!this->getNumProtocols()) return 0;
817 return (this->getNumProtocols() + 2) * sizeof(SourceLocation)
    [all...]
CanonicalType.h 594 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
613 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(unsigned, getNumProtocols)
Type.h 5706 assert(getNumProtocols() == protocols.size() &&
5719 qual_iterator qual_end() const { return qual_begin() + getNumProtocols(); }
5721 bool qual_empty() const { return getNumProtocols() == 0; }
5725 unsigned getNumProtocols() const {
5731 assert(I < getNumProtocols() && "Out-of-range protocol access");
5737 return ArrayRef<ObjCProtocolDecl *>(qual_begin(), getNumProtocols());
6049 getNumProtocols,
6207 unsigned getNumProtocols() const {
6208 return getObjectType()->getNumProtocols();
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypeLoc.cpp 463 if (!getNumProtocols()) return;
467 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
483 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
ASTStructuralEquivalence.cpp 1161 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
1163 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
1177 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
1179 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
Type.cpp 1213 T->getNumProtocols()),
1394 objcObjectType->qual_begin(), objcObjectType->getNumProtocols());
1410 objcObjectType->qual_begin(), objcObjectType->getNumProtocols());
1693 if (T->getNumProtocols() && T->getInterface())
3720 llvm::makeArrayRef(qual_begin(), getNumProtocols()),
3737 llvm::makeArrayRef(qual_begin(), getNumProtocols()));
ASTDiagnostic.cpp 199 Ty->getNumProtocols()),
ASTContext.cpp 9290 if (LHS->getNumProtocols() > 0) {
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexTypeSourceInfo.cpp 130 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 1181 return OT->getNumProtocols();
CIndex.cpp 1609 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
1627 for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 339 if (TL.getNumProtocols()) {
343 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
482 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
ASTReader.cpp 6751 if (TL.getNumProtocols()) {
6755 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
6767 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 1202 if (OTPTL.getNumProtocols() > 0) {
1203 assert(OTPTL.getNumProtocols() == Protocols.size());
1229 if (ObjCObjectTL.getNumProtocols() > 0) {
1230 assert(ObjCObjectTL.getNumProtocols() == Protocols.size());
TreeTransform.h 6996 TL.getNumProtocols()),
7004 if (TL.getNumProtocols()) {
7006 for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i)
7117 llvm::makeArrayRef(TL.getTypePtr()->qual_begin(), TL.getNumProtocols()),
7131 for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i)
SemaDeclObjC.cpp 1129 ProtocolLocs.append(OPT->getNumProtocols(), SuperLoc);

Completed in 115 milliseconds