/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | Lookup.java | 20 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/android_icu4j/src/main/tests/android/icu/dev/tool/locale/ |
D | LocaleDistanceBuilder.java | 183 final Map<String, Map<String, DistanceTable>> subtables; field in LocaleDistanceBuilder.DistanceTable 187 subtables = new TreeMap<>(); in DistanceTable() 197 && subtables.equals(other.subtables)); in equals() 201 return nodeDistance ^ subtables.hashCode(); in hashCode() 207 Map<String, DistanceTable> sub2 = subtables.get(desired); in getDistance() 209 sub2 = subtables.get(ANY); // <*, supported> in getDistance() 216 sub2 = subtables.get(ANY); // <*, supported> in getDistance() 232 return subtables.get(ANY).get(ANY); in getAnyAnyNode() 236 for (Map.Entry<String, Map<String, DistanceTable>> e1 : other.subtables.entrySet()) { in copy() 245 Map<String, DistanceTable> sub2 = subtables.get(desired); in addSubtable() [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/ |
D | LocaleDistanceBuilder.java | 180 final Map<String, Map<String, DistanceTable>> subtables; field in LocaleDistanceBuilder.DistanceTable 184 subtables = new TreeMap<>(); in DistanceTable() 194 && subtables.equals(other.subtables)); in equals() 198 return nodeDistance ^ subtables.hashCode(); in hashCode() 204 Map<String, DistanceTable> sub2 = subtables.get(desired); in getDistance() 206 sub2 = subtables.get(ANY); // <*, supported> in getDistance() 213 sub2 = subtables.get(ANY); // <*, supported> in getDistance() 229 return subtables.get(ANY).get(ANY); in getAnyAnyNode() 233 for (Map.Entry<String, Map<String, DistanceTable>> e1 : other.subtables.entrySet()) { in copy() 242 Map<String, DistanceTable> sub2 = subtables.get(desired); in addSubtable() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | XLocaleDistance.java | 316 … (StringDistanceNode) ((StringDistanceTable) languageDesired2Supported).subtables.get(ANY).get(ANY… in XLocaleDistance() 318 …(StringDistanceNode) ((StringDistanceTable) languageNode.distanceTable).subtables.get(ANY).get(ANY… in XLocaleDistance() 320 …DistanceNode regionNode = ((StringDistanceTable) scriptNode.distanceTable).subtables.get(ANY).get(… in XLocaleDistance() 333 final Map<String, Map<String, DistanceNode>> subtables; field in XLocaleDistance.StringDistanceTable 336 subtables = tables; in StringDistanceTable() 344 return subtables.isEmpty(); in isEmpty() 353 return subtables.equals(other.subtables); in equals() 358 return subtables.hashCode(); in hashCode() 363 Map<String, DistanceNode> sub2 = subtables.get(desired); in getDistance() 365 sub2 = subtables.get(ANY); // <*, supported> in getDistance() [all …]
|
D | IntDistanceNode.java | 65 for (Entry<String, Map<String, DistanceNode>> e1 : source.subtables.entrySet()) { in loadIds() 84 for (Entry<String, Map<String, DistanceNode>> e1 : source.subtables.entrySet()) { in IntDistanceTable()
|
/external/mesa3d/src/intel/tools/ |
D | aub_write.c | 73 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 …]
|
D | aub_write.h | 65 struct aub_ppgtt_table *subtables[512]; member
|
/external/fonttools/Lib/fontTools/feaLib/ |
D | builder.py | 1137 def buildLookup_(self, subtables): argument 1138 return otl.buildLookup(subtables, self.lookupflag, self.markFilterSet) 1182 subtables = [klass(s) for s in substitutions] 1183 return subtables 1202 subtables = self.build_subst_subtables(self.alternates, 1204 return self.buildLookup_(subtables) 1223 subtables = [] 1228 subtables.append(st) 1242 return self.buildLookup_(subtables) 1270 subtables = [] [all …]
|
/external/fonttools/Lib/fontTools/otlLib/ |
D | builder.py | 23 def buildLookup(subtables, flags=0, markFilterSet=None): argument 24 if subtables is None: 26 subtables = [st for st in subtables if st is not None] 27 if not subtables: 29 assert all(t.LookupType == subtables[0].LookupType for t in subtables), \ 31 repr([t.LookupType for t in subtables])) 33 self.LookupType = subtables[0].LookupType 35 self.SubTable = subtables
|
/external/fonttools/Lib/fontTools/varLib/ |
D | merger.py | 185 def _Lookup_SinglePos_get_effective_value(subtables, glyph): argument 186 for self in subtables: 200 def _Lookup_PairPos_get_effective_value_pair(subtables, firstGlyph, secondGlyph): argument 201 for self in subtables: 492 for l,subtables in zip(lst,merger.lookup_subtables): 494 assert l == subtables[-1] 759 subtables = merger.lookup_subtables = [l.SubTable for l in lst] 762 for l,sts in list(zip(lst,subtables))+[(self,self.SubTable)]: 780 …subtables = merger.lookup_subtables = [_Lookup_PairPos_subtables_canonicalize(st, merger.font) for… 784 numSubtables = [len(st) for st in subtables] [all …]
|
/external/fonttools/Tests/otlLib/ |
D | builder_test.py | 873 subtables = builder.buildPairPosGlyphs( 876 assert sum([getXML(t.toXML) for t in subtables], []) == [ 955 subtables = builder.buildSinglePos( 966 assert sum([getXML(t.toXML) for t in subtables], []) == [ 993 subtables = builder.buildSinglePos( 996 assert sum([getXML(t.toXML) for t in subtables], []) == [
|
/external/fonttools/ |
D | NEWS.rst | 53 ``SinglePos`` subtables (#1621, #1641). 108 - [otlLib] Better compress ``GPOS`` SinglePos (LookupType 1) subtables (#1539). 265 - [varLib] Fixed merging of multiple PairPosFormat2 subtables (#1411). 346 - [feaLib] Skip building noop class PairPos subtables when Coverage is NULL 388 ``MarkBasePos`` subtables (#1297). 609 - [varLib] Fixed merging PairPos Format1/2 with missing subtables (#1125). 686 - [AAT] Implemented ``morx`` ligature subtables (#1082). 753 - [varLib] Flatten multiple tail PairPosFormat2 subtables before merging 761 - [varLib.merger] Remove Extensions subtables before merging (f7c20cf8). 799 - [varLib] Fixed bug with recombining PairPosClass2 subtables (81498e5, #914). [all …]
|
D | PKG-INFO | 470 ``SinglePos`` subtables (#1621, #1641). 525 - [otlLib] Better compress ``GPOS`` SinglePos (LookupType 1) subtables (#1539). 682 - [varLib] Fixed merging of multiple PairPosFormat2 subtables (#1411). 763 - [feaLib] Skip building noop class PairPos subtables when Coverage is NULL 805 ``MarkBasePos`` subtables (#1297). 1026 - [varLib] Fixed merging PairPos Format1/2 with missing subtables (#1125). 1103 - [AAT] Implemented ``morx`` ligature subtables (#1082). 1170 - [varLib] Flatten multiple tail PairPosFormat2 subtables before merging 1178 - [varLib.merger] Remove Extensions subtables before merging (f7c20cf8). 1216 - [varLib] Fixed bug with recombining PairPosClass2 subtables (81498e5, #914). [all …]
|
/external/freetype/src/gxvalid/ |
D | README | 251 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/fonttools/Lib/fonttools.egg-info/ |
D | PKG-INFO | 470 ``SinglePos`` subtables (#1621, #1641). 525 - [otlLib] Better compress ``GPOS`` SinglePos (LookupType 1) subtables (#1539). 682 - [varLib] Fixed merging of multiple PairPosFormat2 subtables (#1411). 763 - [feaLib] Skip building noop class PairPos subtables when Coverage is NULL 805 ``MarkBasePos`` subtables (#1297). 1026 - [varLib] Fixed merging PairPos Format1/2 with missing subtables (#1125). 1103 - [AAT] Implemented ``morx`` ligature subtables (#1082). 1170 - [varLib] Flatten multiple tail PairPosFormat2 subtables before merging 1178 - [varLib.merger] Remove Extensions subtables before merging (f7c20cf8). 1216 - [varLib] Fixed bug with recombining PairPosClass2 subtables (81498e5, #914). [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-gsubgpos.hh | 2819 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
|
D | hb-ot-layout-common.hh | 857 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/ |
D | SfntlyCPlusPlusNotes.md | 150 All other subtables have builders that contain valid FontData but the
|
/external/fonttools/Lib/fontTools/mtiLib/ |
D | __init__.py | 845 subtables = [] 852 subtables.append(subtable) 857 lookup.SubTable = subtables
|
/external/harfbuzz_ng/ |
D | NEWS | 190 o Implement 'kern' subtables Format 1 and Format 3.
|
/external/freetype/ |
D | ChangeLog.24 | 2672 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/ |
D | CHANGES | 1735 of Type42-persistent subtables (`cvt ', `fpgm', and `prep') when
|