Lines Matching refs:notable_flags

119     NotableFlags *notable_flags);
131 NotableFlags *notable_flags,
136 const NotableFlags &notable_flags,
253 NotableFlags notable_flags; in PrintFlagCompletionInfo() local
259 &notable_flags); in PrintFlagCompletionInfo()
261 DVLOG(2) << " perfect_match: " << notable_flags.perfect_match_flag.size(); in PrintFlagCompletionInfo()
262 DVLOG(2) << " module: " << notable_flags.module_flags.size(); in PrintFlagCompletionInfo()
263 DVLOG(2) << " package: " << notable_flags.package_flags.size(); in PrintFlagCompletionInfo()
264 DVLOG(2) << " most common: " << notable_flags.most_common_flags.size(); in PrintFlagCompletionInfo()
265 DVLOG(2) << " subpackage: " << notable_flags.subpackage_flags.size(); in PrintFlagCompletionInfo()
271 &notable_flags, in PrintFlagCompletionInfo()
421 NotableFlags *notable_flags) { in CategorizeAllMatchingFlags() argument
422 notable_flags->perfect_match_flag.clear(); in CategorizeAllMatchingFlags()
423 notable_flags->module_flags.clear(); in CategorizeAllMatchingFlags()
424 notable_flags->package_flags.clear(); in CategorizeAllMatchingFlags()
425 notable_flags->most_common_flags.clear(); in CategorizeAllMatchingFlags()
426 notable_flags->subpackage_flags.clear(); in CategorizeAllMatchingFlags()
445 notable_flags->perfect_match_flag.insert(*it); in CategorizeAllMatchingFlags()
449 notable_flags->module_flags.insert(*it); in CategorizeAllMatchingFlags()
454 notable_flags->package_flags.insert(*it); in CategorizeAllMatchingFlags()
463 notable_flags->subpackage_flags.insert(*it); in CategorizeAllMatchingFlags()
536 NotableFlags *notable_flags, in FinalizeCompletionOutput() argument
553 if (!notable_flags->perfect_match_flag.empty()) { in FinalizeCompletionOutput()
558 &notable_flags->perfect_match_flag }; in FinalizeCompletionOutput()
563 !notable_flags->module_flags.empty()) { in FinalizeCompletionOutput()
567 &notable_flags->module_flags }; in FinalizeCompletionOutput()
572 !notable_flags->package_flags.empty()) { in FinalizeCompletionOutput()
576 &notable_flags->package_flags }; in FinalizeCompletionOutput()
581 !notable_flags->most_common_flags.empty()) { in FinalizeCompletionOutput()
585 &notable_flags->most_common_flags }; in FinalizeCompletionOutput()
590 !notable_flags->subpackage_flags.empty()) { in FinalizeCompletionOutput()
594 &notable_flags->subpackage_flags }; in FinalizeCompletionOutput()
601 RetrieveUnusedFlags(matching_flags, *notable_flags, &obscure_flags); in FinalizeCompletionOutput()
643 const NotableFlags &notable_flags, in RetrieveUnusedFlags() argument
651 if (notable_flags.perfect_match_flag.count(*it) || in RetrieveUnusedFlags()
652 notable_flags.module_flags.count(*it) || in RetrieveUnusedFlags()
653 notable_flags.package_flags.count(*it) || in RetrieveUnusedFlags()
654 notable_flags.most_common_flags.count(*it) || in RetrieveUnusedFlags()
655 notable_flags.subpackage_flags.count(*it)) in RetrieveUnusedFlags()