Searched defs:xAdjust (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/layout/
H A DLEGlyphStorage.cpp441 void LEGlyphStorage::adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode &success) argument
452 fPositions[glyphIndex * 2] += xAdjust;
H A DLayoutEngine.cpp389 float xAdjust = 0; local
411 glyphStorage.adjustPosition(p, xAdjust, 0, success);
414 xAdjust -= xAdvance;
420 glyphStorage.adjustPosition(glyphCount, xAdjust, 0, success);
425 float xAdjust = 0; local
453 glyphStorage.adjustPosition(p, xAdjust, 0, success);
456 xAdjust -= xAdvance;
462 glyphStorage.adjustPosition(glyphCount, xAdjust, 0, success);
H A DOpenTypeLayoutEngine.cpp501 float xAdjust = 0, yAdjust = 0; local
513 xAdjust += xKerning;
524 glyphStorage.adjustPosition(i, xAdjust + xPlacement, -(yAdjust + yPlacement), success);
526 xAdjust += fFontInstance->xUnitsToPoints(xAdvance);
530 glyphStorage.adjustPosition(glyphCount, xAdjust, -yAdjust, success);

Completed in 394 milliseconds