Searched refs:target_i (Results 1 – 5 of 5) sorted by relevance
60 size_t target_i = in SkipNullDelegates() local68 while (target_i > 0) { in SkipNullDelegates()70 target_i : target_i - 1; in SkipNullDelegates()74 --target_i; in SkipNullDelegates()76 *target = children[target_i]; in SkipNullDelegates()111 size_t target_i = in AdjustStacking() local113 while (target_i + 1 < siblings.size() && in AdjustStacking()114 HasTransientAncestor(siblings[target_i + 1], *target)) { in AdjustStacking()115 ++target_i; in AdjustStacking()117 *target = siblings[target_i]; in AdjustStacking()
131 const size_t target_i = in ReorderImpl() local134 if ((direction == ORDER_DIRECTION_ABOVE && child_i == target_i + 1) || in ReorderImpl()135 (direction == ORDER_DIRECTION_BELOW && child_i + 1 == target_i)) { in ReorderImpl()142 ? (child_i < target_i ? target_i : target_i + 1) in ReorderImpl()143 : (child_i < target_i ? target_i - 1 : target_i); in ReorderImpl()
33 for (size_t target_i = 0; target_i < targets.size(); target_i++) { in FillDepMap() local34 for (DepsIterator iter(targets[target_i]); !iter.done(); iter.Advance()) in FillDepMap()35 dep_map->insert(std::make_pair(iter.target(), targets[target_i])); in FillDepMap()
1120 const size_t target_i = in StackChildRelativeTo() local1124 if ((direction == STACK_ABOVE && child_i == target_i + 1) || in StackChildRelativeTo()1125 (direction == STACK_BELOW && child_i + 1 == target_i)) in StackChildRelativeTo()1130 (child_i < target_i ? target_i : target_i + 1) : in StackChildRelativeTo()1131 (child_i < target_i ? target_i - 1 : target_i); in StackChildRelativeTo()
209 const size_t target_i = in CanReorderView() local212 if ((direction == ORDER_DIRECTION_ABOVE && child_i == target_i + 1) || in CanReorderView()213 (direction == ORDER_DIRECTION_BELOW && child_i + 1 == target_i)) { in CanReorderView()