Home
last modified time | relevance | path

Searched refs:Font (Results 1 – 25 of 314) sorted by relevance

12345678910>>...13

/third_party/cups-filters/ppd/
DRicoh-PDF_Printer-PDF.ppd348 *%========== Font ==========
350 *Font AlbertusMT: Standard "(001.000)" Standard ROM
351 *Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
352 *Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
353 *Font AntiqueOlive-Bold: Standard "(501.009)" ExtendedRoman ROM
354 *Font AntiqueOlive-Compact: Standard "(501.008)" ExtendedRoman ROM
355 *Font AntiqueOlive-Italic: Standard "(501.010)" ExtendedRoman ROM
356 *Font AntiqueOlive-Roman: Standard "(501.008)" ExtendedRoman ROM
357 *Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
358 *Font ArialMT: Standard "(501.009)" ExtendedRoman ROM
[all …]
Dpxlmono.ppd161 *Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
162 *Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
163 *Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
164 *Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
165 *Font Bookman-Demi: Standard "(001.004S)" Standard ROM
166 *Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
167 *Font Bookman-Light: Standard "(001.004S)" Standard ROM
168 *Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
169 *Font Courier: Standard "(002.004S)" Standard ROM
170 *Font Courier-Bold: Standard "(002.004S)" Standard ROM
[all …]
Dpxlcolor.ppd168 *Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
169 *Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
170 *Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
171 *Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
172 *Font Bookman-Demi: Standard "(001.004S)" Standard ROM
173 *Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
174 *Font Bookman-Light: Standard "(001.004S)" Standard ROM
175 *Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
176 *Font Courier: Standard "(002.004S)" Standard ROM
177 *Font Courier-Bold: Standard "(002.004S)" Standard ROM
[all …]
DFuji_Xerox-DocuPrint_CM305_df-PDF.ppd213 *Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
214 *Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
215 *Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
216 *Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
217 *Font Bookman-Demi: Standard "(001.004S)" Standard ROM
218 *Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
219 *Font Bookman-Light: Standard "(001.004S)" Standard ROM
220 *Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
221 *Font Courier: Standard "(002.004S)" Standard ROM
222 *Font Courier-Bold: Standard "(002.004S)" Standard ROM
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
DFontFactory.java19 import com.google.typography.font.sfntly.Font.Builder;
127 public Font[] loadFonts(InputStream is) throws IOException { in loadFonts()
133 return new Font[] {loadSingleOTF(pbis) }; in loadFonts()
157 private Font loadSingleOTF(InputStream is) throws IOException { in loadSingleOTF()
161 private Font[] loadCollection(InputStream is) throws IOException { in loadCollection()
162 Font.Builder[] builders = loadCollectionForBuilding(is); in loadCollection()
163 Font[] fonts = new Font[builders.length]; in loadCollection()
170 private Font.Builder loadSingleOTFForBuilding(InputStream is) throws IOException { in loadSingleOTFForBuilding()
188 private Font.Builder[] loadCollectionForBuilding(InputStream is) throws IOException { in loadCollectionForBuilding()
215 public Font[] loadFonts(byte[] b) throws IOException { in loadFonts()
[all …]
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DDemoUtility.java14 import java.awt.Font;
27 public static final Font titleFont = new Font("TimesRoman",Font.BOLD,18);
28 public static final Font labelFont = new Font("TimesRoman",Font.BOLD,14);
29 public static final Font choiceFont = new Font("Helvetica",Font.BOLD,12);
30 public static final Font editFont = new Font("Helvetica",Font.PLAIN,14);
31 public static final Font creditFont = new Font("Helvetica",Font.PLAIN,10);
32 public static final Font numberFont = new Font("sansserif", Font.PLAIN, 14);
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
Dfont.cc62 Font::~Font() {} in ~Font()
64 bool Font::HasTable(int32_t tag) const { in HasTable()
68 Table* Font::GetTable(int32_t tag) { in GetTable()
74 const TableMap* Font::GetTableMap() { in GetTableMap()
78 void Font::Serialize(OutputStream* os, std::vector<int32_t>* table_ordering) { in Serialize()
90 Font::Font(int32_t sfnt_version, std::vector<uint8_t>* digest) in Font() function in sfntly::Font
97 void Font::BuildTableHeadersForSerialization(std::vector<int32_t>* table_ordering, in BuildTableHeadersForSerialization()
119 void Font::SerializeHeader(FontOutputStream* fos, in SerializeHeader()
144 void Font::SerializeTables(FontOutputStream* fos, in SerializeTables()
167 void Font::GenerateTableOrdering(std::vector<int32_t>* default_table_ordering, in GenerateTableOrdering()
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/fontinfo/
DFontUtils.java19 import com.google.typography.font.sfntly.Font;
48 public static Font[] getFonts(String fontFile) throws IOException { in getFonts()
61 public static Font[] getFonts(InputStream is) throws IOException { in getFonts()
64 Font[] fonts = null; in getFonts()
87 public static Table getTable(Font font, int tag) { in getTable()
104 public static CMapTable getCMapTable(Font font) { in getCMapTable()
117 public static CMap getUCSCMap(Font font) { in getUCSCMap()
123 Font.PlatformId.Windows.value(), Font.WindowsEncodingId.UnicodeUCS4.value()); in getUCSCMap()
126 Font.PlatformId.Windows.value(), Font.WindowsEncodingId.UnicodeUCS2.value()); in getUCSCMap()
144 public static LocaTable getLocaTable(Font font) { in getLocaTable()
[all …]
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/
DTestFontUtils.java19 import com.google.typography.font.sfntly.Font;
20 import com.google.typography.font.sfntly.Font.Builder;
49 Logger.getLogger(Font.class.getCanonicalName());
60 public static Font[] loadFont(File file) throws IOException { in loadFont()
72 public static Font[] loadFont(File file, boolean fingerprint) throws IOException { in loadFont()
94 public static Font[] loadFont(File file, byte[]... expectedFingerprints) throws IOException { in loadFont()
95 Font[] fonts = loadFont(file, true); in loadFont()
112 public static Font[] loadFontUsingByteArray(File file) throws IOException { in loadFontUsingByteArray()
124 public static Font[] loadFontUsingByteArray(File file, boolean fingerprint) throws IOException { in loadFontUsingByteArray()
138 Font[] buildAndCheckFont(FontFactory fontFactory, InputStream is, int debug) throws IOException { in buildAndCheckFont()
[all …]
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/
DNameEditingTests.java19 import com.google.typography.font.sfntly.Font.PlatformId;
20 import com.google.typography.font.sfntly.Font.WindowsEncodingId;
47 Font.Builder fontBuilder = TestFontUtils.builderForFontFile(fontFile); in testChangeOneName()
57 Font font = fontBuilder.build(); in testChangeOneName()
61 Font[] serializedFontArray = TestFontUtils.loadFont(serializedFontFile); in testChangeOneName()
76 Font.Builder fontBuilder = TestFontUtils.builderForFontFile(fontFile); in testModifyNameTableAndRevert()
89 Font font = fontBuilder.build(); in testModifyNameTableAndRevert()
93 Font[] serializedFontArray = TestFontUtils.loadFont(serializedFontFile); in testModifyNameTableAndRevert()
105 Font.Builder fontBuilder = TestFontUtils.builderForFontFile(fontFile); in testRemoveOneName()
116 Font font = fontBuilder.build(); in testRemoveOneName()
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
Dstats.h25 class Font; variable
31 int32_t TotalFontSize(Font* font);
33 double TableSizePercent(Font* font, int32_t tag);
35 void PrintComparison(FILE* out, Font* font, Font* new_font);
37 void PrintStats(FILE* out, Font* font);
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/amaticsc/
DOFL.txt2 with Reserved Font Names "Amatic" "Amatic SC"
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/angkor/
DOFL.txt2 with Reserved Font Name Angkor.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/content/
DOFL.txt2 with Reserved Font Name Content.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/abel/
DOFL.txt2 with Reserved Font Name Battambang.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/freehand/
DOFL.txt2 with Reserved Font Name Freehand.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/arvo/
DOFL.txt2 with Reserved Font Name Arvo.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/deliusunicase/
DOFL.txt3 with Reserved Font Names "Delia", "Delia Unicase", "Delius"
6 This Font Software is licensed under the SIL Open Font License, Version 1.1.
16 The goals of the Open Font License (OFL) are to stimulate worldwide
32 "Font Software" refers to the set of files released by the Copyright
36 "Reserved Font Name" refers to any names specified as such after the
39 "Original Version" refers to the collection of Font Software components as
44 Original Version, by changing formats or by porting the Font Software to a
48 writer or other person who contributed to the Font Software.
52 a copy of the Font Software, to use, study, copy, merge, embed, modify,
53 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/bayon/
DOFL.txt2 with Reserved Font Name Bayon.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/coda/
DOFL.txt2 with Reserved Font Name "Coda" and "Coda Caption".
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/carme/
DOFL.txt2 with Reserved Font Name Battambang.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/blackopsone/
DOFL.txt2 with Reserved Font Names "Black Ops" and "Black Ops One".
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/expletussans/
DOFL.txt2 with Reserved Font Name "Expletus Sans".
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/allerta/
DOFL.txt2 with Reserved Font Name Allerta.
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/data/fonts/crimson/
DOFL.txt2 with Reserved Font Name "Crimson" and "Crimson Text".
4 This Font Software is licensed under the SIL Open Font License, Version 1.1.
14 The goals of the Open Font License (OFL) are to stimulate worldwide
30 "Font Software" refers to the set of files released by the Copyright
34 "Reserved Font Name" refers to any names specified as such after the
37 "Original Version" refers to the collection of Font Software components as
42 Original Version, by changing formats or by porting the Font Software to a
46 writer or other person who contributed to the Font Software.
50 a copy of the Font Software, to use, study, copy, merge, embed, modify,
51 redistribute, and sell modified and unmodified copies of the Font
[all …]

12345678910>>...13