Home
last modified time | relevance | path

Searched refs:OptionKind (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptParser.td19 class OptionKind<string name, int precedence = 0, bit sentinel = false> {
28 def KIND_GROUP : OptionKind<"Group">;
30 def KIND_INPUT : OptionKind<"Input", 1, true>;
32 def KIND_UNKNOWN : OptionKind<"Unknown", 2, true>;
34 def KIND_FLAG : OptionKind<"Flag">;
36 def KIND_JOINED : OptionKind<"Joined", 1>;
38 def KIND_SEPARATE : OptionKind<"Separate">;
40 def KIND_COMMAJOINED : OptionKind<"CommaJoined">;
42 def KIND_MULTIARG : OptionKind<"MultiArg">;
45 def KIND_JOINED_OR_SEPARATE : OptionKind<"JoinedOrSeparate">;
[all …]
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp174 std::pair<StringRef,StringRef> getSeparatorsForKind(const Record *OptionKind) { in getSeparatorsForKind() argument
175 return StringSwitch<std::pair<StringRef, StringRef>>(OptionKind->getName()) in getSeparatorsForKind()
187 unsigned getNumArgsForKind(const Record *OptionKind, const Record *Option) { in getNumArgsForKind() argument
188 return StringSwitch<unsigned>(OptionKind->getName()) in getNumArgsForKind()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h35 enum OptionKind { enum
349 bool IsOptionSet(OptionKind kind) in IsOptionSet()
H A DBreakpointLocation.h211 GetOptionsSpecifyingKind(BreakpointOptions::OptionKind kind) const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupPythonClassWithDict.h27 enum OptionKind { enum
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp342 MetadataSection::Option &OptionKind) { in mapping()
344 switch (OptionKind) { in mapping()
1031 auto OptionKind = MetadataSection::Option::Clients; in mapKeysToValuesV4() local
1033 OptionKind); in mapKeysToValuesV4()
1034 OptionKind = MetadataSection::Option::Libraries; in mapKeysToValuesV4()
1036 OptionKind); in mapKeysToValuesV4()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp261 opts::ModuleSubsection OptionKind = convertSubsectionKind(SS.kind()); in dumpDbiStream() local
262 if (!checkModuleSubsection(OptionKind)) in dumpDbiStream()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp57 BreakpointOptions::OptionKind kind) const { in GetOptionsSpecifyingKind()