Searched refs:offset_coverage (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/ots/src/ |
D | gdef.cc | 39 uint16_t offset_coverage = 0; in ParseAttachListTable() local 41 if (!subtable.ReadU16(&offset_coverage) || in ParseAttachListTable() 50 if (offset_coverage == 0 || offset_coverage >= length || in ParseAttachListTable() 51 offset_coverage < attach_points_end) { in ParseAttachListTable() 72 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseAttachListTable() 73 length - offset_coverage, num_glyphs)) { in ParseAttachListTable() 108 uint16_t offset_coverage = 0; in ParseLigCaretListTable() local 110 if (!subtable.ReadU16(&offset_coverage) || in ParseLigCaretListTable() 119 if (offset_coverage == 0 || offset_coverage >= length || in ParseLigCaretListTable() 120 offset_coverage < lig_glyphs_end) { in ParseLigCaretListTable() [all …]
|
D | gsub.cc | 78 uint16_t offset_coverage = 0; in ParseSingleSubstitution() local 81 !subtable.ReadU16(&offset_coverage)) { in ParseSingleSubstitution() 118 if (offset_coverage < subtable.offset() || offset_coverage >= length) { in ParseSingleSubstitution() 121 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseSingleSubstitution() 122 length - offset_coverage, num_glyphs)) { in ParseSingleSubstitution() 160 uint16_t offset_coverage = 0; in ParseMutipleSubstitution() local 164 !subtable.ReadU16(&offset_coverage) || in ParseMutipleSubstitution() 193 if (offset_coverage < sequence_end || offset_coverage >= length) { in ParseMutipleSubstitution() 196 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseMutipleSubstitution() 197 length - offset_coverage, num_glyphs)) { in ParseMutipleSubstitution() [all …]
|
D | math.cc | 164 uint16_t offset_coverage = 0; in ParseMathValueRecordSequenceForGlyphs() local 166 if (!subtable->ReadU16(&offset_coverage) || in ParseMathValueRecordSequenceForGlyphs() 178 if (offset_coverage < sequence_end || offset_coverage >= length) { in ParseMathValueRecordSequenceForGlyphs() 181 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseMathValueRecordSequenceForGlyphs() 182 length - offset_coverage, in ParseMathValueRecordSequenceForGlyphs() 244 uint16_t offset_coverage = 0; in ParseMathKernInfoTable() local 246 if (!subtable.ReadU16(&offset_coverage) || in ParseMathKernInfoTable() 258 if (offset_coverage < sequence_end || offset_coverage >= length) { in ParseMathKernInfoTable() 261 if (!ots::ParseCoverageTable(data + offset_coverage, length - offset_coverage, in ParseMathKernInfoTable() 438 uint16_t offset_coverage, in ParseMathGlyphConstructionSequence() argument [all …]
|
D | gpos.cc | 208 uint16_t offset_coverage = 0; in ParseSingleAdjustment() local 211 !subtable.ReadU16(&offset_coverage) || in ParseSingleAdjustment() 235 if (offset_coverage < subtable.offset() || offset_coverage >= length) { in ParseSingleAdjustment() 239 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseSingleAdjustment() 240 length - offset_coverage, in ParseSingleAdjustment() 379 uint16_t offset_coverage = 0; in ParsePairAdjustment() local 383 !subtable.ReadU16(&offset_coverage) || in ParsePairAdjustment() 403 if (offset_coverage < subtable.offset() || offset_coverage >= length) { in ParsePairAdjustment() 406 if (!ots::ParseCoverageTable(data + offset_coverage, in ParsePairAdjustment() 407 length - offset_coverage, in ParsePairAdjustment() [all …]
|
D | layout.cc | 518 uint16_t offset_coverage = 0; in ParseContextFormat1() local 522 !subtable.ReadU16(&offset_coverage) || in ParseContextFormat1() 532 if (offset_coverage < rule_set_end || offset_coverage >= length) { in ParseContextFormat1() 535 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseContextFormat1() 536 length - offset_coverage, num_glyphs)) { in ParseContextFormat1() 625 uint16_t offset_coverage = 0; in ParseContextFormat2() local 630 !subtable.ReadU16(&offset_coverage) || in ParseContextFormat2() 640 if (offset_coverage < class_set_end || offset_coverage >= length) { in ParseContextFormat2() 643 if (!ots::ParseCoverageTable(data + offset_coverage, in ParseContextFormat2() 644 length - offset_coverage, num_glyphs)) { in ParseContextFormat2() [all …]
|