Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Option/
H A DOptParser.td16 class OptionKind<string name, int precedence = 0, bit sentinel = false> {
25 def KIND_GROUP : OptionKind<"Group">;
27 def KIND_INPUT : OptionKind<"Input", 1, true>;
29 def KIND_UNKNOWN : OptionKind<"Unknown", 2, true>;
31 def KIND_FLAG : OptionKind<"Flag">;
33 def KIND_JOINED : OptionKind<"Joined", 1>;
35 def KIND_SEPARATE : OptionKind<"Separate">;
37 def KIND_COMMAJOINED : OptionKind<"CommaJoined">;
39 def KIND_MULTIARG : OptionKind<"MultiArg">;
42 def KIND_JOINED_OR_SEPARATE : OptionKind<"JoinedOrSeparate">;
[all …]
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp141 std::pair<StringRef,StringRef> getSeparatorsForKind(const Record *OptionKind) { in getSeparatorsForKind() argument
142 return StringSwitch<std::pair<StringRef, StringRef>>(OptionKind->getName()) in getSeparatorsForKind()
154 unsigned getNumArgsForKind(Record *OptionKind, const Record *Option) { in getNumArgsForKind() argument
155 return StringSwitch<unsigned>(OptionKind->getName()) in getNumArgsForKind()
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h34 enum OptionKind { enum
351 bool IsOptionSet(OptionKind kind) in IsOptionSet()
H A DBreakpointLocation.h221 GetOptionsSpecifyingKind(BreakpointOptions::OptionKind kind) const;
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionGroupPythonClassWithDict.h27 enum OptionKind { enum
/openbsd-src/gnu/llvm/llvm/lib/TextAPI/
H A DTextStub.cpp353 MetadataSection::Option &OptionKind) { in mapping()
355 switch (OptionKind) { in mapping()
1066 auto OptionKind = MetadataSection::Option::Clients; in mapKeysToValuesV4() local
1068 OptionKind); in mapKeysToValuesV4()
1069 OptionKind = MetadataSection::Option::Libraries; in mapKeysToValuesV4()
1071 OptionKind); in mapKeysToValuesV4()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp252 opts::ModuleSubsection OptionKind = convertSubsectionKind(SS.kind()); in dumpDbiStream() local
253 if (!checkModuleSubsection(OptionKind)) in dumpDbiStream()
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp56 BreakpointOptions::OptionKind kind) const { in GetOptionsSpecifyingKind()