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

References

tools/clang/lib/AST/CXXInheritance.cpp
   44     Decls.insert(Path->Decls.front());
  421   for (Path.Decls = BaseRecord->lookup(Name);
  422        !Path.Decls.empty();
  423        Path.Decls = Path.Decls.slice(1)) {
  423        Path.Decls = Path.Decls.slice(1)) {
  424     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
  435   for (Path.Decls = BaseRecord->lookup(Name);
  436        !Path.Decls.empty();
  437        Path.Decls = Path.Decls.slice(1)) {
  437        Path.Decls = Path.Decls.slice(1)) {
  438     if (Path.Decls.front()->isInIdentifierNamespace(IDNS))
  480   for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
  480   for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
  481        Path.Decls = Path.Decls.slice(1)) {
  481        Path.Decls = Path.Decls.slice(1)) {
  482     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPReduction))
  495   for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
  495   for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
  496        Path.Decls = Path.Decls.slice(1)) {
  496        Path.Decls = Path.Decls.slice(1)) {
  497     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPMapper))
  511   for (Path.Decls = BaseRecord->lookup(Name);
  512        !Path.Decls.empty();
  513        Path.Decls = Path.Decls.slice(1)) {
  513        Path.Decls = Path.Decls.slice(1)) {
  515     if (isa<TypedefNameDecl>(Path.Decls.front()) ||
  516         Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
  546   for (const NamedDecl *ND : Paths.front().Decls) {
tools/clang/lib/Sema/SemaDecl.cpp
 7819     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
 7819     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
 7820          Path.Decls = Path.Decls.slice(1)) {
 7820          Path.Decls = Path.Decls.slice(1)) {
 7821       NamedDecl *D = Path.Decls.front();
tools/clang/lib/Sema/SemaDeclCXX.cpp
 8216     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
 8216     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
 8217          Path.Decls = Path.Decls.slice(1)) {
 8217          Path.Decls = Path.Decls.slice(1)) {
 8218       NamedDecl *D = Path.Decls.front();
tools/clang/lib/Sema/SemaLookup.cpp
  637     for (DeclContext::lookup_iterator DI = I->Decls.begin(),
  638          DE = I->Decls.end(); DI != DE; ++DI)
 2135   Path.Decls = BaseRecord->lookup(Name);
 2136   return !Path.Decls.empty();
 2347       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) {
 2347       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) {
 2349         DeclContext::lookup_iterator FirstD = FirstPath->Decls.begin();
 2350         DeclContext::lookup_iterator CurrentD = Path->Decls.begin();
 2368         while (FirstD != FirstPath->Decls.end() &&
 2369                CurrentD != Path->Decls.end()) {
 2378         if (FirstD == FirstPath->Decls.end() &&
 2379             CurrentD == Path->Decls.end())
 2394       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end()))
 2394       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end()))
 2406   for (auto *D : Paths.front().Decls) {
 2551     DeclContext::lookup_iterator Found = Paths->front().Decls.begin();
 2569       Decl *D = Path->Decls.front();
tools/lldb/source/Symbol/ClangASTContext.cpp
  183                 path.Decls = baseDtorDecl;
  190           for (path.Decls = base_record->lookup(name); !path.Decls.empty();
  190           for (path.Decls = base_record->lookup(name); !path.Decls.empty();
  191                path.Decls = path.Decls.slice(1)) {
  191                path.Decls = path.Decls.slice(1)) {
  193                     llvm::dyn_cast<clang::CXXMethodDecl>(path.Decls.front()))
  195                 path.Decls = method_decl;
 7231               for (clang::NamedDecl *path_decl : path->Decls) {