Lines Matching full:targets
25 // Maps targets to the list of targets that depend on them.
28 // Populates the reverse dependency map for the targets in the Setup.
30 std::vector<const Target*> targets =
33 for (size_t target_i = 0; target_i < targets.size(); target_i++) {
34 for (DepsIterator iter(targets[target_i]); !iter.done(); iter.Advance())
35 dep_map->insert(std::make_pair(iter.target(), targets[target_i]));
44 // Prints the targets which are the result of a query. This list is sorted
45 // and, if as_files is set, the unique filenames matching those targets will
85 // non-null, new targets encountered will be added to the set, and if a ref is
100 // Only print the toolchain for non-default-toolchain targets.
129 // Recursively finds all targets that reference the given one, and additionally
140 // Recursively finds all targets that reference the given one.
160 " Finds which targets reference a given target or targets (reverse\n"
169 " dependencies of the given targets. When used with --tree, turns\n"
191 " Find all targets depending on the given exact target name.\n"
197 " List all targets depending directly or indirectly on //base:base.\n"
200 " List all targets depending directly on any target in //base or\n"
204 " List all targets depending directly on any target in\n"
228 // Figure out the target or targets that the user is querying.
234 OutputString("\"" + args[1] + "\" matches no targets.\n");
255 // Recursively print all targets.
258 // Recursively print unique targets.