Home | History | Annotate | Download | only in AST

Lines Matching full: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);
400 for (Path.Decls = BaseRecord->lookup(N);
401 !Path.Decls.empty();
402 Path.Decls = Path.Decls.slice(1)) {
403 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
418 for (Path.Decls = BaseRecord->lookup(N);
419 !Path.Decls.empty();
420 Path.Decls = Path.Decls.slice(1)) {
421 if (Path.Decls.front()->isInIdentifierNamespace(IDNS))
436 for (Path.Decls = BaseRecord->lookup(N);
437 !Path.Decls.empty();
438 Path.Decls = Path.Decls.slice(1)) {
440 if (isa<TypedefNameDecl>(Path.Decls.front()) ||
441 Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))