Searched defs:curIndex (Results 1 - 3 of 3) 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/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/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...]

Completed in 847 milliseconds