HomeSort by relevance Sort by last modified time
    Searched refs:DeclsFound (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/AST/
CXXInheritance.h 158 NamedDecl **DeclsFound;
181 DeclsFound(nullptr), NumDeclsFound(0) { }
183 ~CXXBasePaths() { delete [] DeclsFound; }
  /external/clang/lib/AST/
CXXInheritance.cpp 26 assert(NumDeclsFound == 0 && !DeclsFound &&
34 DeclsFound = new NamedDecl * [NumDeclsFound];
35 std::copy(Decls.begin(), Decls.end(), DeclsFound);
42 return decl_range(decl_iterator(DeclsFound),
43 decl_iterator(DeclsFound + NumDeclsFound));

Completed in 147 milliseconds