HomeSort by relevance Sort by last modified time
    Searched defs:italic (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_linux.cpp 151 bool italic = fStyles[index]->isItalic(); variable
154 italic ? SkFontStyle::kItalic_Slant : SkFontStyle::kUpright_Slant);
180 bool italic = fStyles[i]->isItalic();
184 italic ? SkFontStyle::kItalic_Slant
SkFontMgr_win_dw.cpp 389 //NOTE: .ttc and fake bold/italic will end up here.
634 DWRITE_FONT_STYLE italic = (styleBits & SkTypeface::kItalic) local
637 HRNM(fontFamily->GetFirstMatchingFont(weight, stretch, italic, &font),
  /external/chromium_org/ppapi/cpp/dev/
font_dev.h 52 bool italic() const { return PP_ToBool(pp_font_description_.italic); } function in class:pp::FontDescription_Dev
53 void set_italic(bool i) { pp_font_description_.italic = PP_FromBool(i); }
  /external/chromium_org/ppapi/cpp/trusted/
browser_font_trusted.h 58 bool italic() const { return PP_ToBool(pp_font_description_.italic); } function in class:pp::BrowserFontDescription
59 void set_italic(bool i) { pp_font_description_.italic = PP_FromBool(i); }
  /external/chromium_org/content/common/
child_process_sandbox_support_impl_linux.cc 76 const bool italic = size_and_style & 2; local
85 request.WriteBool(italic);
117 bool italic,
126 request.WriteBool(italic);
  /external/chromium_org/third_party/WebKit/public/web/
WebFontDescription.h 75 , italic(false)
87 bool italic; member in struct:blink::WebFontDescription
  /external/chromium_org/third_party/skia/src/fonts/
SkFontMgr_indirect.cpp 66 // Italic/Oblique has the next highest priority.
67 // If italic requested and there is some italic font, use it.
69 // If italic requested and there is some oblique font, use it.
70 // If oblique requested and there is some italic font, use it.
106 // CSS style (italic/oblique)
107 // Being italic trumps all valid weights which are not italic.
108 // Note that newer specs differentiate between italic and oblique.
290 bool italic = SkToBool(styleBits & SkTypeface::kItalic) local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
sandbox_ipc_linux.cc 293 bool bold, italic; local
298 !pickle.ReadBool(&iter, &italic) ||
309 (bold ? gfx::Font::BOLD : 0) | (italic ? gfx::Font::ITALIC : 0);
  /external/chromium_org/ppapi/c/dev/
ppb_font_dev.h 107 PP_Bool italic; member in struct:PP_FontDescription_Dev
  /external/chromium_org/ppapi/c/trusted/
ppb_browser_font_trusted.h 109 PP_Bool italic; member in struct:PP_BrowserFont_Trusted_Description
  /external/chromium_org/ppapi/proxy/
serialized_structs.h 56 PP_Bool italic; member in struct:ppapi::proxy::SerializedFontDescription
  /external/chromium_org/third_party/freetype/include/freetype/
ftwinfnt.h 195 FT_Byte italic; member in struct:FT_WinFNT_HeaderRec_
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 146 bool italic = s & SkTypeface::kItalic; local
150 italic ? SkFontStyle::kItalic_Slant
  /external/freetype/include/
ftwinfnt.h 196 FT_Byte italic; member in struct:FT_WinFNT_HeaderRec_
  /external/chromium_org/ui/gfx/
render_text_pango.cc 356 // Only split text runs as needed for bold and italic font styles changes.
358 BreakList<bool>::const_iterator italic = styles()[ITALIC].breaks().begin(); local
360 italic != styles()[ITALIC].breaks().end()) {
362 (italic->second ? Font::ITALIC : 0);
364 const size_t italic_end = styles()[ITALIC].GetRange(italic).end();
375 TextIndexToLayoutIndex(std::max(bold->first, italic->first))
    [all...]
render_text_unittest.cc 163 render_text->ApplyStyle(ITALIC, true, Range(0, 2));
164 render_text->ApplyStyle(ITALIC, true, Range(3, 6));
165 render_text->ApplyStyle(ITALIC, true, Range(7, text_length));
172 EXPECT_TRUE(render_text->styles()[ITALIC].EqualsForTesting(expected_italic));
177 EXPECT_TRUE(render_text->styles()[ITALIC].EqualsForTesting(expected_italic));
178 render_text->ApplyStyle(ITALIC, false, Range(2, 4));
180 EXPECT_TRUE(render_text->styles()[ITALIC].EqualsForTesting(expected_italic));
181 render_text->ApplyStyle(ITALIC, false, Range(0, 1));
184 EXPECT_TRUE(render_text->styles()[ITALIC].EqualsForTesting(expected_italic));
185 render_text->ApplyStyle(ITALIC, true, Range(2, 4))
218 bool italic; member in struct:gfx::__anon21501
242 const bool italic = desc.find(ASCIIToUTF16("Italic")) != std::string::npos; local
    [all...]
  /external/chromium_org/ppapi/c/private/
ppb_pdf.h 84 bool italic; member in struct:PP_PrivateFontFileDescription
  /external/libvterm/src/
screen.c 20 unsigned int italic : 1; member in struct:__anon4577
396 screen->pen.italic = val->boolean;
709 cell->attrs.italic = intcell->pen.italic;
743 intcell->pen.italic = cell->attrs.italic;
827 if((attrs & VTERM_ATTR_ITALIC_MASK) && (a->pen.italic != b->pen.italic))
vterm_internal.h 23 unsigned int italic:1; member in struct:VTermPen
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 340 Font italic; local
346 italic = this.boldItalicFont;
355 italic = this.italicFont;
368 Font italic2 = italic;
442 // set the text in italic
469 // set the text in italic
486 // set the text in italic
553 fdItalic.setStyle(SWT.ITALIC);
559 fdBoldItalic.setStyle(SWT.BOLD | SWT.ITALIC);
  /external/libvterm/include/
vterm.h 215 unsigned int italic : 1; member in struct:__anon4567::__anon4568
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 135 bool italic; member in struct:chrome_pdf::__anon14480::PDFFontSubstitution
178 {"Times-Italic", "Times New Roman", false, true},
204 void* MapFont(struct _FPDF_SYSFONTINFO*, int weight, int italic,
232 if (PDFFontSubstitutions[i].italic)
244 description.set_italic(italic > 0);
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npapi_extensions.h 667 bool italic; member in struct:_NPFontDescription
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jai.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 

Completed in 1402 milliseconds

1 2