Home
last modified time | relevance | path

Searched refs:target_matches (Results 1 – 7 of 7) sorted by relevance

/third_party/gn/src/gn/
Dcommand_outputs.cc86 UniqueVector<const Target*> target_matches; in RunOutputs() local
90 if (!ResolveFromCommandLineInput(setup, inputs, false, &target_matches, in RunOutputs()
96 if (target_matches.empty() && file_matches.empty()) { in RunOutputs()
122 target_matches.push_back(pair.first); in RunOutputs()
135 for (const Target* target : target_matches) { in RunOutputs()
Dcommand_ls.cc80 UniqueVector<const Target*> target_matches; local
85 &target_matches, &config_matches,
88 matches.insert(matches.begin(), target_matches.begin(),
89 target_matches.end());
Dcommand_check.cc208 UniqueVector<const Target*> target_matches; in RunCheck() local
213 &target_matches, &config_matches, in RunCheck()
217 if (target_matches.size() == 0) { in RunCheck()
221 targets_to_check.insert(targets_to_check.begin(), target_matches.begin(), in RunCheck()
222 target_matches.end()); in RunCheck()
Dcommand_refs.cc384 UniqueVector<const Target*> target_matches; local
389 &target_matches, &config_matches,
423 target_matches.empty()) {
435 cnt = DoTreeOutput(dep_map, target_matches, explicit_target_matches, all);
437 cnt = DoAllListOutput(dep_map, target_matches, explicit_target_matches);
439 cnt = DoDirectListOutput(dep_map, target_matches, explicit_target_matches);
Dcommand_desc.cc639 UniqueVector<const Target*> target_matches; in RunDesc() local
649 &target_matches, &config_matches, &toolchain_matches, &file_matches)) in RunDesc()
658 if (target_matches.empty() && config_matches.empty()) { in RunDesc()
668 if (!target_matches.empty()) { in RunDesc()
669 for (const auto* target : target_matches) { in RunDesc()
690 bool multiple_outputs = (target_matches.size() + config_matches.size()) > 1; in RunDesc()
694 for (const Target* target : target_matches) { in RunDesc()
Dcommands.cc76 UniqueVector<const Target*>* target_matches, in ResolveStringFromCommandLineInput() argument
89 target_matches->push_back(target); in ResolveStringFromCommandLineInput()
115 target_matches->push_back(as_target); in ResolveStringFromCommandLineInput()
520 UniqueVector<const Target*>* target_matches, in ResolveFromCommandLineInput() argument
534 setup, cur_dir, cur, default_toolchain_only, target_matches, in ResolveFromCommandLineInput()
Dcommands.h262 UniqueVector<const Target*>* target_matches,