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.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()
266 if (O->getFormattingFlag() == cl::Positional) in removeOption()
517 if (O->getFormattingFlag() == cl::AlwaysPrefix) in LookupOption()
643 if (i + 1 >= argc || Handler->getFormattingFlag() == cl::AlwaysPrefix) in ProvideOption()
751 if (MaybeValue.empty() || PGOpt->getFormattingFlag() == cl::AlwaysPrefix || in HandlePrefixedOrGroupedOption()
752 (PGOpt->getFormattingFlag() == cl::Prefix && MaybeValue[0] != '=')) { in HandlePrefixedOrGroupedOption()
1638 if (!Handler || Handler->getFormattingFlag() != cl::Positional) { in ParseCommandLineOptions()
1704 if (Handler->getFormattingFlag() == cl::Positional) { in ParseCommandLineOptions()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h308 inline enum FormattingFlags getFormattingFlag() const { in getFormattingFlag() function
318 bool isPositional() const { return getFormattingFlag() == cl::Positional; } in isPositional()