Searched defs:target_i (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/ui/wm/core/
H A Dtransient_window_stacking_client.cc60 size_t target_i = local
68 while (target_i > 0) {
70 target_i : target_i - 1;
74 --target_i;
76 *target = children[target_i];
111 size_t target_i = local
113 while (target_i + 1 < siblings.size() &&
114 HasTransientAncestor(siblings[target_i + 1], *target)) {
115 ++target_i;
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview.cc131 const size_t target_i = local
134 if ((direction == ORDER_DIRECTION_ABOVE && child_i == target_i + 1) ||
135 (direction == ORDER_DIRECTION_BELOW && child_i + 1 == target_i)) {
142 ? (child_i < target_i ? target_i : target_i + 1)
143 : (child_i < target_i ? target_i - 1 : target_i);
/external/chromium_org/mojo/services/view_manager/
H A Dview_manager_service_impl.cc209 const size_t target_i = local
212 if ((direction == ORDER_DIRECTION_ABOVE && child_i == target_i + 1) ||
213 (direction == ORDER_DIRECTION_BELOW && child_i + 1 == target_i)) {
/external/chromium_org/ui/aura/
H A Dwindow.cc1120 const size_t target_i = local
1124 if ((direction == STACK_ABOVE && child_i == target_i + 1) ||
1125 (direction == STACK_BELOW && child_i + 1 == target_i))
1130 (child_i < target_i ? target_i : target_i + 1) :
1131 (child_i < target_i ? target_i - 1 : target_i);

Completed in 177 milliseconds