/external/clang/lib/Index/ |
D | IndexingContext.h | 38 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()
|
D | IndexingContext.cpp | 21 return IndexOpts.IndexFunctionLocals; in shouldIndexFunctionLocalSymbols() 84 switch (IndexOpts.SystemSymbolFilter) { in importedModule() 261 switch (IndexOpts.SystemSymbolFilter) { in handleDeclOccurrence()
|
/external/llvm-project/clang/lib/Index/ |
D | IndexingContext.h | 39 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()
|
D | IndexingContext.cpp | 37 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()
|
D | IndexDecl.cpp | 768 if (IndexOpts.ShouldTraverseDecl && !IndexOpts.ShouldTraverseDecl(D)) in indexTopLevelDecl()
|
/external/llvm-project/clang/tools/c-index-test/ |
D | core_main.cpp | 222 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/ |
D | IndexAction.cpp | 212 index::IndexingOptions IndexOpts; in createStaticIndexingAction() local 213 IndexOpts.SystemSymbolFilter = in createStaticIndexingAction() 227 IndexOpts, SymbolsCallback, RefsCallback, RelationsCallback, in createStaticIndexingAction()
|
D | FileIndex.cpp | 60 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()
|
D | Background.cpp | 284 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/ |
D | core_main.cpp | 150 IndexingOptions IndexOpts; in printSourceSymbols() local 152 IndexAction = createIndexingAction(DataConsumer, IndexOpts, in printSourceSymbols()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | XRefs.cpp | 817 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/ |
D | SymbolCollectorTests.cpp | 228 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()
|