Home
last modified time | relevance | path

Searched refs:getTable (Results 1 – 25 of 192) sorted by relevance

12345678

/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/tools/subsetter/
DRenumberingSubsetTest.java80 MaximumProfileTable maxpTable = dstFont.getTable(Tag.maxp); in testNumGlyphs()
83 LocaTable locaTable = dstFont.getTable(Tag.loca); in testNumGlyphs()
88 CMapTable cmapTable = dstFont.getTable(Tag.cmap); in testCmap()
98 HorizontalMetricsTable hmtxTable = dstFont.getTable(Tag.hmtx); in testHorizontalMetrics()
110 HorizontalHeaderTable hheaTable = dstFont.getTable(Tag.hhea); in testHorizontalHeader()
116 PostScriptTable postTable = dstFont.getTable(Tag.post); in testPostScriptTable()
175 assertNull(dstFont.getTable(Tag.GPOS)); in testTablesRemoved()
176 assertNull(dstFont.getTable(Tag.GSUB)); in testTablesRemoved()
177 assertNull(dstFont.getTable(Tag.kern)); in testTablesRemoved()
182 LocaTable locaTable = font.getTable(Tag.loca); in getGlyph()
[all …]
DHintStripTest.java70 MaximumProfileTable maxpTable = dstFont.getTable(Tag.maxp); in testNumGlyphs()
73 LocaTable locaTable = dstFont.getTable(Tag.loca); in testNumGlyphs()
78 CMapTable cmapTable = dstFont.getTable(Tag.cmap); in testCmap()
88 HorizontalMetricsTable hmtxTable = dstFont.getTable(Tag.hmtx); in testHorizontalMetrics()
150 assertNull(dstFont.getTable(Tag.fpgm)); in testTablesRemoved()
151 assertNull(dstFont.getTable(Tag.prep)); in testTablesRemoved()
152 assertNull(dstFont.getTable(Tag.cvt)); in testTablesRemoved()
157 LocaTable locaTable = font.getTable(Tag.loca); in getGlyph()
158 GlyphTable glyfTable = font.getTable(Tag.glyf); in getGlyph()
DBasicSubsetTests.java52 LocaTable srcLocaTable = srcFont.getTable(Tag.loca); in testSubsetGlyphs()
53 GlyphTable srcGlyphTable = srcFont.getTable(Tag.glyf); in testSubsetGlyphs()
95 LocaTable dstLocaTable = dstFont.getTable(Tag.loca); in testSubsetGlyphs()
109 CMapTable cmapTable = dstFont.getTable(Tag.cmap); in testSubsetGlyphs()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sflint/
DSFLint.java100 NameTable name = (NameTable) font.getTable(Tag.name); in lintNameTable()
120 LocaTable loca = (LocaTable) font.getTable(Tag.loca); in lintWindowsClipping()
122 GlyphTable glyphTable = (GlyphTable) font.getTable(Tag.glyf); in lintWindowsClipping()
150 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintWindowsClipping()
161 HorizontalMetricsTable hmtx = (HorizontalMetricsTable) font.getTable(Tag.hmtx); in lintAdvanceWidths()
168 HorizontalHeaderTable hhea = (HorizontalHeaderTable) font.getTable(Tag.hhea); in lintAdvanceWidths()
198 LocaTable loca = (LocaTable) font.getTable(Tag.loca); in lintAllGlyphs()
199 GlyphTable glyphTable = (GlyphTable) font.getTable(Tag.glyf); in lintAllGlyphs()
214 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintOS2Misc()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/fontinfo/
DFontUtils.java87 public static Table getTable(Font font, int tag) { in getTable() method in FontUtils
88 Table table = font.getTable(tag); in getTable()
105 return (CMapTable) getTable(font, Tag.cmap); in getCMapTable()
145 return (LocaTable) getTable(font, Tag.loca); in getLocaTable()
158 return (GlyphTable) getTable(font, Tag.glyf); in getGlyphTable()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DHdmxEncoder.java38 HorizontalDeviceMetricsTable hdmx = sourceFont.getTable(Tag.hdmx); in encode()
39 HorizontalMetricsTable hmtx = sourceFont.getTable(Tag.hmtx); in encode()
40 MaximumProfileTable maxp = sourceFont.getTable(Tag.maxp); in encode()
41 FontHeaderTable head = sourceFont.<FontHeaderTable>getTable(Tag.head); in encode()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfntdump/
DSfntDump.java382 NameTable name = (NameTable) font.getTable(Tag.name); in dumpFont()
390 CMapTable cmapTable = (CMapTable) font.getTable(Tag.cmap); in dumpFont()
401 PostScriptTable post = font.getTable(Tag.post); in dumpFont()
410 EblcTable eblcTable = font.getTable(Tag.EBLC); in dumpFont()
417 Table table = font.getTable(tableTag); in dumpFont()
434 LocaTable locaTable = font.getTable(Tag.loca); in dumpFont()
435 GlyphTable glyphTable = font.getTable(Tag.glyf); in dumpFont()
471 CMapTable cmapTable = font.getTable(Tag.cmap); in dumpChars()
517 LocaTable locaTable = font.getTable(Tag.loca); in countSpecialGlyphs()
518 GlyphTable glyphTable = font.getTable(Tag.glyf); in countSpecialGlyphs()
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/
DCMapEditingTests.java71 CMapTable cmapTable = font.getTable(Tag.cmap); in testRemoveAllButOneCMap()
83 CMapTable cmapTable = font.getTable(Tag.cmap); in testCopyAllCMapToNewFont()
97 CMapTable newCMapTable = font.getTable(Tag.cmap); in testCopyAllCMapToNewFont()
119 CMapTable newCMapTable = newFont.getTable(Tag.cmap); in testCMap4WithNoEditing()
166 CMapTable newCMapTable = newFont.getTable(Tag.cmap); in testCMap4Editing()
DGlyphEditingTests.java76 LocaTable loca = font.getTable(Tag.loca); in testEditLocaTable()
120 LocaTable locaTable = font.getTable(Tag.loca); in testRemoveOneGlyph()
121 GlyphTable glyphTable = font.getTable(Tag.glyf); in testRemoveOneGlyph()
179 LocaTable locaTable = font.getTable(Tag.loca); in testClearAllGlyphs()
180 GlyphTable glyphTable = font.getTable(Tag.glyf); in testClearAllGlyphs()
DOTFBasicEditingTests.java77 FontHeaderTable header = font.getTable(Tag.head); in testBuildersToTables()
96 long originalChecksumAdjustment = ((FontHeaderTable) originalFont.getTable(Tag.head)) in testChecksum()
117 FontHeaderTable header = builtFont.getTable(Tag.head); in testChecksum()
DNameEditingTests.java65 NameTable nameTable = font.getTable(Tag.name); in testChangeOneName()
97 NameTable nameTable = font.getTable(Tag.name); in testModifyNameTableAndRevert()
124 NameTable nameTable = font.getTable(Tag.name); in testRemoveOneName()
155 NameTable nameTable = font.getTable(Tag.name); in testClearAllNamesAndSetOne()
DGlyphTests.java110 CMapTable cmapTable = font.getTable(Tag.cmap); in checkTestSet()
111 LocaTable locaTable = font.getTable(Tag.loca); in checkTestSet()
112 GlyphTable glyphTable = font.getTable(Tag.glyf); in checkTestSet()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DDayPeriodRules.java82 UResource.Table dayPeriodData = value.getTable(); in put()
85 UResource.Table locales = value.getTable(); in put()
91 UResource.Table rules = value.getTable(); in put()
102 UResource.Table ruleSet = value.getTable(); in processRules()
107 UResource.Table periodDefinition = value.getTable(); in processRules()
216 UResource.Table rules = value.getTable(); in put()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DDayPeriodRules.java89 UResource.Table dayPeriodData = value.getTable(); in put()
92 UResource.Table locales = value.getTable(); in put()
98 UResource.Table rules = value.getTable(); in put()
109 UResource.Table ruleSet = value.getTable(); in processRules()
114 UResource.Table periodDefinition = value.getTable(); in processRules()
223 UResource.Table rules = value.getTable(); in put()
DICUCurrencyDisplayInfoProvider.java417 UResource.Table table = value.getTable(); in consumeTopTable()
452 UResource.Table table = value.getTable(); in consumeCurrenciesTable()
524 UResource.Table table = value.getTable(); in consumeCurrenciesVariantTable()
543 UResource.Table table = value.getTable(); in consumeCurrencyPluralsTable()
546 UResource.Table pluralsTable = value.getTable(); in consumeCurrencyPluralsTable()
560 UResource.Table pluralsTable = value.getTable(); in consumeCurrencyPluralsEntry()
589 UResource.Table spacingTypesTable = value.getTable(); in consumeCurrencySpacingTable()
602 UResource.Table patternsTable = value.getTable(); in consumeCurrencySpacingTable()
628 UResource.Table table = value.getTable(); in consumeCurrencyUnitPatternsTable()
/third_party/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
DICUCurrencyDisplayInfoProvider.java413 UResource.Table table = value.getTable(); in consumeTopTable()
448 UResource.Table table = value.getTable(); in consumeCurrenciesTable()
520 UResource.Table table = value.getTable(); in consumeCurrenciesVariantTable()
539 UResource.Table table = value.getTable(); in consumeCurrencyPluralsTable()
542 UResource.Table pluralsTable = value.getTable(); in consumeCurrencyPluralsTable()
556 UResource.Table pluralsTable = value.getTable(); in consumeCurrencyPluralsEntry()
585 UResource.Table spacingTypesTable = value.getTable(); in consumeCurrencySpacingTable()
598 UResource.Table patternsTable = value.getTable(); in consumeCurrencySpacingTable()
624 UResource.Table table = value.getTable(); in consumeCurrencyUnitPatternsTable()
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/
DTestFontUtils.java148 FontHeaderTable head = font.getTable(Tag.head); in buildAndCheckFont()
156 MaximumProfileTable maxp = font.getTable(Tag.maxp); in buildAndCheckFont()
162 FontDataTable bhed = font.getTable(Tag.intValue("bhed")); in buildAndCheckFont()
187 CMapTable cmap = (CMapTable) font.getTable(Tag.cmap); in buildAndCheckFont()
196 NameTable name = (NameTable) font.getTable(Tag.name); in buildAndCheckFont()
/third_party/skia/third_party/externals/icu/source/i18n/
Dunits_data.cpp70 ResourceTable conversionRateTable = value.getTable(status); in put()
74 ResourceTable unitTable = value.getTable(status); in put()
161 ResourceTable unitPreferenceDataTable = value.getTable(status); in put()
164 ResourceTable categoryTable = value.getTable(status); in put()
167 ResourceTable regionTable = value.getTable(status); in put()
201 ResourceTable unitPref = value.getTable(status); in put()
Ddayperiodrules.cpp54 ResourceTable dayPeriodData = value.getTable(errorCode); in put()
59 ResourceTable locales = value.getTable(errorCode); in put()
74 ResourceTable rules = value.getTable(errorCode); in put()
87 ResourceTable ruleSet = value.getTable(errorCode); in processRules()
96 ResourceTable periodDefinition = value.getTable(errorCode); in processRules()
286 ResourceTable rules = value.getTable(errorCode); in put()
/third_party/icu/icu4c/source/i18n/
Ddayperiodrules.cpp54 ResourceTable dayPeriodData = value.getTable(errorCode); in put()
59 ResourceTable locales = value.getTable(errorCode); in put()
74 ResourceTable rules = value.getTable(errorCode); in put()
87 ResourceTable ruleSet = value.getTable(errorCode); in processRules()
96 ResourceTable periodDefinition = value.getTable(errorCode); in processRules()
286 ResourceTable rules = value.getTable(errorCode); in put()
Dunits_data.cpp72 ResourceTable conversionRateTable = value.getTable(status); in put()
76 ResourceTable unitTable = value.getTable(status); in put()
163 ResourceTable unitPreferenceDataTable = value.getTable(status); in put()
166 ResourceTable categoryTable = value.getTable(status); in put()
169 ResourceTable regionTable = value.getTable(status); in put()
203 ResourceTable unitPref = value.getTable(status); in put()
/third_party/node/deps/icu-small/source/i18n/
Ddayperiodrules.cpp54 ResourceTable dayPeriodData = value.getTable(errorCode); in put()
59 ResourceTable locales = value.getTable(errorCode); in put()
74 ResourceTable rules = value.getTable(errorCode); in put()
87 ResourceTable ruleSet = value.getTable(errorCode); in processRules()
96 ResourceTable periodDefinition = value.getTable(errorCode); in processRules()
286 ResourceTable rules = value.getTable(errorCode); in put()
Dunits_data.cpp72 ResourceTable conversionRateTable = value.getTable(status); in put()
76 ResourceTable unitTable = value.getTable(status); in put()
163 ResourceTable unitPreferenceDataTable = value.getTable(status); in put()
166 ResourceTable categoryTable = value.getTable(status); in put()
169 ResourceTable regionTable = value.getTable(status); in put()
203 ResourceTable unitPref = value.getTable(status); in put()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/sfnttool/
DGlyphCoverage.java46 CMapTable cmapTable = font.getTable(Tag.cmap); in getGlyphCoverage()
89 LocaTable locaTable = font.getTable(Tag.loca); in getGlyph()
90 GlyphTable glyfTable = font.getTable(Tag.glyf); in getGlyph()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/
DRenumberingSubsetter.java46 fontBuilder.newTableBuilder(Tag.hhea, font.getTable(Tag.hhea).readFontData()); in setUpTables()
47 fontBuilder.newTableBuilder(Tag.maxp, font.getTable(Tag.maxp).readFontData()); in setUpTables()

12345678