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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java255 int vIndex = getViewIndexAtPosition(testPos);
256 if ((vIndex != -1) && (vIndex < getViewCount())) {
257 View v = getView(vIndex);
260 Shape childShape = getChildAllocation(vIndex, a);
267 if(++vIndex < getViewCount()) {
268 v = getView(vIndex);
269 retShape = v.modelToView(pos, getChildAllocation(vIndex, a), b);
H A DParagraphView.java196 int vIndex;
198 vIndex = (direction == NORTH) ?
203 vIndex = getViewIndexAtPosition(pos - 1);
206 vIndex = getViewIndexAtPosition(pos);
209 if(vIndex == 0) {
212 vIndex--;
214 else if(++vIndex >= getViewCount()) {
218 // vIndex gives index of row to look in.
241 return getClosestPositionTo(pos, b, a, direction, biasRet, vIndex, x);
/openjdk7/jdk/src/share/native/sun/font/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);
/openjdk7/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 90 milliseconds