/external/chromium_org/ui/views/controls/table/ |
table_view.cc | 505 int text_x = kTextHorizontalPadding + cell_bounds.x(); local 509 text_x += kGroupingIndicatorSize + kTextHorizontalPadding; 515 int image_x = GetMirroredXWithWidthInView(text_x, kImageSize); 522 text_x += kImageSize + kTextHorizontalPadding; 524 if (text_x < cell_bounds.right() - kTextHorizontalPadding) { 528 GetMirroredXWithWidthInView(text_x, cell_bounds.right() - text_x - 531 cell_bounds.right() - text_x, 651 int text_x = kTextHorizontalPadding + bounds->x(); local 654 text_x += kGroupingIndicatorSize + kTextHorizontalPadding [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PaintFlagsDrawFilterTest.java | 33 private static final float TEXT_X = 50; 66 c.drawText(TEXT, TEXT_X, TEXT_Y, p);
|
/external/qemu/ |
console.c | 172 int text_x[2], text_y[2], cursor_invalidate; member in struct:TextConsole 582 s->text_x[0] = MIN(s->text_x[0], x); 583 s->text_x[1] = MAX(s->text_x[1], x); 666 s->text_x[0] = 0; 668 s->text_x[1] = s->width - 1; 751 s->text_x[0] = 0; 753 s->text_x[1] = s->width - 1; [all...] |
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_utils_gtk.cc | 138 int text_x = gdk_pixbuf_get_width(data->favicon) + kBarButtonPadding; local 139 int text_width = sender->allocation.width - text_x; 143 text_x, 0, text_width, sender->allocation.height);
|
/external/chromium_org/ui/views/widget/ |
tooltip_manager_win.cc | 253 bool TooltipManagerWin::SetTooltipPosition(int text_x, int text_y) { 261 RECT bounds = { view_loc.x() + text_x, 263 view_loc.x() + text_x + tooltip_width_,
|
tooltip_manager_win.h | 100 bool SetTooltipPosition(int text_x, int text_y);
|
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_utils_gtk.cc | 152 int text_x = gdk_pixbuf_get_width(data->favicon) + kBarButtonPadding; local 153 int text_width = allocation.width - text_x; 157 text_x, 0, text_width, allocation.height,
|
/external/chromium_org/chrome/browser/ui/views/omnibox/ |
omnibox_result_view.cc | 577 int text_x = edge_item_padding_ + default_icon_size_ + item_padding_; local 578 int text_width = width() - text_x - edge_item_padding_; 588 text_width = kw_x - text_x - item_padding_; 596 text_bounds_.SetRect(text_x, 0, std::max(text_width, 0), height());
|
/external/chromium/chrome/browser/ui/views/autocomplete/ |
autocomplete_result_view.cc | 509 int text_x = LocationBarView::kEdgeItemPadding + default_icon_size_ + local 512 text_bounds_.SetRect(text_x, std::max(0, (height() - font_height) / 2), 513 std::max(bounds().width() - text_x - LocationBarView::kEdgeItemPadding,
|