Searched refs:vIndex (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DCompositeView.java257 int vIndex = getViewIndexAtPosition(testPos);
258 if ((vIndex != -1) && (vIndex < getViewCount())) {
259 View v = getView(vIndex);
262 Shape childShape = getChildAllocation(vIndex, a);
269 if(++vIndex < getViewCount()) {
270 v = getView(vIndex);
271 retShape = v.modelToView(pos, getChildAllocation(vIndex, a), b);
H A DParagraphView.java186 int vIndex;
188 vIndex = (direction == NORTH) ?
193 vIndex = getViewIndexAtPosition(pos - 1);
196 vIndex = getViewIndexAtPosition(pos);
199 if(vIndex == 0) {
202 vIndex--;
204 else if(++vIndex >= getViewCount()) {
208 // vIndex gives index of row to look in.
231 return getClosestPositionTo(pos, b, a, direction, biasRet, vIndex, x);
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DHangulLayoutEngine.cpp139 le_int32 vIndex = vowel - VJMO_FIRST; local
143 if ((lIndex < 0 || lIndex >= LJMO_COUNT ) || (vIndex < 0 || vIndex >= VJMO_COUNT)) {
152 syllable = (LEUnicode) ((lIndex * VJMO_COUNT + vIndex) * TJMO_COUNT + tIndex + HSYL_FIRST);
/openjdk9/jdk/test/sun/nio/cs/OLD/
H A DIBM970_OLD.java1617 int lIndex, vIndex, tIndex;
1620 vIndex = v - VBase;
1623 return (char)((lIndex * VCount + vIndex) * TCount + tIndex + SBase);
H A DIBM933_OLD.java3072 int lIndex, vIndex, tIndex;
3075 vIndex = v - VBase;
3078 return (char)((lIndex * VCount + vIndex) * TCount + tIndex + SBase);
H A DIBM949_OLD.java1894 int lIndex, vIndex, tIndex;
1897 vIndex = v - VBase;
1900 return (char)((lIndex * VCount + vIndex) * TCount + tIndex + SBase);

Completed in 171 milliseconds