Searched refs:atPosition (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.h56 * @param atPosition the position of the insertion
65 virtual le_bool applyInsertion(le_int32 atPosition, le_int32 count, LEGlyphID newGlyphs[]) = 0;
H A DLEGlyphStorage.cpp642 le_bool LEGlyphStorage::applyInsertion(le_int32 atPosition, le_int32 count, LEGlyphID newGlyphs[]) argument
653 if (position >= atPosition && position <= fSrcIndex) {
658 if (atPosition < 0 || fSrcIndex < 0 || fDestIndex < 0) {
665 while (src > atPosition) {
670 fAuxData[dest--] = fAuxData[atPosition];
674 while (fSrcIndex > atPosition && fSrcIndex >= 0 && fDestIndex >= 0) {
684 fCharIndices[fDestIndex] = fCharIndices[atPosition];
H A DLEGlyphStorage.h124 * @param atPosition the position of the insertion
135 virtual le_bool applyInsertion(le_int32 atPosition, le_int32 count, LEGlyphID newGlyphs[]);

Completed in 33 milliseconds