Home
last modified time | relevance | path

Searched refs:isHidden (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h78 bool isHidden() const { return IsHidden; } in isHidden() function
79 void setHidden(bool isHidden) { IsHidden = isHidden; } in setHidden() argument
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp129 static bool isHidden(const Record *R) { in isHidden() function
135 return isHidden(DI->getDef()); in isHidden()
150 if (!isHidden(&R)) in printChecker()
/freebsd/contrib/llvm-project/lld/MachO/
H A DOutputSection.h56 virtual bool isHidden() const { return false; } in isHidden() function
H A DSyntheticSections.h72 bool isHidden() const final { return true; } in isHidden() function
89 bool isHidden() const override { return true; } in isHidden() function
105 bool isHidden() const override { return true; } in isHidden() function
H A DOutputSegment.cpp56 count += (!osec->isHidden() ? 1 : 0); in numNonHiddenSections()
H A DMapFile.cpp199 if (osec->isHidden()) in writeMapFile()
H A DWriter.cpp251 if (osec->isHidden()) in writeTo()
972 if (!osec->isHidden()) in sortSegmentsAndSections()
H A DDriver.cpp450 bool isReexport, bool isHidden, bool isExplicit, in addLibrary() argument
455 /*isBundleLoader=*/false, isHidden))) { in addLibrary()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckerBase.td50 HiddenEnum isHidden = DontHide> {
56 bit Hidden = isHidden.Val;
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h93 bool isHidden() const { in isHidden() function
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1587 << " isWeak=" << WS.isWeak() << " isHidden=" << WS.isHidden() in writeOneObject()
1795 if (WS.isHidden()) in writeOneObject()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp49 if (isHidden()) { in print()
1790 if (Sym.isHidden()) in getSymbolFlags()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2132 LLVM_ATTRIBUTE_USED static bool isHidden(const CheckerRegistryData &Registry, in isHidden() function
2160 !isHidden(ErrorNode->getState() in PathSensitiveBugReport()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp4732 bool isHidden() const;
11094 Colour::Code colour = testCaseInfo.isHidden() in listTests()
13105 if (!test.isHidden())
13820 bool isHidden = false; in makeTestCase() local
13837 isHidden = true; in makeTestCase()
13855 if( isHidden ) { in makeTestCase()
13890 bool TestCaseInfo::isHidden() const { in isHidden() function in Catch::TestCaseInfo
13997 if ((!testSpec.hasFilters() && !testCase.isHidden()) || in filterTests()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c139934 int isHidden = 0;
139942 isHidden = 2; /* GENERATED ALWAYS AS ... VIRTUAL */
139944 isHidden = 3; /* GENERATED ALWAYS AS ... STORED */
139946 isHidden = 1; /* HIDDEN */
139957 assert( pColExpr==0 || pColExpr->op==TK_SPAN || isHidden>=2 );
139959 || isHidden>=2 );
139965 (isHidden>=2 || pColExpr==0) ? 0 : pColExpr->u.zToken,
139967 isHidden);