Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Option/
H A DOptionMarshallingTest.cpp13 const char *KeyPath; member
37 ASSERT_STREQ(MarshallingTable[0].KeyPath, "X->MarshalledFlagD"); in TEST()
38 ASSERT_STREQ(MarshallingTable[1].KeyPath, "X->MarshalledFlagC"); in TEST()
39 ASSERT_STREQ(MarshallingTable[2].KeyPath, "X->MarshalledFlagB"); in TEST()
40 ASSERT_STREQ(MarshallingTable[3].KeyPath, "X->MarshalledFlagA"); in TEST()
H A DOpts.td54 ImpliedByAnyOf<[marshalled_flag_d.KeyPath], "true">;
57 ImpliedByAnyOf<[marshalled_flag_d.KeyPath], "true">;
60 ImpliedByAnyOf<[marshalled_flag_c.KeyPath, marshalled_flag_b.KeyPath]>;
/llvm-project-15.0.7/llvm/include/llvm/Option/
H A DOptParser.td101 code KeyPath = ?;
154 code KeyPath = !strconcat(key_path_prefix, key_path_base);
168 code KeyPath = kpm.KeyPath;
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DOptParserEmitter.cpp68 StringRef KeyPath; member in MarshallingInfo
113 OS << KeyPath; in emit()
170 Ret.KeyPath = R.getValueAsString("KeyPath"); in createMarshallingInfo()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td1329 ShouldParseIf<!strconcat(fprofile_arcs.KeyPath, "||", ftest_coverage.KeyPath)>;
1334 ShouldParseIf<!strconcat(fprofile_arcs.KeyPath, "||", ftest_coverage.KeyPath)>;
1588 ImpliedByAnyOf<[cl_unsafe_math_optimizations.KeyPath, ffast_math.KeyPath]>;
1891 [cl_no_signed_zeros.KeyPath, menable_unsafe_fp_math.KeyPath]>,
2234 …PosFlag<SetTrue, [], "Allow", [fms_extensions.KeyPath, fborland_extensions.KeyPath, cuda.KeyPath]>,
5349 ShouldParseIf<!strconcat(fprofile_arcs.KeyPath, "||", ftest_coverage.KeyPath)>;
5355 ShouldParseIf<!strconcat(fprofile_arcs.KeyPath, "||", ftest_coverage.KeyPath)>;
5773 ImpliedByAnyOf<[fmodules_ts.KeyPath, fcxx_modules.KeyPath]>;
5917 …yOf<[fdump_record_layouts_simple.KeyPath, fdump_record_layouts_complete.KeyPath, fdump_record_layo…
6123 ImpliedByAnyOf<[open_cl.KeyPath, render_script.KeyPath]>;
[all …]
/llvm-project-15.0.7/clang/lib/Frontend/
H A DCompilerInvocation.cpp236 unsigned, bool KeyPath) { in makeBooleanOptionDenormalizer() argument
237 if (KeyPath == Value) in makeBooleanOptionDenormalizer()
409 static T mergeForwardValue(T KeyPath, U Value) { in mergeForwardValue() argument
413 template <typename T, typename U> static T mergeMaskValue(T KeyPath, U Value) { in mergeMaskValue() argument
414 return KeyPath | Value; in mergeMaskValue()
417 template <typename T> static T extractForwardValue(T KeyPath) { in extractForwardValue() argument
418 return KeyPath; in extractForwardValue()
422 static T extractMaskValue(T KeyPath) { in extractMaskValue() argument
423 return ((KeyPath & Value) == Value) ? static_cast<T>(Value) : T(); in extractMaskValue()
/llvm-project-15.0.7/clang/docs/
H A DInternalsManual.rst985 ImpliedByAnyOf<[fms_compatibility.KeyPath], "true">;
996 ShouldParseIf<fopenmp.KeyPath>;