HomeSort by: relevance | last modified time | path
    Searched defs:Default (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
ProfileList.h 35 const bool Default;
43 bool getDefault() const { return Default; }
AddressSpaces.h 26 // The default value 0 is the value used in QualType for the situation
28 Default = 0,
31 // In OpenCL each l-value must have certain non-default address space, each
32 // r-value must have no address space (i.e. the default address space). The
33 // pointee of a pointer must have non-default address space.
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsRegisterInfo.h 30 /// The default register class for integer values.
31 Default = 0,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTStructuralEquivalence.h 37 Default,
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
TypeSwitch.h 28 ~TypeSwitchBase() = default;
98 /// .Default([](Operation *op) { ... });
106 TypeSwitch(TypeSwitch &&other) = default;
120 /// As a default, invoke the given callable within the root value.
122 LLVM_NODISCARD ResultT Default(CallableT &&defaultFn) {
127 /// As a default, return the given value.
128 LLVM_NODISCARD ResultT Default(ResultT defaultResult) {
154 TypeSwitch(TypeSwitch &&other) = default;
170 /// As a default, invoke the given callable within the root value.
171 template <typename CallableT> void Default(CallableT &&defaultFn)
    [all...]
StringSwitch.h 39 /// .Default(UnknownColor);
64 ~StringSwitch() = default;
181 R Default(T Value) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 88 enum DefaultOnOff { Default, Enable, Disable };
93 cl::values(clEnumVal(Default, "At top of block or after label"),
95 cl::init(Default));
99 cl::values(clEnumValN(AccelTableKind::Default, "Default",
100 "Default for platform"),
104 cl::init(AccelTableKind::Default));
109 cl::values(clEnumVal(Default, "Default for platform"),
112 cl::init(Default));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmInfo.cpp 24 enum DefaultOnOff { Default, Enable, Disable };
29 cl::values(clEnumVal(Default, "Default for platform"),
31 cl::init(Default));
62 if (DwarfExtendedLoc != Default)
70 // - Solaris always enables the integrated assembler by default
72 // - Windows always enables the integrated assembler by default
74 // - MachO targets always enables the integrated assembler by default
83 MCAsmInfo::~MCAsmInfo() = default;
MCSchedule.cpp 9 // This file defines the default scheduling model.
24 const MCSchedModel MCSchedModel::Default = {DefaultIssueWidth,
149 // that it can execute at the maximum default issue width.
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCAsmInfo.cpp 22 Default = -1,
28 "aarch64-neon-syntax", cl::init(Default),
36 AssemblerDialect = AsmWriterVariant == Default ? Apple : AsmWriterVariant;
56 // is an indirect pc-relative reference. The default implementation
74 AssemblerDialect = AsmWriterVariant == Default ? Generic : AsmWriterVariant;
  /src/external/apache2/llvm/dist/llvm/tools/yaml2obj/
yaml2obj.cpp 44 cl::desc("Read specified document from input (default = 1)"),
80 StringRef Default;
81 std::tie(Macro, Default) = MacroExpr.split('=');
84 // Otherwise we use a default macro value if present.
89 else if (!Default.empty() || MacroExpr.endswith("="))
90 Value = Default;
  /src/external/gpl3/binutils/dist/gprofng/src/
Map2D.h 31 Default,
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Map2D.h 31 Default,
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_report_decorator.h 29 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; }
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_report_decorator.h 28 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; }
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_report_decorator.h 28 const char *Default() const { return ansi_ ? "\033[1m\033[0m" : ""; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 36 MachinePassRegistryListener() = default;
37 virtual ~MachinePassRegistryListener() = default;
76 PassCtorTy Default; // Default function pass creator.
87 PassCtorTy getDefault() { return Default; }
88 void setDefault(PassCtorTy C) { Default = C; }
89 /// setDefault - Set the default constructor by name.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Threading.h 67 /// (or None for default)
82 /// (or None for default)
150 // The default value (0) means all available threads should be used,
180 /// When Num is above the max number of threads specified by the \p Default
182 /// "0" or an empty string will return the \p Default strategy.
185 get_threadpool_strategy(StringRef Num, ThreadPoolStrategy Default = {});
203 /// If \p Num is invalid, returns a default strategy where one thread per
213 /// Returns a default thread strategy where all available hardware resources
269 Default = 1,
275 /// If the priority is default tries to restore current threads priority t
    [all...]
CodeGen.h 37 enum Level { Default=0, Small=1, Large=2 };
55 Default = 2, // -O2, -Os
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Mangler.cpp 27 Default, ///< Emit default string before each symbol.
71 return getNameWithPrefixImpl(OS, GVName, DL, Default);
78 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix);
87 default:
116 ManglerPrefixTy PrefixTy = Default;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Target.cpp 123 const PfmCountersInfo PfmCountersInfo::Default = {nullptr, nullptr, nullptr,
137 // Use the default.
139 Found = CpuPfmCounters.begin(); // The target specifies a default.
141 return PfmCountersInfo::Default; // No default for the target.
152 // Default implementation.
Target.h 56 static const PfmCountersInfo Default;
84 // default calling convention.
141 // By default, we're happy with whatever randomizer will give us.
164 // Returns the default (unspecialized) ExegesisTarget.
171 // Returns the Pfm counters for the given CPU (or the default if no pfm
177 // By default no state is preserved.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
CGPassBuilderOption.h 25 enum class RegAllocType { Default, Basic, Fast, Greedy, PBQP };
51 RegAllocType RegAlloc = RegAllocType::Default;
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 64 /// The default compression level with a reasonable compromise between compression and speed
66 Default = -1,
  /src/sys/arch/epoc32/stand/e32boot/exe/
e32boot.cpp 235 TPtrC Default = _L("C:\\netbsd");
246 console->Printf(Default);
250 Default.Length() +
269 default:
295 TRAP(err, netbsd = NetBSD::New(Default, *args));
309 base += (_L("[").Length() + Default.Length() +
383 memory->address = 0xc0000000; /* default is here */

Completed in 31 milliseconds

1 2 3