Home
last modified time | relevance | path

Searched refs:getFormattingFlag (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCommandLine.cpp126 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix || in isPrefixedOrGrouping()
127 O->getFormattingFlag() == cl::AlwaysPrefix; in isPrefixedOrGrouping()
224 if (O->getFormattingFlag() == cl::Positional) in addOption()
282 if (O->getFormattingFlag() == cl::Positional) in removeOption()
546 if (O->getFormattingFlag() == cl::AlwaysPrefix) in LookupOption()
662 if (i + 1 >= argc || Handler->getFormattingFlag() == cl::AlwaysPrefix) in ProvideOption()
770 if (MaybeValue.empty() || PGOpt->getFormattingFlag() == cl::AlwaysPrefix || in HandlePrefixedOrGroupedOption()
771 (PGOpt->getFormattingFlag() == cl::Prefix && MaybeValue[0] != '=')) { in HandlePrefixedOrGroupedOption()
1656 if (!Handler || Handler->getFormattingFlag() != cl::Positional) { in ParseCommandLineOptions()
1704 if (Handler->getFormattingFlag() == cl::Positional) { in ParseCommandLineOptions()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DCommandLine.h299 inline enum FormattingFlags getFormattingFlag() const { in getFormattingFlag() function
309 bool isPositional() const { return getFormattingFlag() == cl::Positional; } in isPositional()