Lines Matching refs:In
198 static bool optionMatches(const OptTable::Info &In, StringRef Option) { in optionMatches() argument
199 if (In.Prefixes) in optionMatches()
200 for (size_t I = 0; In.Prefixes[I]; I++) in optionMatches()
201 if (Option == std::string(In.Prefixes[I]) + In.Name) in optionMatches()
213 const Info &In = OptionInfos[I]; in suggestValueCompletions() local
214 if (!In.Values || !optionMatches(In, Option)) in suggestValueCompletions()
218 StringRef(In.Values).split(Candidates, ",", -1, false); in suggestValueCompletions()
233 const Info &In = OptionInfos[I]; in findByPrefix() local
234 if (!In.Prefixes || (!In.HelpText && !In.GroupID)) in findByPrefix()
236 if (In.Flags & DisableFlags) in findByPrefix()
239 for (int I = 0; In.Prefixes[I]; I++) { in findByPrefix()
240 std::string S = std::string(In.Prefixes[I]) + std::string(In.Name) + "\t"; in findByPrefix()
241 if (In.HelpText) in findByPrefix()
242 S += In.HelpText; in findByPrefix()
315 Info &In = OptionInfos[I]; in addValues() local
316 if (optionMatches(In, Option)) { in addValues()
317 In.Values = Values; in addValues()