Home
last modified time | relevance | path

Searched refs:isHidden (Results 1 – 17 of 17) 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.cpp127 static bool isHidden(const Record *R) { in isHidden() function
133 return isHidden(DI->getDef()); in isHidden()
148 if (!isHidden(&R)) in printChecker()
/freebsd/contrib/llvm-project/lld/MachO/
H A DOutputSection.h57 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.cpp62 count += (!osec->isHidden() ? 1 : 0); in numNonHiddenSections()
H A DMapFile.cpp197 if (osec->isHidden()) in writeMapFile()
H A DWriter.cpp250 if (osec->isHidden()) in writeTo()
1001 if (!osec->isHidden()) in sortSegmentsAndSections()
H A DDriver.cpp446 bool isReexport, bool isHidden, bool isExplicit, in addLibrary() argument
451 /*isBundleLoader=*/false, isHidden))) { in addLibrary()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVAsmPrinter.cpp83 bool isHidden() { in isHidden() function in __anonbc5f3f620111::SPIRVAsmPrinter
157 if (isVerbose() && !isHidden()) { in emitFunctionHeader()
174 if (!isHidden()) in emitFunctionBodyEnd()
180 if (isHidden()) in emitOpLabel()
/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.h94 bool isHidden() const { in isHidden() function
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIRAttrs.td451 bool isHidden() const { return getValue() == VisibilityKind::Hidden; };
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1564 << " isWeak=" << WS.isWeak() << " isHidden=" << WS.isHidden() in writeOneObject()
1784 if (WS.isHidden()) in writeOneObject()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp46 if (isHidden()) { in print()
1811 if (Sym.isHidden()) in getSymbolFlags()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2149 LLVM_ATTRIBUTE_USED static bool isHidden(const CheckerRegistryData &Registry, in isHidden() function
2178 !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.c145791 int isHidden = 0; local
145799 isHidden = 2; /* GENERATED ALWAYS AS ... VIRTUAL */
145801 isHidden = 3; /* GENERATED ALWAYS AS ... STORED */
145803 isHidden = 1; /* HIDDEN */
145814 assert( pColExpr==0 || pColExpr->op==TK_SPAN || isHidden>=2 );
145816 || isHidden>=2 );
145822 (isHidden>=2 || pColExpr==0) ? 0 : pColExpr->u.zToken,
145824 isHidden);