Home
last modified time | relevance | path

Searched refs:target_i (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/ui/wm/core/
Dtransient_window_stacking_client.cc60 size_t target_i = in SkipNullDelegates() local
68 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() local
113 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()
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
Dview.cc131 const size_t target_i = in ReorderImpl() local
134 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()
/external/chromium_org/tools/gn/
Dcommand_refs.cc33 for (size_t target_i = 0; target_i < targets.size(); target_i++) { in FillDepMap() local
34 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()
/external/chromium_org/ui/aura/
Dwindow.cc1120 const size_t target_i = in StackChildRelativeTo() local
1124 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()
/external/chromium_org/mojo/services/view_manager/
Dview_manager_service_impl.cc209 const size_t target_i = in CanReorderView() local
212 if ((direction == ORDER_DIRECTION_ABOVE && child_i == target_i + 1) || in CanReorderView()
213 (direction == ORDER_DIRECTION_BELOW && child_i + 1 == target_i)) { in CanReorderView()