Home
last modified time | relevance | path

Searched refs:VisibleOutsideFile (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/unittests/
DSymbolCollectorTests.cpp92 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/
DSymbol.h125 VisibleOutsideFile = 1 << 3, enumerator
DSymbolCollector.cpp464 S.Flags |= Symbol::VisibleOutsideFile; in handleMacroOccurrence()
663 S.Flags |= Symbol::VisibleOutsideFile; in addDeclaration()
/external/llvm-project/clang-tools-extra/clangd/
DQuality.cpp294 if (!(IndexResult.Flags & Symbol::VisibleOutsideFile)) { in merge()