Searched refs:VisibleOutsideFile (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | SymbolCollectorTests.cpp | 92 MATCHER(VisibleOutsideFile, "") { 93 return static_cast<bool>(arg.Flags & Symbol::VisibleOutsideFile); 390 AllOf(QName("Foo"), VisibleOutsideFile()), in TEST_F() 391 AllOf(QName("bar"), VisibleOutsideFile()), in TEST_F() 392 AllOf(QName("a"), Not(VisibleOutsideFile())), in TEST_F() 393 AllOf(QName("B"), Not(VisibleOutsideFile())), in TEST_F() 394 AllOf(QName("c"), Not(VisibleOutsideFile())), in TEST_F() 396 AllOf(QName("ForwardDecl"), Not(VisibleOutsideFile())))); in TEST_F() 1698 DeclRange(Header.range("mac")), VisibleOutsideFile()), in TEST_F() 1700 DeclRange(Header.range("used")), VisibleOutsideFile()), in TEST_F() [all …]
|
/external/llvm-project/clang-tools-extra/clangd/index/ |
D | Symbol.h | 125 VisibleOutsideFile = 1 << 3, enumerator
|
D | SymbolCollector.cpp | 464 S.Flags |= Symbol::VisibleOutsideFile; in handleMacroOccurrence() 663 S.Flags |= Symbol::VisibleOutsideFile; in addDeclaration()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | Quality.cpp | 294 if (!(IndexResult.Flags & Symbol::VisibleOutsideFile)) { in merge()
|