HomeSort by relevance Sort by last modified time
    Searched full:font (Results 276 - 300 of 4677) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLFontElement03.html 5 <TITLE>NIST DOM HTML Test - Font</TITLE>
8 <FONT COLOR="#000000" FACE="arial,helvetica" SIZE="4">Test Tables</FONT>
  /external/webkit/LayoutTests/fast/encoding/
invalid-UTF-8-2.html 5 /* Force font fallback on Windows to match Mac OS X */
6 @font-face {
7 font-family: 'times';
invalid-UTF-8.html 5 /* Force font fallback on Windows to match Mac OS X */
6 @font-face {
7 font-family: 'times';
  /packages/apps/Settings/assets/html/el/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /packages/apps/Settings/assets/html/ja/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /packages/apps/Settings/assets/html/ko/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /packages/apps/Settings/assets/html/ru/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /packages/apps/Settings/assets/html/zh_cn/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /packages/apps/Settings/assets/html/zh_tw/
tethering_usb_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
tethering_wifi_help.html 6 font-size: 14 px;
9 font-size: 16px;
15 font-size: 16px;
  /external/skia/include/pdf/
SkPDFFont.h 28 A PDF Object class representing a font. The font may have resources
29 attached to it in order to embed the font. SkPDFFonts are canonicalized
30 so that resource deduplication will only include one copy of a font.
45 /** Returns the font type represented in this font. For Type0 fonts,
46 * returns the type of the decendant font.
50 /** Return true if this font has an encoding for the passed glyph id.
54 /** Returns true if this font encoding supports glyph IDs above 255.
58 /** Convert (in place) the input glyph IDs into the font encoding. If th
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
methods_index_additions.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
48 Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
    [all...]
methods_index_all.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
48 Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#B"><font size="-2">B</font></a>
53 <a href="#C"><font size="-2">C</font></a>
54 <a href="#D"><font size="-2">D</font></a>
    [all...]
methods_index_removals.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
48 Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
51 <br><font size="+2">D</font>&nbsp;
52 <a href="#F"><font size="-2">F</font></a>
53 <a href="#S"><font size="-2">S</font></a>
54 <a href="#topheader"><font size="-2">TOP</font></a
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_overview_title.cc 26 using gfx::Font;
41 // Finds a font based on the base font that is no taller than the
42 // given value (well, unless the font at size 1 is taller than the
44 Font FindFontThisHigh(int pixels, Font base) {
45 Font font(base.GetFontName(), 1);
46 Font last_font = font;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontPlatformData.h 40 : size(font.pixelSize())
41 , bold(font.bold())
51 FontPlatformDataPrivate(const QFont& font)
52 : font(font)
53 , size(font.pixelSize())
54 , bold(font.bold())
62 QFont font; member in class:WebCore::FontPlatformDataPrivate
74 FontPlatformData(const QFont& font)
75 : m_data(adoptRef(new FontPlatformDataPrivate(font)))
90 QFont font() const function in class:WebCore::FontPlatformData
    [all...]
FontPlatformDataQt.cpp 66 QFont& font = m_data->font; local
68 font.setFamily(familyName);
69 font.setPixelSize(qRound(requestedSize));
70 font.setItalic(description.italic());
71 font.setWeight(toQFontWeight(description.weight()));
72 font.setWordSpacing(wordSpacing);
73 font.setLetterSpacing(QFont::AbsoluteSpacing, letterSpacing);
75 font.setCapitalization(smallCaps ? QFont::SmallCaps : QFont::MixedCase);
76 font.setStyleStrategy(QFont::ForceIntegerMetrics)
    [all...]
  /external/guava/javadoc/com/google/common/collect/class-use/
ComputationException.html 40 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
41 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/collect/ComputationException.html" title="class in com.google.common.collect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
43 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
44 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/12/changes/
classes_index_additions.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
48 Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
51 <br><font size="+2">F</font>&nbsp;
52 <a href="#L"><font size="-2">L</font></a>
53 <a href="#V"><font size="-2">V</font></a>
54 <a href="#topheader"><font size="-2">TOP</font></a
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
constructors_index_additions.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
48 Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
51 <br><font size="+2">A</font>&nbsp;
52 <a href="#G"><font size="-2">G</font></a>
53 <a href="#S"><font size="-2">S</font></a>
54 <a href="#topheader"><font size="-2">TOP</font></a
    [all...]

Completed in 369 milliseconds

<<11121314151617181920>>