Home
last modified time | relevance | path

Searched refs:getOptions (Results 1 – 18 of 18) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp90 unsigned Length = getDividerWidth(getOptions()); in renderViewDivider()
121 if (getOptions().Debug && Highlight) in renderLine()
139 if (getOptions().Debug) { in renderLine()
177 OS.indent(getCombinedColumnWidth(getOptions())); in renderRegionMarkers()
199 if (getOptions().Debug) in renderRegionMarkers()
219 if (getOptions().Debug) in renderExpansionView()
232 getOptions().colored_ostream(OS, raw_ostream::RED) in renderInstantiationView()
240 if (getOptions().hasProjectTitle()) in renderTitle()
242 << getOptions().ProjectTitle << "\n"; in renderTitle()
246 if (getOptions().hasCreatedTime()) in renderTitle()
[all …]
H A DSourceCoverageViewHTML.cpp473 OS << BeginSourceNameDiv << tag("pre", escape(getSourceName(), getOptions())) in renderSourceName()
526 Snippets[I] = escape(Snippets[I], getOptions()); in renderLine()
535 if (getOptions().Debug) in renderLine()
568 if (getOptions().Debug) { in renderLine()
596 if (getOptions().Debug) in renderLine()
663 getOptions())) in renderInstantiationView()
672 if (getOptions().hasProjectTitle()) in renderTitle()
673 OS << tag(ProjectTitleTag, escape(getOptions().ProjectTitle, getOptions())); in renderTitle()
674 OS << tag(ReportTitleTag, escape(Title, getOptions())); in renderTitle()
675 if (getOptions().hasCreatedTime()) in renderTitle()
[all …]
H A DSourceCoverageView.cpp120 if (!getOptions().ShowRegionMarkers) in shouldRenderRegionMarkers()
219 if (getOptions().ShowLineNumbers) in print()
222 if (getOptions().ShowLineStats) in print()
228 getOptions().Colors) in print()
H A DSourceCoverageView.h249 const CoverageViewOptions &getOptions() const { return Options; } in getOptions() function
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp259 return bool(Record->getOptions() & in hasConstructor()
267 return bool(Record->getOptions() & in hasAssignmentOperator()
275 return bool(Record->getOptions() & in hasNestedTypes()
283 return bool(Record->getOptions() & codeview::ClassOptions::Intrinsic); in isIntrinsic()
290 return bool(Record->getOptions() & in hasCastOperator()
316 return bool(Record->getOptions() & codeview::ClassOptions::Nested); in isNested()
323 return bool(Record->getOptions() & in hasOverloadedOperator()
331 return bool(Record->getOptions() & codeview::ClassOptions::Packed); in isPacked()
338 return bool(Record->getOptions() & codeview::ClassOptions::Scoped); in isScoped()
H A DNativeTypePointer.cpp135 return (Record->getOptions() & PointerOptions::Const) != PointerOptions::None; in isConstType()
141 return (Record->getOptions() & PointerOptions::Restrict) != in isRestrictedType()
148 return (Record->getOptions() & PointerOptions::Volatile) != in isVolatileType()
155 return (Record->getOptions() & PointerOptions::Unaligned) != in isUnalignedType()
H A DNativeTypeFunctionSig.cpp177 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor()
187 return (MemberFunc.getOptions() & in isConstructorVirtualBase()
194 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
H A DTpiHashing.cpp30 ClassOptions Opts = Rec.getOptions(); in getHashForUdt()
59 ClassOptions Opts = Deserialized.getOptions(); in getTagRecordHashForUdt()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp248 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitKnownRecord()
262 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitKnownRecord()
274 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitKnownRecord()
276 W->printFlags("Properties", uint16_t(Enum.getOptions()), in visitKnownRecord()
315 W->printFlags("FunctionOptions", uint8_t(Proc.getOptions()), in visitKnownRecord()
328 W->printFlags("FunctionOptions", uint8_t(MF.getOptions()), in visitKnownRecord()
340 printMemberAttributes(M.getAccess(), M.getMethodKind(), M.getOptions()); in visitKnownRecord()
476 printMemberAttributes(Method.getAccess(), K, Method.getOptions()); in visitKnownMember()
H A DTypeRecordHelpers.cpp25 return Record.getOptions(); in getUdtOptions()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h106 TargetOptions &getOptions() { return Options; } in getOptions() function
109 const TargetOptions &getOptions() const { return Options; } in getOptions() function
/freebsd-12.1/contrib/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h119 uint64_t getOptions() const { return Options; } in getOptions() function
H A DDisassembler.cpp278 if (DC->getOptions() & LLVMDisassembler_Option_PrintLatency) in LLVMDisasmInstruction()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h165 FunctionOptions getOptions() const { return Options; } in getOptions() function
196 FunctionOptions getOptions() const { return Options; } in getOptions() function
316 PointerOptions getOptions() const { in getOptions() function
458 ClassOptions getOptions() const { return Options; } in getOptions() function
741 MethodOptions getOptions() const { return Attrs.getFlags(); } in getOptions() function
/freebsd-12.1/tools/tools/kdrv/
H A DKernelDriver932 proc getOptions {} { procedure
995 set cmdline [getOptions];
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp743 if ((pointer.getOptions() & PointerOptions::Const) != PointerOptions::None) in CreatePointerType()
746 if ((pointer.getOptions() & PointerOptions::Volatile) != PointerOptions::None) in CreatePointerType()
749 if ((pointer.getOptions() & PointerOptions::Restrict) != PointerOptions::None) in CreatePointerType()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp134 SanitizerCoverageOptions getOptions(int LegacyCoverageLevel) { in getOptions() function
159 SanitizerCoverageOptions CLOpts = getOptions(ClCoverageLevel); in OverrideFromCL()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp202 PointerOptions Opts = Record.getOptions(); in formatPointerAttrs()