Searched refs:outIndex (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DMixedContentModel.java168 for (int outIndex = 0; outIndex < length; outIndex++) {
171 final QName curChild = children[offset + outIndex];
179 if (fChildren[inIndex].rawname != children[offset + outIndex].rawname) {
180 return outIndex;
185 if (uri != null && uri != children[outIndex].uri) {
186 return outIndex;
190 if (children[outIndex].uri != null) {
191 return outIndex;
[all...]
H A DDFAContentModel.java533 for (int outIndex = 0; outIndex < fLeafCount; outIndex++)
535 fElemMap[outIndex] = new QName();
538 if ( (fLeafListType[outIndex] & 0x0f) != 0 ) {
546 final QName element = fLeafList[outIndex].getElement();
560 fElemMapType[fElemMapSize] = fLeafListType[outIndex];
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DArabicShaping.h100 static void adjustTags(le_int32 outIndex, le_int32 shapeOffset, LEGlyphStorage &glyphStorage);
H A DArabicShaping.cpp139 void ArabicShaping::adjustTags(le_int32 outIndex, le_int32 shapeOffset, LEGlyphStorage &glyphStorage) argument
142 FeatureMask featureMask = (FeatureMask) glyphStorage.getAuxData(outIndex, success);
147 glyphStorage.setAuxData(outIndex, ((featureMask & ~SHAPE_MASK) | shape), success);
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteConverter.java306 int outIndex = outStart;
310 output[outIndex++] = s[i];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSDFACM.java604 for (int outIndex = 0; outIndex < fLeafCount; outIndex++) {
606 //fElemMap[outIndex] = new Object ();
607 fElemMap[outIndex] = null;
610 final int id = fLeafList[outIndex].getParticleId();
618 XSCMLeaf leaf = fLeafList[outIndex];
627 fElemMapType[fElemMapSize] = fLeafListType[outIndex];
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java1937 int outIndex = 0;
1954 outArr[outIndex++] = (byte)(257 - runLen);
1955 outArr[outIndex++] = inArr[startIndex];
1966 outArr[outIndex++] = (byte)(runLen - 1);
1968 outArr[outIndex++] = inArr[i];
1972 outArr[outIndex++] = (byte)128;
1973 byte[] encodedData = new byte[outIndex];
1974 System.arraycopy(outArr, 0, encodedData, 0, outIndex);

Completed in 44 milliseconds