/external/chromium_org/chrome/browser/ui/autofill/ |
loading_animation.cc | 19 int font_height) 22 font_height_(font_height) {}
|
loading_animation.h | 16 int font_height);
|
/external/chromium/chrome/browser/ui/views/tabs/ |
side_tab.cc | 70 int title_y = (height() - font_height()) / 2; 75 font_height());
|
base_tab.h | 145 static int font_height() { return font_height_; } function in class:BaseTab
|
tab.cc | 236 int content_height = std::max(kFaviconSize, font_height()); 282 int title_top = kTopPadding + (content_height - font_height()) / 2; 289 int text_height = title_top + font_height() + kBottomPadding; 300 title_bounds_.SetRect(title_left, title_top, title_width, font_height());
|
/external/qemu/ |
console.c | 342 #define FONT_HEIGHT 16 496 ds_get_linesize(ds) * y * FONT_HEIGHT + bpp * x * FONT_WIDTH; 498 font_ptr = vgafont16 + FONT_HEIGHT * ch; 502 for(i = 0; i < FONT_HEIGHT; i++) { 505 && ((i == FONT_HEIGHT - 2) || (i == FONT_HEIGHT - 3))) { 515 for(i = 0; i < FONT_HEIGHT; i++) { 518 && ((i == FONT_HEIGHT - 2) || (i == FONT_HEIGHT - 3))) { 529 for(i = 0; i < FONT_HEIGHT; i++) [all...] |
curses.c | 40 #define FONT_HEIGHT 16 109 ds->surface->height = height * FONT_HEIGHT; 173 ds->surface->height = FONT_HEIGHT * height; 201 ds->surface->height = FONT_HEIGHT * height;
|
/external/chromium_org/ui/gfx/ |
platform_font_win.cc | 101 int font_height = font.GetHeight(); local 103 while (font_height > height && font_size != min_font_size) { 105 if (font_height == font.GetHeight() && font_size == font.GetFontSize()) 107 font_height = font.GetHeight();
|
render_text_win.cc | 98 // Changes |font| to have the specified |font_size| (or |font_height| on Windows 102 int font_height, 108 // On Windows XP, the font must be resized using |font_height| instead of 113 *font = platform_font->DeriveFontWithHeight(font_height, target_style); 1176 const int font_height = run->font.GetHeight(); local [all...] |
render_text.cc | 56 const int font_height = font_list.GetHeight(); local 58 // text as possible. In particular case of |display_height| == |font_height|, 60 const int min_shift = std::min(0, display_height - font_height); 61 const int max_shift = std::abs(display_height - font_height); 70 display_height - ((internal_leading != 0) ? cap_height : font_height); [all...] |
/external/chromium_org/ui/views/controls/textfield/ |
textfield.cc | 439 const int font_height = native_wrapper_ ? native_wrapper_->GetFontHeight() : local 444 font_height + insets.height());
|
/external/chromium/chrome/browser/ui/views/autocomplete/ |
autocomplete_result_view.cc | 511 int font_height = GetFontHeight(); local 512 text_bounds_.SetRect(text_x, std::max(0, (height() - font_height) / 2), 514 0), font_height);
|