Home
last modified time | relevance | path

Searched defs:Default (Results 1 – 25 of 102) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDiagnosticOptions.h91 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits; argument
92 #define ENUM_DIAGOPT(Name, Type, Bits, Default) argument
98 #define DIAGOPT(Name, Bits, Default) argument
99 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits; argument
127 #define DIAGOPT(Name, Bits, Default) argument
128 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \ argument
134 #define DIAGOPT(Name, Bits, Default) Name = Default; in DiagnosticOptions() argument
135 #define ENUM_DIAGOPT(Name, Type, Bits, Default) set##Name(Default); in DiagnosticOptions() argument
DCodeGenOptions.h37 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits; argument
38 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) argument
42 #define CODEGENOPT(Name, Bits, Default) argument
43 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits; argument
405 #define CODEGENOPT(Name, Bits, Default) argument
406 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \ argument
DLangOptions.h39 #define LANGOPT(Name, Bits, Default, Description) unsigned Name : Bits; argument
40 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) argument
46 #define LANGOPT(Name, Bits, Default, Description) argument
47 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ argument
256 Default = Mixed, enumerator
385 #define LANGOPT(Name, Bits, Default, Description) argument
386 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ argument
DProfileList.h35 const bool Default; variable
DAddressSpaces.h28 Default = 0, enumerator
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DLangOptions.cpp20 #define LANGOPT(Name, Bits, Default, Description) Name = Default; in LangOptions() argument
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default); in LangOptions() argument
26 #define LANGOPT(Name, Bits, Default, Description) in resetNonModularOptions() argument
27 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default; in resetNonModularOptions() argument
28 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ in resetNonModularOptions() argument
DCodeGenOptions.cpp15 #define CODEGENOPT(Name, Bits, Default) Name = Default; in CodeGenOptions() argument
16 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default); in CodeGenOptions() argument
/freebsd-12-stable/contrib/llvm-project/lld/Common/
DArgs.cpp30 int64_t Default, unsigned base) { in getInteger()
48 int64_t Default) { in getInteger()
53 int64_t Default) { in getHex()
65 StringRef key, uint64_t Default) { in getZOptionValue()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
DOptionUtils.cpp20 IntTy Default, DiagnosticsEngine *Diags, in getLastArgIntValueImpl()
36 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue()
42 uint64_t Default, DiagnosticsEngine *Diags, in getLastArgUInt64Value()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DTypeSwitch.h122 LLVM_NODISCARD ResultT Default(CallableT &&defaultFn) { in Default() function
128 LLVM_NODISCARD ResultT Default(ResultT defaultResult) { in Default() function
171 template <typename CallableT> void Default(CallableT &&defaultFn) { in Default() function
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFFormValue.h192 const char *Default) { in toString()
214 uint64_t Default) { in toUnsigned()
236 uint64_t Default) { in toReference()
257 inline int64_t toSigned(const Optional<DWARFFormValue> &V, int64_t Default) { in toSigned()
285 inline uint64_t toAddress(const Optional<DWARFFormValue> &V, uint64_t Default) { in toAddress()
307 uint64_t Default) { in toSectionOffset()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerExtFunctionsWindows.cpp34 #define EXTERNAL_FUNC(Name, Default) \ argument
42 #define EXTERNAL_FUNC(Name, Default) \ argument
DFuzzerDriver.cpp51 int Default; member
59 #define FUZZER_FLAG_INT(Name, Default, Description) int Name; argument
60 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) unsigned int Name; argument
72 #define FUZZER_FLAG_INT(Name, Default, Description) \ argument
74 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) \ argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DCodeGen.h37 enum Level { Default=0, Small=1, Large=2 }; enumerator
55 Default = 2, // -O2, -Os enumerator
DFormatProviders.h93 size_t Default) { in consumeNumHexDigits()
DThreading.h240 Default = 1, enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsRegisterInfo.h31 Default = 0, enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/
DTargetOptions.h29 Default, // Target-specific (either soft or hard depending on triple, etc). enumerator
78 Default, // Default means not specified enumerator
98 Default, ///< No specific tuning requested. enumerator
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
DFrontendActions.cpp565 #define LANGOPT(Name, Bits, Default, Description) \ in ReadLanguageOptions() argument
567 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ in ReadLanguageOptions() argument
570 #define VALUE_LANGOPT(Name, Bits, Default, Description) \ in ReadLanguageOptions() argument
572 #define BENIGN_LANGOPT(Name, Bits, Default, Description) in ReadLanguageOptions() argument
573 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) in ReadLanguageOptions() argument
607 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name); in ReadDiagnosticOptions() argument
608 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \ in ReadDiagnosticOptions() argument
610 #define VALUE_DIAGOPT(Name, Bits, Default) \ in ReadDiagnosticOptions() argument
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_report_decorator.h28 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; } in Default() function
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MCAsmInfo.cpp22 Default = -1, enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DThreading.cpp99 llvm::get_threadpool_strategy(StringRef Num, ThreadPoolStrategy Default) { in get_threadpool_strategy()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
DTypeCategoryMap.h40 static const Position Default = 1; variable
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DMachineBasicBlock.h54 Default = 0, // Regular section (these sections are distinguished by the enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
DMCAsmInfo.cpp24 enum DefaultOnOff { Default, Enable, Disable }; enumerator

12345