Home
last modified time | relevance | path

Searched refs:KeyPath (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptParser.td119 code KeyPath = ?;
181 code KeyPath = !strconcat(key_path_prefix, key_path_base);
195 code KeyPath = kpm.KeyPath;
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DOptParserEmitter.cpp53 StringRef KeyPath; member in MarshallingInfo
96 OS << KeyPath; in emit()
153 Ret.KeyPath = R.getValueAsString("KeyPath"); in createMarshallingInfo()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td636 defvar std = !strconcat("LangStandard::getLangStandardForKind(", lang_std.KeyPath, ")");
988 Default<!strconcat("!", cpp23.KeyPath)>,
1139 ImpliedByAnyOf<[cl_unsafe_math_optimizations.KeyPath, cl_fast_relaxed_math.KeyPath]>;
1428 ShouldParseIf<hip.KeyPath>;
1434 ShouldParseIf<hip.KeyPath>;
1443 ShouldParseIf<hip.KeyPath>;
1448 ShouldParseIf<hip.KeyPath>;
1676 LangOpts<"Coroutines">, Default<cpp20.KeyPath>,
2058 LangOpts<"CPlusPlusModules">, Default<cpp20.KeyPath>,
2062 ShouldParseIf<cplusplus.KeyPath>;
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp347 Option::OptionClass, unsigned, bool KeyPath) { in makeBooleanOptionDenormalizer() argument
348 if (KeyPath == Value) in makeBooleanOptionDenormalizer()
517 static T mergeForwardValue(T KeyPath, U Value) { in mergeForwardValue() argument
521 template <typename T, typename U> static T mergeMaskValue(T KeyPath, U Value) { in mergeMaskValue() argument
522 return KeyPath | Value; in mergeMaskValue()
525 template <typename T> static T extractForwardValue(T KeyPath) { in extractForwardValue() argument
526 return KeyPath; in extractForwardValue()
530 static T extractMaskValue(T KeyPath) { in extractMaskValue() argument
531 return ((KeyPath & Value) == Value) ? static_cast<T>(Value) : T(); in extractMaskValue()