Searched refs:valueFormat (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/layout/ |
D | ValueRecords.cpp | 20 le_int16 ValueRecord::getFieldValue(ValueFormat valueFormat, ValueRecordField field) const in getFieldValue() argument 22 le_int16 valueIndex = getFieldIndex(valueFormat, field); in getFieldValue() 28 le_int16 ValueRecord::getFieldValue(le_int16 index, ValueFormat valueFormat, ValueRecordField field… in getFieldValue() argument 30 le_int16 baseIndex = getFieldCount(valueFormat) * index; in getFieldValue() 31 le_int16 valueIndex = getFieldIndex(valueFormat, field); in getFieldValue() 37 void ValueRecord::adjustPosition(ValueFormat valueFormat, const char *base, GlyphIterator &glyphIte… in adjustPosition() argument 45 if ((valueFormat & vfbXPlacement) != 0) { in adjustPosition() 46 le_int16 value = getFieldValue(valueFormat, vrfXPlacement); in adjustPosition() 55 if ((valueFormat & vfbYPlacement) != 0) { in adjustPosition() 56 le_int16 value = getFieldValue(valueFormat, vrfYPlacement); in adjustPosition() [all …]
|
D | ValueRecords.h | 29 le_int16 getFieldValue(ValueFormat valueFormat, ValueRecordField field) const; 30 le_int16 getFieldValue(le_int16 index, ValueFormat valueFormat, ValueRecordField field) const; 31 void adjustPosition(ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator, 33 …void adjustPosition(le_int16 index, ValueFormat valueFormat, const char *base, GlyphIterator &g… 36 static le_int16 getSize(ValueFormat valueFormat); 39 static le_int16 getFieldCount(ValueFormat valueFormat); 40 static le_int16 getFieldIndex(ValueFormat valueFormat, ValueRecordField field);
|
D | SinglePositioningSubtables.h | 31 ValueFormat valueFormat; member 39 ValueFormat valueFormat; member
|
D | SinglePositioningSubtables.cpp | 50 … valueRecord.adjustPosition(SWAPW(valueFormat), (const char *) this, *glyphIterator, fontInstance); in process() 64 …valueRecordArray[0].adjustPosition(coverageIndex, SWAPW(valueFormat), (const char *) this, *glyphI… in process()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
D | Kerning.java | 337 private int readXAdvanceFromValueRecord (int valueFormat) throws IOException { in readXAdvanceFromValueRecord() argument 339 for (int mask = 1; mask <= 0x8000 && mask <= valueFormat; mask <<= 1) { in readXAdvanceFromValueRecord() 340 if ((valueFormat & mask) != 0) { in readXAdvanceFromValueRecord()
|
/external/harfbuzz_ng/src/ |
D | hb-ot-layout-gpos-table.hh | 475 valueFormat.apply_value (c->font, c->direction, this, in apply() 487 valueFormat.sanitize_value (c, this, values)); in sanitize() 495 ValueFormat valueFormat; /* Defines the types of data in the member 526 valueFormat.apply_value (c->font, c->direction, this, in apply() 527 &values[index * valueFormat.get_len ()], in apply() 539 valueFormat.sanitize_values (c, this, values, valueCount)); in sanitize() 547 ValueFormat valueFormat; /* Defines the types of data in the member
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otBase.py | 763 def __init__(self, valueFormat): argument 766 if valueFormat & mask:
|