Lines Matching refs:DepMap
26 typedef std::multimap<const Target*, const Target*> DepMap;
29 void FillDepMap(Setup* setup, DepMap* dep_map) {
88 void RecursivePrintTree(const DepMap& dep_map,
94 DepMap::const_iterator dep_begin = dep_map.lower_bound(target);
95 DepMap::const_iterator dep_end = dep_map.upper_bound(target);
96 for (DepMap::const_iterator cur_dep = dep_begin;
125 void RecursiveCollectChildRefs(const DepMap& dep_map,
131 void RecursiveCollectRefs(const DepMap& dep_map,
141 void RecursiveCollectChildRefs(const DepMap& dep_map,
144 DepMap::const_iterator dep_begin = dep_map.lower_bound(target);
145 DepMap::const_iterator dep_end = dep_map.upper_bound(target);
146 for (DepMap::const_iterator cur_dep = dep_begin;
239 DepMap dep_map;
272 DepMap::const_iterator dep_begin = dep_map.lower_bound(query[query_i]);
273 DepMap::const_iterator dep_end = dep_map.upper_bound(query[query_i]);
274 for (DepMap::const_iterator cur_dep = dep_begin;