Home | History | Annotate | Download | only in gfx

Lines Matching refs:lines

710   base::i18n::BreakIterator lines(input,
712 if (lines.Init()) {
713 while (lines.Advance())
714 AddLine(lines.GetString());
716 NOTREACHED() << "BreakIterator (lines) init failed";
801 std::vector<base::string16>* lines)
810 lines_(lines),
835 // Wrap the specified word across multiple lines.
882 // The output vector of lines.
889 // Indicates whether there were too many lines for the available height.
896 base::i18n::BreakIterator lines(input,
898 if (lines.Init()) {
899 while (!insufficient_height_ && lines.Advance()) {
900 base::string16 line = lines.GetString();
910 NOTREACHED() << "BreakIterator (lines) init failed";
1074 std::vector<base::string16>* lines) {
1079 lines);