Home
last modified time | relevance | path

Searched refs:subtables (Results 1 – 23 of 23) sorted by relevance

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DLookup.java20 private LookupSubtable[] subtables; field in Lookup
55 subtables = new LookupSubtable[10]; in Lookup()
61 if (subtableCount >= subtables.length) { in addSubtable()
62 LookupSubtable[] newSubtables = new LookupSubtable[subtables.length + 5]; in addSubtable()
64 System.arraycopy(subtables, 0, newSubtables, 0, subtables.length); in addSubtable()
65 subtables = newSubtables; in addSubtable()
68 subtables[subtableCount] = subtable; in addSubtable()
88 subtables[i].writeLookupSubtable(writer); in writeLookup()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DDistanceTable.java126 rootNode.subtables.values().forEach(langNode -> { in pruneDefaultDistances()
127 langNode.subtables.values().forEach(scriptNode -> { in pruneDefaultDistances()
128 if (scriptNode.subtables.size() == 1) { in pruneDefaultDistances()
137 scriptNode.subtables.clear(); in pruneDefaultDistances()
143 if (langNode.subtables.size() == 1) { in pruneDefaultDistances()
151 if (defScriptNode.subtables.isEmpty()) { in pruneDefaultDistances()
153 langNode.subtables.clear(); in pruneDefaultDistances()
164 checkState(rootNode.getAnyNode().subtables.isEmpty(), in pruneDefaultDistances()
166 rootNode.subtables.rowMap().remove(ANY); in pruneDefaultDistances()
198 private final Table<String, String, Node> subtables = TreeBasedTable.create(); field in DistanceTable.Node
[all …]
/external/fonttools/Lib/fontTools/otlLib/
Dbuilder.py64 def buildLookup(subtables, flags=0, markFilterSet=None): argument
94 if subtables is None:
96 subtables = [st for st in subtables if st is not None]
97 if not subtables:
100 t.LookupType == subtables[0].LookupType for t in subtables
102 [t.LookupType for t in subtables]
105 self.LookupType = subtables[0].LookupType
107 self.SubTable = subtables
150 def buildLookup_(self, subtables): argument
151 return buildLookup(subtables, self.lookupflag, self.markFilterSet)
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/tool/locale/
DLocaleDistanceBuilder.java184 final Map<String, Map<String, DistanceTable>> subtables; field in LocaleDistanceBuilder.DistanceTable
188 subtables = new TreeMap<>(); in DistanceTable()
198 && subtables.equals(other.subtables)); in equals()
202 return nodeDistance ^ subtables.hashCode(); in hashCode()
208 Map<String, DistanceTable> sub2 = subtables.get(desired); in getDistance()
210 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
217 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
233 return subtables.get(ANY).get(ANY); in getAnyAnyNode()
237 for (Map.Entry<String, Map<String, DistanceTable>> e1 : other.subtables.entrySet()) { in copy()
246 Map<String, DistanceTable> sub2 = subtables.get(desired); in addSubtable()
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/
DLocaleDistanceBuilder.java181 final Map<String, Map<String, DistanceTable>> subtables; field in LocaleDistanceBuilder.DistanceTable
185 subtables = new TreeMap<>(); in DistanceTable()
195 && subtables.equals(other.subtables)); in equals()
199 return nodeDistance ^ subtables.hashCode(); in hashCode()
205 Map<String, DistanceTable> sub2 = subtables.get(desired); in getDistance()
207 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
214 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
230 return subtables.get(ANY).get(ANY); in getAnyAnyNode()
234 for (Map.Entry<String, Map<String, DistanceTable>> e1 : other.subtables.entrySet()) { in copy()
243 Map<String, DistanceTable> sub2 = subtables.get(desired); in addSubtable()
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/
DXLocaleDistance.java319 … (StringDistanceNode) ((StringDistanceTable) languageDesired2Supported).subtables.get(ANY).get(ANY… in XLocaleDistance()
321 …(StringDistanceNode) ((StringDistanceTable) languageNode.distanceTable).subtables.get(ANY).get(ANY… in XLocaleDistance()
323 …DistanceNode regionNode = ((StringDistanceTable) scriptNode.distanceTable).subtables.get(ANY).get(… in XLocaleDistance()
336 final Map<String, Map<String, DistanceNode>> subtables; field in XLocaleDistance.StringDistanceTable
339 subtables = tables; in StringDistanceTable()
348 return subtables.isEmpty(); in isEmpty()
357 return subtables.equals(other.subtables); in equals()
362 return subtables.hashCode(); in hashCode()
368 Map<String, DistanceNode> sub2 = subtables.get(desired); in getDistance()
370 sub2 = subtables.get(ANY); // <*, supported> in getDistance()
[all …]
DIntDistanceNode.java66 for (Entry<String, Map<String, DistanceNode>> e1 : source.subtables.entrySet()) { in loadIds()
85 for (Entry<String, Map<String, DistanceNode>> e1 : source.subtables.entrySet()) { in IntDistanceTable()
/external/mesa3d/src/intel/tools/
Daub_write.c73 for (unsigned i = 0; i < ARRAY_SIZE(table->subtables); i++) { in aub_ppgtt_table_finish()
74 if (table->subtables[i]) { in aub_ppgtt_table_finish()
75 aub_ppgtt_table_finish(table->subtables[i], level - 1); in aub_ppgtt_table_finish()
76 free(table->subtables[i]); in aub_ppgtt_table_finish()
249 if (!table->subtables[i]) { in populate_ppgtt_table()
253 table->subtables[i] = in populate_ppgtt_table()
258 i, (uint64_t)table->subtables[i]); in populate_ppgtt_table()
261 table->subtables[i] = in populate_ppgtt_table()
263 table->subtables[i]->phys_addr = in populate_ppgtt_table()
268 i, table->subtables[i]->phys_addr); in populate_ppgtt_table()
[all …]
Daub_write.h65 struct aub_ppgtt_table *subtables[512]; member
/external/fonttools/Lib/fontTools/varLib/
Dmerger.py211 def _Lookup_SinglePos_get_effective_value(subtables, glyph): argument
212 for self in subtables:
226 def _Lookup_PairPos_get_effective_value_pair(subtables, firstGlyph, secondGlyph): argument
227 for self in subtables:
502 for l,subtables in zip(lst,merger.lookup_subtables):
504 assert l == subtables[-1]
775 subtables = merger.lookup_subtables = [l.SubTable for l in lst]
778 for l,sts in list(zip(lst,subtables))+[(self,self.SubTable)]:
801subtables = merger.lookup_subtables = [_Lookup_PairPos_subtables_canonicalize(st, merger.font) for…
805 numSubtables = [len(st) for st in subtables]
[all …]
/external/fonttools/Tests/otlLib/
Dbuilder_test.py874 subtables = builder.buildPairPosGlyphs(
877 assert sum([getXML(t.toXML) for t in subtables], []) == [
960 subtables = builder.buildSinglePos(
971 assert sum([getXML(t.toXML) for t in subtables], []) == [
998 subtables = builder.buildSinglePos(
1001 assert sum([getXML(t.toXML) for t in subtables], []) == [
/external/fonttools/Doc/source/otlLib/
Dindex.rst6 subtables and other data structures you need when you are editing a font's
62 These functions build subtables for elements of the ``GDEF`` table.
/external/fonttools/
DNEWS.rst79 - [subset] Prune redundant format-12 cmap subtables when all non-BMP characters
424 - [subset] Optimize SinglePos subtables to Format 1 if all ValueRecords are the same
435 - [otTables] Fixed bug when splitting `MarkBasePos` subtables as offsets overflow.
526 - [otTables] Support fixing offset overflows in ``MultipleSubst`` lookup subtables
603 ``SinglePos`` subtables (#1621, #1641).
658 - [otlLib] Better compress ``GPOS`` SinglePos (LookupType 1) subtables (#1539).
815 - [varLib] Fixed merging of multiple PairPosFormat2 subtables (#1411).
896 - [feaLib] Skip building noop class PairPos subtables when Coverage is NULL
938 ``MarkBasePos`` subtables (#1297).
1159 - [varLib] Fixed merging PairPos Format1/2 with missing subtables (#1125).
[all …]
/external/freetype/src/gxvalid/
DREADME251 warn and continue. Similar problems are found in format 3 subtables
255 5 fonts include too-short kern format 0 subtables.
369 The `kern' table consists of a table header and several subtables.
389 - In the `kern' table header, the number of subtables follows
420 header, and parses the table as if all subtables are in format 0.
/external/harfbuzz_ng/src/
Dhb-ot-layout-gsubgpos.hh2819 subtables.init (); in init()
2820 OT::hb_get_subtables_context_t c_get_subtables (subtables); in init()
2823 void fini () { subtables.fini (); } in fini()
2830 for (unsigned int i = 0; i < subtables.length; i++) in apply()
2831 if (subtables[i].apply (c)) in apply()
2838 hb_get_subtables_context_t::array_t subtables; member
Dhb-ot-layout-common.hh857 const OffsetArrayOf<TSubTable>& subtables = get_subtables<TSubTable> (); in subset() local
861 out_subtables[i].serialize_subset (c, subtables[i], this, out, get_type ()); in subset()
/external/sfntly/doc/
DSfntlyCPlusPlusNotes.md150 All other subtables have builders that contain valid FontData but the
/external/fonttools/Lib/fontTools/mtiLib/
D__init__.py842 subtables = []
849 subtables.append(subtable)
854 lookup.SubTable = subtables
/external/harfbuzz_ng/
DNEWS190 o Implement 'kern' subtables Format 1 and Format 3.
/external/freetype/
DChangeLog.242672 the number of the subtables in the state tables; classTable,
3919 GID ranges, for the comparison of GID ranges in different subtables.
/external/freetype/docs/
DCHANGES1836 of Type42-persistent subtables (`cvt ', `fpgm', and `prep') when
/external/rust/crates/ring/crypto/fipsmodule/ec/
Decp_nistz256_table.inl17 // subtables, each subtable contains 64 affine points. The affine points are
/external/guice/extensions/persist/lib/
Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...