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

  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.h 59 CharRange() : cp_min(0), cp_max(0) { }
60 CharRange(int n, int x) : cp_min(n), cp_max(x) { }
63 int selection_min() const { return std::min(cp_min, cp_max); }
64 int selection_max() const { return std::max(cp_min, cp_max); }
68 int cp_max; // For a selection: Represents the end (insert position). member in struct:AutocompleteEditViewGtk::CharRange
308 // direction, cp_max is the insertion point, and cp_min is the bound.
autocomplete_edit_view_gtk.cc 594 *end = static_cast<size_t>(selection.cp_max);
619 std::max(sel.cp_max, sel.cp_min) < GetTextLength() || IsImeComposing();
620 model_->StartAutocomplete(sel.cp_min != sel.cp_max, no_inline_autocomplete);
705 ((new_sel.cp_min != new_sel.cp_max) ||
706 (sel_before_change_.cp_min != sel_before_change_.cp_max)) &&
708 (new_sel.cp_max != sel_before_change_.cp_max));
710 (new_sel.cp_min == length && new_sel.cp_max == length);
731 sel_before_change_.cp_max));
    [all...]

Completed in 94 milliseconds