Home
last modified time | relevance | path

Searched refs:IndexOpts (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/Index/
DIndexingContext.h38 IndexingOptions IndexOpts; variable
43 IndexingContext(IndexingOptions IndexOpts, IndexDataConsumer &DataConsumer) in IndexingContext() argument
44 : IndexOpts(IndexOpts), DataConsumer(DataConsumer) {} in IndexingContext()
46 const IndexingOptions &getIndexOpts() const { return IndexOpts; } in getIndexOpts()
DIndexingContext.cpp21 return IndexOpts.IndexFunctionLocals; in shouldIndexFunctionLocalSymbols()
84 switch (IndexOpts.SystemSymbolFilter) { in importedModule()
261 switch (IndexOpts.SystemSymbolFilter) { in handleDeclOccurrence()
/external/llvm-project/clang/lib/Index/
DIndexingContext.h39 IndexingOptions IndexOpts; variable
44 IndexingContext(IndexingOptions IndexOpts, IndexDataConsumer &DataConsumer) in IndexingContext() argument
45 : IndexOpts(IndexOpts), DataConsumer(DataConsumer) {} in IndexingContext()
47 const IndexingOptions &getIndexOpts() const { return IndexOpts; } in getIndexOpts()
DIndexingContext.cpp37 return IndexOpts.IndexFunctionLocals; in shouldIndexFunctionLocalSymbols()
41 return IndexOpts.IndexImplicitInstantiation; in shouldIndexImplicitInstantiation()
45 return IndexOpts.IndexParametersInDeclarations; in shouldIndexParametersInDeclarations()
49 return IndexOpts.IndexTemplateParameters; in shouldIndexTemplateParameters()
128 switch (IndexOpts.SystemSymbolFilter) { in importedModule()
383 switch (IndexOpts.SystemSymbolFilter) { in handleDeclOccurrence()
DIndexDecl.cpp768 if (IndexOpts.ShouldTraverseDecl && !IndexOpts.ShouldTraverseDecl(D)) in indexTopLevelDecl()
/external/llvm-project/clang/tools/c-index-test/
Dcore_main.cpp222 IndexingOptions IndexOpts; in printSourceSymbols() local
223 IndexOpts.IndexFunctionLocals = indexLocals; in printSourceSymbols()
225 createIndexingAction(DataConsumer, IndexOpts); in printSourceSymbols()
238 indexModuleFile(Mod, *Reader, *DataConsumer, IndexOpts); in printSourceSymbols()
274 IndexingOptions IndexOpts; in printSourceSymbolsFromModule() local
275 indexASTUnit(*AU, DataConsumer, IndexOpts); in printSourceSymbolsFromModule()
/external/llvm-project/clang-tools-extra/clangd/index/
DIndexAction.cpp212 index::IndexingOptions IndexOpts; in createStaticIndexingAction() local
213 IndexOpts.SystemSymbolFilter = in createStaticIndexingAction()
227 IndexOpts, SymbolsCallback, RefsCallback, RelationsCallback, in createStaticIndexingAction()
DFileIndex.cpp60 index::IndexingOptions IndexOpts; in indexSymbols() local
62 IndexOpts.SystemSymbolFilter = in indexSymbols()
64 IndexOpts.IndexFunctionLocals = false; in indexSymbols()
72 IndexOpts.IndexMacrosInPreprocessor = true; in indexSymbols()
81 index::indexTopLevelDecls(AST, *PP, DeclsToIndex, Collector, IndexOpts); in indexSymbols()
DBackground.cpp284 SymbolCollector::Options IndexOpts; in index() local
287 IndexOpts.FileFilter = [&ShardVersionsSnapshot](const SourceManager &SM, in index()
304 IndexOpts.CollectMainFileRefs = CollectMainFileRefs; in index()
308 IndexOpts, [&](SymbolSlab S) { Index.Symbols = std::move(S); }, in index()
/external/clang/tools/c-index-test/
Dcore_main.cpp150 IndexingOptions IndexOpts; in printSourceSymbols() local
152 IndexAction = createIndexingAction(DataConsumer, IndexOpts, in printSourceSymbols()
/external/llvm-project/clang-tools-extra/clangd/
DXRefs.cpp817 index::IndexingOptions IndexOpts; in findRefs() local
818 IndexOpts.SystemSymbolFilter = in findRefs()
820 IndexOpts.IndexFunctionLocals = true; in findRefs()
821 IndexOpts.IndexParametersInDeclarations = true; in findRefs()
822 IndexOpts.IndexTemplateParameters = true; in findRefs()
824 AST.getLocalTopLevelDecls(), RefFinder, IndexOpts); in findRefs()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DSymbolCollectorTests.cpp228 index::IndexingOptions IndexOpts; in create() local
229 IndexOpts.SystemSymbolFilter = in create()
231 IndexOpts.IndexFunctionLocals = false; in create()
233 return std::make_unique<IndexAction>(Collector, std::move(IndexOpts), in create()