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

  /external/chromium_org/ui/gfx/
break_list.h 27 class BreakList {
34 BreakList();
35 explicit BreakList(T value);
54 ui::Range GetRange(const typename BreakList<T>::const_iterator& i) const;
71 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
75 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
79 void BreakList<T>::SetValue(T value) {
85 void BreakList<T>::ApplyValue(T value, const ui::Range& range)
    [all...]
render_text.h 90 StyleIterator(const BreakList<SkColor>& colors,
91 const std::vector<BreakList<bool> >& styles);
105 BreakList<SkColor> colors_;
106 std::vector<BreakList<bool> > styles_;
108 BreakList<SkColor>::const_iterator color_;
109 std::vector<BreakList<bool>::const_iterator> style_;
348 const BreakList<SkColor>& colors() const { return colors_; }
349 const std::vector<BreakList<bool> >& styles() const { return styles_; }
529 // BreakList positions are stored with text indices, not layout indices.
531 BreakList<SkColor> colors_
    [all...]
break_list_unittest.cc 17 BreakList<bool> style_breaks(false);
23 BreakList<SkColor> color_breaks(SK_ColorRED);
30 BreakList<bool> breaks(false);
105 BreakList<bool> breaks(false);
135 BreakList<bool> breaks(false);
160 BreakList<bool>::const_iterator it = breaks.GetBreak(cases[i].position);
render_text_linux.cc 345 BreakList<bool>::const_iterator bold = styles()[BOLD].breaks().begin();
346 BreakList<bool>::const_iterator italic = styles()[ITALIC].breaks().begin();
render_text.cc 280 StyleIterator::StyleIterator(const BreakList<SkColor>& colors,
281 const std::vector<BreakList<bool> >& styles)
    [all...]
render_text_win.cc 509 for (BreakList<SkColor>::const_iterator it =
572 // empty color BreakList to avoid breaking runs at color boundaries.
573 BreakList<SkColor> empty_colors;
    [all...]

Completed in 1035 milliseconds