HomeSort by relevance Sort by last modified time
    Searched refs:font_style (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/ui/gfx/
font_list_impl.cc 17 // Parses font description into |font_names|, |font_style| and |font_size|.
20 int* font_style,
34 *font_style = 0;
41 *font_style |= gfx::Font::BOLD;
43 *font_style |= gfx::Font::ITALIC;
50 std::string FontStyleAndSizeToString(int font_style, int font_size) {
52 if (font_style & gfx::Font::BOLD)
54 if (font_style & gfx::Font::ITALIC)
61 // Returns font description from |font_names|, |font_style|, and |font_size|.
63 int font_style,
    [all...]
font_list.cc 34 int font_style,
36 : impl_(new FontListImpl(font_names, font_style, font_size)) {}
61 FontList FontList::Derive(int size_delta, int font_style) const {
62 return FontList(impl_->Derive(size_delta, font_style));
69 FontList FontList::DeriveWithStyle(int font_style) const {
70 return Derive(0, font_style);
font_list_impl.h 37 int font_style,
49 // size. |font_style| specifies the new style, which is a bitmask of the
51 FontListImpl* Derive(int size_delta, int font_style) const;
font_list.h 46 int font_style,
73 // |font_style| specifies the new style, which is a bitmask of the values:
75 FontList Derive(int size_delta, int font_style) const;
82 // style. |font_style| specifies the new style, which is a bitmask of the
84 FontList DeriveWithStyle(int font_style) const;
platform_font_mac.h 35 PlatformFontMac(const std::string& font_name, int font_size, int font_style);
platform_font_win.cc 59 // Sets style properties on |font_info| based on |font_style|.
60 void SetLogFontStyle(int font_style, LOGFONT* font_info) {
61 font_info->lfUnderline = (font_style & gfx::Font::UNDERLINE) != 0;
62 font_info->lfItalic = (font_style & gfx::Font::ITALIC) != 0;
63 font_info->lfWeight = (font_style & gfx::Font::BOLD) ? FW_BOLD : FW_NORMAL;
render_text_mac.h 60 int font_style; member in struct:gfx::RenderTextMac::TextRun
canvas_skia.cc 148 const int font_style = font_list.GetFontStyle(); local
149 render_text->SetStyle(BOLD, (font_style & Font::BOLD) != 0);
150 render_text->SetStyle(ITALIC, (font_style & Font::ITALIC) != 0);
151 render_text->SetStyle(UNDERLINE, (font_style & Font::UNDERLINE) != 0);
render_text_harfbuzz.h 66 int font_style; member in struct:gfx::internal::TextRunHarfBuzz
render_text_mac.cc 171 renderer.SetFontFamilyWithStyle(run.font_name, run.font_style);
185 font_style(Font::NORMAL),
320 run->font_style |= Font::BOLD;
322 run->font_style |= Font::ITALIC;
render_text_win.h 31 int font_style; member in struct:gfx::internal::TextRun
render_text_win.cc 42 // XP) and |font_style| if it is not the case already. Only considers bold and
46 int font_style,
49 const int target_style = (font_style & kStyleMask);
293 : font_style(0),
865 renderer.SetFontFamilyWithStyle(run->font.GetFontName(), run->font_style);
    [all...]
font_list_unittest.cc 48 int font_style = Font::BOLD | Font::ITALIC | Font::UNDERLINE; local
50 FontList font_list = FontList(font_names, font_style, font_size);
render_text.cc 82 SkTypeface::Style ConvertFontStyleToSkiaTypefaceStyle(int font_style) {
84 skia_style |= (font_style & Font::BOLD) ? SkTypeface::kBold : 0;
85 skia_style |= (font_style & Font::ITALIC) ? SkTypeface::kItalic : 0;
448 const int font_style = font_list.GetFontStyle(); local
449 SetStyle(BOLD, (font_style & gfx::Font::BOLD) != 0);
450 SetStyle(ITALIC, (font_style & gfx::Font::ITALIC) != 0);
451 SetStyle(UNDERLINE, (font_style & gfx::Font::UNDERLINE) != 0);
    [all...]
render_text_pango.cc 464 const int font_style = (style.style(BOLD) ? Font::BOLD : 0) | local
466 renderer.SetFontFamilyWithStyle(family_name, font_style);
render_text_harfbuzz.cc 471 font_style(0),
    [all...]
render_text.h 58 void SetFontFamilyWithStyle(const std::string& family, int font_style);
  /external/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.cc 56 service_name_style.font_style = gfx::Font::UNDERLINE;
64 link_style.font_style = gfx::Font::NORMAL;
88 link_style.font_style = gfx::Font::NORMAL;
  /external/chromium_org/ui/views/controls/
styled_label.cc 42 link->SetUnderline((style_info.font_style & gfx::Font::UNDERLINE) != 0);
53 if (style_info.font_style != gfx::Font::NORMAL) {
55 result->font_list().DeriveWithStyle(style_info.font_style));
67 : font_style(gfx::Font::NORMAL),
237 current_range->style_info.font_style);
styled_label.h 42 int font_style; member in struct:views::StyledLabel::RangeStyleInfo
styled_label_unittest.cc 205 style_info.font_style = gfx::Font::UNDERLINE;
228 style_info.font_style = gfx::Font::BOLD;
  /external/chromium_org/chrome/browser/ui/views/autofill/
generated_credit_card_bubble_views.cc 76 style.font_style = gfx::Font::BOLD;
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_sync_promo_view.cc 52 link_style.font_style = gfx::Font::NORMAL;
  /external/chromium_org/chrome/browser/ui/views/sync/
profile_signin_confirmation_dialog_views.cc 181 bold_style.font_style = gfx::Font::BOLD;
  /external/chromium_org/chrome/browser/ui/views/
session_crashed_bubble_view.cc 328 link_style.font_style = gfx::Font::NORMAL;

Completed in 527 milliseconds