reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/TypeLoc.h
  769     return getNumProtocols()  ?
  779     return 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) ;
tools/clang/lib/AST/TypeLoc.cpp
  446   if (!getNumProtocols()) return;
  450   for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
tools/clang/lib/Sema/SemaType.cpp
 1197     if (OTPTL.getNumProtocols() > 0) {
 1198       assert(OTPTL.getNumProtocols() == Protocols.size());
tools/clang/lib/Sema/TreeTransform.h
 6474                                     TL.getNumProtocols()),
 6482   if (TL.getNumProtocols()) {
 6484     for (unsigned i = 0, n = TL.getNumProtocols(); i != n; ++i)
tools/clang/lib/Serialization/ASTReader.cpp
 7205   if (TL.getNumProtocols()) {
 7209   for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
tools/clang/lib/Serialization/ASTWriter.cpp
  730   if (TL.getNumProtocols()) {
  734   for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
tools/clang/tools/libclang/CIndex.cpp
 1590   for (unsigned I = 0, N = TL.getNumProtocols(); I != N; ++I) {