Home
last modified time | relevance | path

Searched refs:current_line_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/ui/gfx/
Drender_text_pango.cc72 current_line_(NULL), in RenderTextPango()
127 for (GSList* it = current_line_->runs; it; it = it->next) { in GetFontSpansForTesting()
156 current_line_->runs : g_slist_last(current_line_->runs); in AdjacentCharSelectionModel()
176 run->next : GSListPrevious(current_line_->runs, run); in AdjacentCharSelectionModel()
228 pango_layout_line_get_x_ranges(current_line_, in GetSubstringBounds()
290 if (current_line_) { in ResetLayout()
291 pango_layout_line_unref(current_line_); in ResetLayout()
292 current_line_ = NULL; in ResetLayout()
333 current_line_ = pango_layout_get_line_readonly(layout_, 0); in EnsureLayout()
334 CHECK_NE(static_cast<PangoLayoutLine*>(NULL), current_line_); in EnsureLayout()
[all …]
Dtext_elider.cc877 base::string16 current_line_; member in gfx::__anon51dfd0430211::RectangleText
939 const bool truncate = !current_line_.empty(); in AddLine()
951 current_line_.clear(); in AddLine()
989 if (!current_line_.empty()) { in AddWordOverflow()
996 current_line_ = word; in AddWordOverflow()
1040 current_line_.append(text); in AddToCurrentLineWithWidth()
1047 lines_->push_back(current_line_); in NewLine()
1048 current_line_.clear(); in NewLine()
Drender_text_pango.h73 PangoLayoutLine* current_line_; variable