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

  /external/chromium_org/ui/gfx/
break_list.h 27 class BreakList {
34 BreakList();
35 explicit BreakList(T value);
55 Range GetRange(const typename BreakList<T>::const_iterator& i) const;
72 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
76 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
80 void BreakList<T>::SetValue(T value) {
86 void BreakList<T>::ApplyValue(T value, const Range& range)
    [all...]
render_text.h 115 StyleIterator(const BreakList<SkColor>& colors,
116 const std::vector<BreakList<bool> >& styles);
130 BreakList<SkColor> colors_;
131 std::vector<BreakList<bool> > styles_;
133 BreakList<SkColor>::const_iterator color_;
134 std::vector<BreakList<bool>::const_iterator> style_;
435 const BreakList<SkColor>& colors() const { return colors_; }
436 const std::vector<BreakList<bool> >& styles() const { return styles_; }
521 const BreakList<size_t>& GetLineBreaks();
660 // BreakList positions are stored with text indices, not layout indices
    [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_win.cc 114 const BreakList<size_t>& breaks,
121 BreakList<size_t>::const_iterator word = breaks.GetBreak(start_char);
122 BreakList<size_t>::const_iterator next_word = word + 1;
345 const BreakList<size_t>* words,
498 const BreakList<size_t>* const words_;
867 for (BreakList<SkColor>::const_iterator it =
    [all...]
render_text.cc 341 StyleIterator::StyleIterator(const BreakList<SkColor>& colors,
342 const std::vector<BreakList<bool> >& styles)
420 BreakList<bool>& break_list = styles_[style];
    [all...]
render_text_pango.cc 357 BreakList<bool>::const_iterator bold = styles()[BOLD].breaks().begin();
358 BreakList<bool>::const_iterator italic = styles()[ITALIC].breaks().begin();
render_text_harfbuzz.cc 923 for (BreakList<SkColor>::const_iterator it
    [all...]

Completed in 1440 milliseconds