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

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegionIterator.java36 int curIndex; field in class:RegionIterator
50 r.curIndex = this.curIndex;
64 this.curIndex = ri.curIndex;
75 curIndex += numXbands * 2;
77 if (curIndex >= region.endIndex) {
80 range[1] = region.bands[curIndex++];
81 range[3] = region.bands[curIndex++];
82 numXbands = region.bands[curIndex
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DSpanClipRenderer.c53 pCurIndexID = (*env)->GetFieldID(env, ric, "curIndex", "I");
84 jint curIndex = *pCurIndex; local
88 curIndex += numXbands * 2;
89 ret = (curIndex + 3 < endIndex);
91 box[1] = bands[curIndex++];
92 box[3] = bands[curIndex++];
93 numXbands = bands[curIndex++];
97 *pCurIndex = curIndex;
106 jint curIndex = *pCurIndex; local
109 if (numXbands <= 0 || curIndex
169 jint curIndex; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DDFAContentModel.java986 private int postTreeBuildInit(CMNode nodeCur, int curIndex) argument
997 fLeafList[curIndex] = new CMLeaf(qname, ((CMAny)nodeCur).getPosition());
998 fLeafListType[curIndex] = nodeCur.type();
999 curIndex++;
1004 curIndex = postTreeBuildInit(((CMBinOp)nodeCur).getLeft(), curIndex);
1005 curIndex = postTreeBuildInit(((CMBinOp)nodeCur).getRight(), curIndex);
1011 curIndex = postTreeBuildInit(((CMUniOp)nodeCur).getChild(), curIndex);
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeFont.java303 int curIndex = minIndex;
304 while (maxIndex > curIndex) {
305 if ((charcode >= exclusionRanges[curIndex])
306 && (charcode <= exclusionRanges[curIndex+1])) {
309 curIndex += 2;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java426 int curIndex = eval(predIndex, intermediate);
427 BlockIntermediate curBlock = intermediate.get(curIndex);
442 for (int curIndex : parentBlock.bucket) {
443 int newIndex = eval(curIndex, intermediate);
444 BlockIntermediate curBlock = intermediate.get(curIndex);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java7138 int curIndex = i;
7148 if (curIndex < ttlCols) { // it's here!
7149 c = curIndex % ttlCols;
7153 curIndex -= ttlCols;
7165 if (curIndex <
7170 c = colIndicies[curIndex % colsSel];
7172 + curIndex / colsSel;
7175 curIndex -= colsSel * (rowIndicies[j] -
7184 if (curIndex <
7187 c = colIndicies[curIndex
[all...]

Completed in 60 milliseconds