Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h103 bool IsDisabled : 1; variable
281 bool isEnabled() const { return !IsDisabled; } in isEnabled()
284 assert(IsDisabled && "Cannot enable an already-enabled macro!"); in EnableMacro()
285 IsDisabled = false; in EnableMacro()
289 assert(!IsDisabled && "Cannot disable an already-disabled macro!"); in DisableMacro()
290 IsDisabled = true; in DisableMacro()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp50 HasCommaPasting(false), IsDisabled(false), IsUsed(false), in MacroInfo()
153 if (IsDisabled) Out << " disabled"; in dump()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp88 bool IsDisabled() const { in IsDisabled() function in fuzzer::TraceLock
103 if (Lock.IsDisabled()) in MallocHook()
116 if (Lock.IsDisabled()) in FreeHook()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp2218 bool IsDisabled = RecipType[0] == DisabledPrefix; in getOpEnabled() local
2219 if (IsDisabled) in getOpEnabled()
2223 return IsDisabled ? TargetLoweringBase::ReciprocalEstimate::Disabled in getOpEnabled()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp3378 bool IsDisabled = Val.starts_with(DisabledPrefixIn); in parseMRecipOption() local
3380 if (IsDisabled) in parseMRecipOption()
3427 StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut; in parseMRecipOption()