Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DMacroInfo.h101 bool IsDisabled : 1; variable
259 bool isEnabled() const { return !IsDisabled; } in isEnabled()
262 assert(IsDisabled && "Cannot enable an already-enabled macro!"); in EnableMacro()
263 IsDisabled = false; in EnableMacro()
267 assert(!IsDisabled && "Cannot disable an already-disabled macro!"); in DisableMacro()
268 IsDisabled = true; in DisableMacro()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DMacroInfo.cpp35 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
139 if (IsDisabled) Out << " disabled"; in dump()
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp91 bool IsDisabled() const { in IsDisabled() function in fuzzer::TraceLock
106 if (Lock.IsDisabled()) in MallocHook()
119 if (Lock.IsDisabled()) in FreeHook()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1786 bool IsDisabled = RecipType[0] == DisabledPrefix; in getOpEnabled() local
1787 if (IsDisabled) in getOpEnabled()
1791 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled in getOpEnabled()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DClang.cpp233 bool IsDisabled = Val.startswith(DisabledPrefixIn); in ParseMRecip() local
235 if (IsDisabled) in ParseMRecip()
275 StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut; in ParseMRecip()