Home
last modified time | relevance | path

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

/external/chromium_org/ui/views/corewm/
Dtransient_window_stacking_client.cc84 size_t target_i = in AdjustStacking() local
86 while (target_i + 1 < siblings.size() && in AdjustStacking()
87 HasTransientAncestor(siblings[target_i + 1], *target)) { in AdjustStacking()
88 ++target_i; in AdjustStacking()
90 *target = siblings[target_i]; in AdjustStacking()
/external/chromium_org/ui/aura/
Dwindow.cc1173 size_t target_i = in SkipNullDelegatesForStacking() local
1181 while (target_i > 0) { in SkipNullDelegatesForStacking()
1182 const size_t index = direction == STACK_ABOVE ? target_i : target_i - 1; in SkipNullDelegatesForStacking()
1186 --target_i; in SkipNullDelegatesForStacking()
1188 *target = children_[target_i]; in SkipNullDelegatesForStacking()
1245 const size_t target_i = in StackChildRelativeToImpl() local
1249 if ((direction == STACK_ABOVE && child_i == target_i + 1) || in StackChildRelativeToImpl()
1250 (direction == STACK_BELOW && child_i + 1 == target_i)) in StackChildRelativeToImpl()
1255 (child_i < target_i ? target_i : target_i + 1) : in StackChildRelativeToImpl()
1256 (child_i < target_i ? target_i - 1 : target_i); in StackChildRelativeToImpl()