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

  /external/chromium_org/ui/gfx/
font_list.cc 21 // Parses font description into |font_names|, |font_style| and |font_size|.
24 int* font_style,
38 *font_style = 0;
45 *font_style |= gfx::Font::BOLD;
47 *font_style |= gfx::Font::ITALIC;
54 std::string FontStyleAndSizeToString(int font_style, int font_size) {
56 if (font_style & gfx::Font::BOLD)
58 if (font_style & gfx::Font::ITALIC)
65 // Returns font description from |font_names|, |font_style|, and |font_size|.
67 int font_style,
    [all...]
platform_font_mac.mm 23 int font_style) {
25 if (font_style & Font::BOLD)
27 if (font_style & Font::ITALIC)
146 int font_style)
147 : native_font_([NSFontWithSpec(font_name, font_size, font_style) retain]),
150 font_style_(font_style) {
font_list.h 46 int font_style,
68 // Returns a new FontList with the given |font_style| flags.
69 FontList DeriveFontList(int font_style) const;
81 // |font_style| specifies the new style, which is a bitmask of the values:
84 int font_style) const;
platform_font_mac.h 36 PlatformFontMac(const std::string& font_name, int font_size, int font_style);
platform_font_win.cc 56 // Sets style properties on |font_info| based on |font_style|.
57 void SetLogFontStyle(int font_style, LOGFONT* font_info) {
58 font_info->lfUnderline = (font_style & gfx::Font::UNDERLINE) != 0;
59 font_info->lfItalic = (font_style & gfx::Font::ITALIC) != 0;
60 font_info->lfWeight = (font_style & gfx::Font::BOLD) ? FW_BOLD : FW_NORMAL;
render_text_mac.cc 171 renderer.SetFontFamilyWithStyle(run.font_name, run.font_style);
183 font_style(Font::NORMAL),
318 run->font_style |= Font::BOLD;
320 run->font_style |= Font::ITALIC;
render_text_mac.h 60 int font_style; member in struct:gfx::RenderTextMac::TextRun
canvas_skia.cc 151 const int font_style = font_list.GetFontStyle(); local
152 render_text->SetStyle(BOLD, (font_style & Font::BOLD) != 0);
153 render_text->SetStyle(ITALIC, (font_style & Font::ITALIC) != 0);
154 render_text->SetStyle(UNDERLINE, (font_style & Font::UNDERLINE) != 0);
render_text_win.h 31 int font_style; member in struct:gfx::internal::TextRun
font_list_unittest.cc 46 int font_style = Font::BOLD | Font::ITALIC; local
48 FontList font_list = FontList(font_names, font_style, font_size);
render_text_win.cc 99 // XP) and |font_style| if it is not the case already. Only considers bold and
103 int font_style,
106 const int target_style = (font_style & kStyleMask);
271 : font_style(0),
851 renderer.SetFontFamilyWithStyle(run->font.GetFontName(), run->font_style);
    [all...]
render_text_pango.cc 452 const int font_style = (style.style(BOLD) ? Font::BOLD : 0) | local
454 renderer.SetFontFamilyWithStyle(family_name, font_style);
render_text.cc 76 SkTypeface::Style ConvertFontStyleToSkiaTypefaceStyle(int font_style) {
78 skia_style |= (font_style & gfx::Font::BOLD) ? SkTypeface::kBold : 0;
79 skia_style |= (font_style & gfx::Font::ITALIC) ? SkTypeface::kItalic : 0;
    [all...]
render_text.h 56 void SetFontFamilyWithStyle(const std::string& family, int font_style);
  /external/chromium_org/ui/views/controls/
styled_label.cc 36 link->SetUnderline((style_info.font_style & gfx::Font::UNDERLINE) != 0);
51 if (style_info.font_style != gfx::Font::NORMAL)
52 result->SetFont(result->font().DeriveFont(0, style_info.font_style));
60 : font_style(gfx::Font::NORMAL),
190 0, style_ranges.top().style_info.font_style);
styled_label.h 41 int font_style; member in struct:views::StyledLabel::RangeStyleInfo
styled_label_unittest.cc 189 style_info.font_style = gfx::Font::UNDERLINE;
211 style_info.font_style = gfx::Font::BOLD;
  /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/chrome/browser/ui/views/bookmarks/
bookmark_sync_promo_view.cc 55 link_style.font_style = gfx::Font::NORMAL;
  /external/chromium_org/chrome/browser/ui/cocoa/
profile_signin_confirmation_view_controller.mm 88 const ui::ResourceBundle::FontStyle& font_style) {
92 font_style).GetNativeFont();
111 const ui::ResourceBundle::FontStyle& font_style) {
116 font_style,
  /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/sync/
profile_signin_confirmation_dialog_views.cc 174 bold_style.font_style = gfx::Font::BOLD;

Completed in 731 milliseconds