HomeSort by relevance Sort by last modified time
    Searched refs:split_index (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ui/gfx/geometry/
r_tree_base.cc 248 size_t split_index =
253 return DivideChildren(low_bounds, high_bounds, sort, split_index);
442 size_t split_index) {
445 DCHECK_LT(split_index, low_bounds.size());
446 DCHECK_GT(split_index, 0U);
450 set_rect(low_bounds[split_index - 1]);
451 sibling->set_rect(high_bounds[split_index]);
458 sorted_children.begin() + split_index);
460 sorted_children.begin() + split_index,
r_tree_base.h 233 // Returns a new node containing children [split_index, count()) within
234 // |sorted_children|. Children before |split_index| remain with |this|.
239 size_t split_index);
r_tree_unittest.cc 180 size_t split_index) {
182 low_bounds, high_bounds, sorted_children, split_index);
    [all...]
  /external/chromium_org/ui/gfx/
text_elider.cc 54 const size_t split_index = email.find_last_of('@'); local
55 DCHECK_NE(split_index, base::string16::npos);
56 base::string16 username = email.substr(0, split_index);
57 base::string16 domain = email.substr(split_index + 1);
render_text.cc 1330 const size_t split_index = email.find_last_of('@'); local
    [all...]

Completed in 101 milliseconds