Home
last modified time | relevance | path

Searched refs:IsDisabled (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
DMacroInfo.h100 bool IsDisabled : 1; variable
258 bool isEnabled() const { return !IsDisabled; } in isEnabled()
261 assert(IsDisabled && "Cannot enable an already-enabled macro!"); in EnableMacro()
262 IsDisabled = false; in EnableMacro()
266 assert(!IsDisabled && "Cannot disable an already-disabled macro!"); in DisableMacro()
267 IsDisabled = true; in DisableMacro()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
DMacroInfo.cpp34 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
138 if (IsDisabled) Out << " disabled"; in dump()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerLoop.cpp88 bool IsDisabled() const { in IsDisabled() function in fuzzer::TraceLock
103 if (Lock.IsDisabled()) in MallocHook()
116 if (Lock.IsDisabled()) in FreeHook()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DTargetLoweringBase.cpp2127 bool IsDisabled = RecipType[0] == DisabledPrefix; in getOpEnabled() local
2128 if (IsDisabled) in getOpEnabled()
2132 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled in getOpEnabled()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
DClang.cpp233 bool IsDisabled = Val.startswith(DisabledPrefixIn); in ParseMRecip() local
235 if (IsDisabled) in ParseMRecip()
275 StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut; in ParseMRecip()