HomeSort by relevance Sort by last modified time
    Searched full:italic (Results 51 - 75 of 687) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/templates/docs/
prettify.css 18 .com{color:#999;font-style:italic}
  /external/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.
280 bool italic = SkToBool(styleBits & SkTypeface::kItalic) local
    [all...]
  /frameworks/base/data/fonts/
fonts.xml 22 <font weight="100" style="italic">Roboto-ThinItalic.ttf</font>
24 <font weight="300" style="italic">Roboto-LightItalic.ttf</font>
26 <font weight="400" style="italic">Roboto-Italic.ttf</font>
28 <font weight="500" style="italic">Roboto-MediumItalic.ttf</font>
30 <font weight="900" style="italic">Roboto-BlackItalic.ttf</font>
32 <font weight="700" style="italic">Roboto-BoldItalic.ttf</font>
47 <font weight="300" style="italic">RobotoCondensed-LightItalic.ttf</font>
49 <font weight="400" style="italic">RobotoCondensed-Italic.ttf</font
    [all...]
vendor_fonts.xml 17 provided in the order of the styles supported for that family: regular, bold, italic, and
18 bold-italic. Only providing one font means that all styles will be rendered with that font.
  /external/skia/tools/
create_test_font.cpp 40 {"Courier New", SkTypeface::kItalic, "Courier New", "Courier New Italic.ttf",
42 {"Courier New", SkTypeface::kBoldItalic, "Courier New", "Courier New Bold Italic.ttf",
48 {"Helvetica", SkTypeface::kItalic, "Liberation Sans", "LiberationSans-Italic.ttf",
58 {"Liberation Sans", SkTypeface::kItalic, "Liberation Sans", "LiberationSans-Italic.ttf",
66 {"monospace", SkTypeface::kItalic, "Courier New", "Courier New Italic.ttf",
68 {"monospace", SkTypeface::kBoldItalic, "Courier New", "Courier New Bold Italic.ttf",
76 {"sans-serif", SkTypeface::kItalic, "Liberation Sans", "LiberationSans-Italic.ttf",
84 {"serif", SkTypeface::kItalic, "Times New Roman", "Times New Roman Italic.ttf",
86 {"serif", SkTypeface::kBoldItalic, "Times New Roman", "Times New Roman Bold Italic.ttf",
92 {"Times", SkTypeface::kItalic, "Times New Roman", "Times New Roman Italic.ttf"
    [all...]
  /external/skia/site/dev/testing/
fonts.md 41 * Courier New Bold Italic.ttf
43 * Courier New Italic.ttf
47 * LiberationSans-Italic.ttf
51 * Times New Roman Bold Italic.ttf
53 * Times New Roman Italic.ttf
  /frameworks/minikin/include/minikin/
FontFamily.h 68 FontStyle(int weight = 4, bool italic = false) {
69 bits = (weight & kWeightMask) | (italic ? kItalicMask : 0);
71 FontStyle(FontLanguage lang, int variant = 0, int weight = 4, bool italic = false) {
72 bits = (weight & kWeightMask) | (italic ? kItalicMask : 0)
102 // attributes representing transforms (fake bold, fake italic) to match styles
  /external/skia/resources/android_fonts/pre_v17/
fallback_fonts.xml 9 handle (the order is: regular, bold, italic, and bold-italic). The order in which the
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 79 public static final int ITALIC = 2;
99 /** Returns true if getStyle() has the ITALIC bit set. */
101 return (mStyle & ITALIC) != 0;
111 * @param style The style (normal, bold, italic) of the typeface.
112 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
129 * @param style The style (normal, bold, italic) of the typeface.
130 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
347 create((String) null, Typeface.ITALIC),
  /frameworks/base/tests/BiDiTests/res/values/
strings.xml 39 <string name="italic_text">Italic String</string>
41 <string name="bold_italic_text">Bold Italic String</string>
  /cts/apps/CtsVerifier/res/layout/
snsr_message.xml 17 android:textStyle="italic"
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 69 typeface = createTypeface(Typeface.ITALIC);
71 assertEquals(Typeface.ITALIC, typeface.getStyle());
96 typeface = Typeface.create(INVALID, Typeface.ITALIC);
110 typeface = Typeface.defaultFromStyle(Typeface.ITALIC);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
_index.html 7 <dd>Demonstrates loading styled text (bold, italic) defined in a resource file. </dd>
  /development/samples/SkeletonApp/res/values/
styles.xml 33 <item name="android:textStyle">italic</item>
  /external/nanopb-c/docs/
lsr.css 75 font-style: italic;
144 font-style: italic;
198 font-style: italic;
238 font-style: italic;
  /external/skia/include/core/
SkFontStyle.h 46 /** oldStyle means the style-bits in SkTypeface::Style: bold=1, italic=2 */
  /frameworks/base/core/jni/android/graphics/
MinikinSkia.h 49 // set typeface and fake bold/italic parameters
  /frameworks/base/rs/java/android/renderscript/
Font.java 35 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
88 ITALIC,
108 sansFamily.mItalicFileName = "Roboto-Italic.ttf";
116 serifFamily.mItalicFileName = "NotoSerif-Italic.ttf";
141 case ITALIC:
  /frameworks/minikin/libs/minikin/
FontFamily.cpp 113 bool italic; local
114 if (analyzeStyle(os2Data.get(), os2Size, &weight, &italic)) {
115 //ALOGD("analyzed weight = %d, italic = %s", weight, italic ? "true" : "false");
116 FontStyle style(weight, italic);
  /frameworks/base/core/java/android/text/
Html.java 279 if ((s & Typeface.ITALIC) != 0) {
369 if ((s & Typeface.ITALIC) != 0) {
495 start(mSpannableStringBuilder, new Italic());
497 start(mSpannableStringBuilder, new Italic());
499 start(mSpannableStringBuilder, new Italic());
501 start(mSpannableStringBuilder, new Italic());
545 end(mSpannableStringBuilder, Italic.class, new StyleSpan(Typeface.ITALIC));
547 end(mSpannableStringBuilder, Italic.class, new StyleSpan(Typeface.ITALIC));
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsr250-api.license 16 1.1. <span style="font-style: italic;">Contributor</span> means each
21 1.2. <span style="font-style: italic;">Contributor Version</span>
27 1.3. <span style="font-style: italic;">Covered Software</span> means
34 1.4. <span style="font-style: italic;">Executable</span> means the
39 1.5. <span style="font-style: italic;">Initial Developer</span> means
44 1.6. <span style="font-style: italic;">Larger Work</span> means a work
49 1.7. <span style="font-style: italic;">License</span> means this
53 1.8. <span style="font-style: italic;">Licensable</span> means having
59 1.9. <span style="font-style: italic;">Modifications</span> means the
71 1.10. <span style="font-style: italic;">Original Software</span> mean
    [all...]
  /external/libvterm/src/
pen.c 150 state->pen.italic = 0; setpenattr_bool(state, VTERM_ATTR_ITALIC, 0);
172 setpenattr_bool(state, VTERM_ATTR_ITALIC, state->pen.italic);
236 case 3: // Italic on
237 state->pen.italic = 1;
277 case 23: // Italic and Gothic (currently unsupported) off
278 state->pen.italic = 0;
379 if(state->pen.italic)
435 val->boolean = state->pen.italic;
  /external/skia/resources/android_fonts/v17/
fallback_fonts-ja.xml 9 handle (the order is: regular, bold, italic, and bold-italic). The order in which the
  /ndk/docs/
Start_Here.html 88 font-style: italic;
102 font-style: italic;
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/res/layout/
main_activity.xml 39 android:textStyle="italic"

Completed in 340 milliseconds

1 23 4 5 6 7 8 91011>>