Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp127 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix || in isPrefixedOrGrouping()
128 O->getFormattingFlag() == cl::AlwaysPrefix; in isPrefixedOrGrouping()
225 if (O->getFormattingFlag() == cl::Positional) in addOption()
267 if (O->getFormattingFlag() == cl::Positional) in removeOption()
534 if (O->getFormattingFlag() == cl::AlwaysPrefix) in LookupOption()
660 if (i + 1 >= argc || Handler->getFormattingFlag() == cl::AlwaysPrefix) in ProvideOption()
768 if (MaybeValue.empty() || PGOpt->getFormattingFlag() == cl::AlwaysPrefix || in HandlePrefixedOrGroupedOption()
769 (PGOpt->getFormattingFlag() == cl::Prefix && MaybeValue[0] != '=')) { in HandlePrefixedOrGroupedOption()
1655 if (!Handler || Handler->getFormattingFlag() != cl::Positional) { in ParseCommandLineOptions()
1721 if (Handler->getFormattingFlag() == cl::Positional) { in ParseCommandLineOptions()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h302 inline enum FormattingFlags getFormattingFlag() const { in getFormattingFlag() function
312 bool isPositional() const { return getFormattingFlag() == cl::Positional; } in isPositional()