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

References

tools/clang/include/clang/AST/DeclObjC.h
  673   iterator end() { return begin() + size(); }
  686     return begin() + size();
  690     assert(size() > 0 && "empty Objective-C type parameter list");
  695     assert(size() > 0 && "empty Objective-C type parameter list");
tools/clang/lib/AST/DeclObjC.cpp
 1446   typeArgs.reserve(size());
tools/clang/lib/AST/Type.cpp
 1597   assert(typeArgs.size() == typeParams->size());
tools/clang/lib/Sema/SemaDeclObjC.cpp
  832   if (prevTypeParams->size() != newTypeParams->size()) {
  832   if (prevTypeParams->size() != newTypeParams->size()) {
  834     if (newTypeParams->size() > prevTypeParams->size()) {
  834     if (newTypeParams->size() > prevTypeParams->size()) {
  835       diagLoc = newTypeParams->begin()[prevTypeParams->size()]->getLocation();
  842       << (newTypeParams->size() > prevTypeParams->size())
  842       << (newTypeParams->size() > prevTypeParams->size())
  843       << prevTypeParams->size()
  844       << newTypeParams->size();
  850   for (unsigned i = 0, n = prevTypeParams->size(); i != n; ++i) {
 1437             if (typeParams->size() == numProtocolsResolved) {
tools/clang/lib/Sema/SemaType.cpp
  876   unsigned numTypeParams = typeParams->size();
 1021       << (typeArgs.size() < typeParams->size())
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  162       Record.push_back(typeParams->size());