Home | History | Annotate | Download | only in AST

Lines Matching refs:Decls

29   llvm::SetVector<NamedDecl *, SmallVector<NamedDecl *, 8> > Decls;
31 Decls.insert(Path->Decls.front());
33 NumDeclsFound = Decls.size();
35 std::copy(Decls.begin(), Decls.end(), DeclsFound.get());
381 for (Path.Decls = BaseRecord->lookup(Name);
382 !Path.Decls.empty();
383 Path.Decls = Path.Decls.slice(1)) {
384 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
398 for (Path.Decls = BaseRecord->lookup(Name);
399 !Path.Decls.empty();
400 Path.Decls = Path.Decls.slice(1)) {
401 if (Path.Decls.front()->isInIdentifierNamespace(IDNS))
415 for (Path.Decls = BaseRecord->lookup(Name);
416 !Path.Decls.empty();
417 Path.Decls = Path.Decls.slice(1)) {
419 if (isa<TypedefNameDecl>(Path.Decls.front()) ||
420 Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))