| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewText.cpp | 90 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 D | SourceCoverageViewHTML.cpp | 473 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 D | SourceCoverageView.cpp | 120 if (!getOptions().ShowRegionMarkers) in shouldRenderRegionMarkers() 219 if (getOptions().ShowLineNumbers) in print() 222 if (getOptions().ShowLineStats) in print() 228 getOptions().Colors) in print()
|
| H A D | SourceCoverageView.h | 249 const CoverageViewOptions &getOptions() const { return Options; } in getOptions() function
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeEnum.cpp | 259 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 D | NativeTypePointer.cpp | 135 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 D | NativeTypeFunctionSig.cpp | 177 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor() 187 return (MemberFunc.getOptions() & in isConstructorVirtualBase() 194 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
|
| H A D | TpiHashing.cpp | 30 ClassOptions Opts = Rec.getOptions(); in getHashForUdt() 59 ClassOptions Opts = Deserialized.getOptions(); in getTagRecordHashForUdt()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeDumpVisitor.cpp | 248 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 D | TypeRecordHelpers.cpp | 25 return Record.getOptions(); in getUdtOptions()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | JITTargetMachineBuilder.h | 106 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 D | Disassembler.h | 119 uint64_t getOptions() const { return Options; } in getOptions() function
|
| H A D | Disassembler.cpp | 278 if (DC->getOptions() & LLVMDisassembler_Option_PrintLatency) in LLVMDisasmInstruction()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 165 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 D | KernelDriver | 932 proc getOptions {} { procedure 995 set cmdline [getOptions];
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.cpp | 743 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 D | SanitizerCoverage.cpp | 134 SanitizerCoverageOptions getOptions(int LegacyCoverageLevel) { in getOptions() function 159 SanitizerCoverageOptions CLOpts = getOptions(ClCoverageLevel); in OverrideFromCL()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 202 PointerOptions Opts = Record.getOptions(); in formatPointerAttrs()
|