/external/chromium_org/ui/gfx/ |
font.cc | 42 return DeriveFont(size_delta, GetStyle()); 73 int Font::GetStyle() const { 74 return platform_font_->GetStyle();
|
platform_font.h | 61 virtual int GetStyle() const = 0;
|
font.h | 97 int GetStyle() const;
|
platform_font_ios.h | 27 virtual int GetStyle() const OVERRIDE;
|
platform_font_mac.h | 29 virtual int GetStyle() const OVERRIDE;
|
platform_font_win_unittest.cc | 53 EXPECT_EQ(0, derived_font.GetStyle()); 60 EXPECT_EQ(Font::BOLD, derived_font.GetStyle());
|
font_list.cc | 124 font_style_ = fonts[0].GetStyle(); 128 DCHECK_EQ(fonts[i].GetStyle(), font_style_); 241 FontStyleAndSizeToString(fonts_[0].GetStyle(), fonts_[0].GetFontSize()); 291 font_style_ = fonts_[0].GetStyle();
|
font_unittest.cc | 64 EXPECT_EQ(cf.GetStyle(), Font::NORMAL); 76 EXPECT_EQ(bold.GetStyle(), Font::BOLD);
|
platform_font_pango.h | 56 virtual int GetStyle() const OVERRIDE;
|
platform_font_win.h | 64 virtual int GetStyle() const OVERRIDE;
|
platform_font_pango.cc | 211 int PlatformFontPango::GetStyle() const { 239 switch (GetStyle()) {
|
platform_font_win.cc | 93 if (GetHeight() == height && GetStyle() == style) 162 int PlatformFontWin::GetStyle() const {
|
render_text.h | 308 bool GetStyle(TextStyle style) const;
|
font_list_unittest.cc | 22 int style = font.GetStyle();
|
render_text_unittest.cc | [all...] |
/external/chromium/chrome/browser/ui/views/ |
status_bubble_views.cc | 122 BubbleStyle GetStyle() const { return style_; } 764 (view_->GetStyle() == StatusView::STYLE_FLOATING || 765 view_->GetStyle() == StatusView::STYLE_BOTTOM))) { 783 view_->GetStyle() == StatusView::STYLE_STANDARD_RIGHT) {
|
/external/chromium_org/ui/views/controls/ |
link.cc | 223 const int style = font().GetStyle();
|
styled_label_unittest.cc | 201 static_cast<Label*>(styled()->child_at(1))->font().GetStyle()); 244 static_cast<Label*>(styled()->child_at(0))->font().GetStyle()); 248 static_cast<Label*>(styled()->child_at(1))->font().GetStyle()); 252 static_cast<Label*>(styled()->child_at(2))->font().GetStyle());
|
/external/chromium_org/chrome/browser/ui/views/omnibox/ |
omnibox_result_view.cc | 515 gfx::Font font((*j)->GetStyle(gfx::BOLD) ? 543 if ((*j)->GetStyle(gfx::BOLD) && (elided_text.length() == 1) && 544 (on_leading_classification || !(*prior)->GetStyle(gfx::BOLD)))
|
/external/chromium_org/ui/views/controls/button/ |
label_button.cc | 134 int style = label_->font().GetStyle(); 180 label.SetFont(font.DeriveFont(0, font.GetStyle() ^ gfx::Font::BOLD));
|
/external/chromium_org/chrome/browser/ui/views/ |
status_bubble_views.cc | 134 BubbleStyle GetStyle() const { return style_; } 784 (view_->GetStyle() == StatusView::STYLE_FLOATING || 785 view_->GetStyle() == StatusView::STYLE_BOTTOM))) { 803 view_->GetStyle() == StatusView::STYLE_STANDARD_RIGHT) {
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
network_dropdown.cc | 101 item->SetBoolean("bold", font->GetStyle() == gfx::Font::BOLD);
|
/external/chromium_org/ash/system/date/ |
date_view.cc | 304 label->SetFont(font.DeriveFont(0, font.GetStyle() & ~gfx::Font::BOLD));
|
/external/chromium_org/ash/system/session_length_limit/ |
tray_session_length_limit.cc | 58 label->SetFont(font.DeriveFont(0, font.GetStyle() & ~gfx::Font::BOLD));
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontHost_win_dw.cpp | 175 virtual void getStyle(int index, SkFontStyle* fs, SkString* styleName) SK_OVERRIDE; 512 DWRITE_FONT_STYLE angle = font->GetStyle(); [all...] |