Searched refs:numLines (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.c210 pRect->numLines = height;
232 int numLines = pSrcRect->numLines; local
239 if (pDstRect->numLines < numLines)
240 numLines = pDstRect->numLines;
245 if (pSrcRect2->numLines < numLines) {
246 numLines
272 int numLines = pDstRect->numLines; local
[all...]
H A Dsplashscreen_gif.c240 int numLines = (ch + jump - ofs - 1) / jump; local
242 initRect(&srcRect, 0, 0, desc->Width, numLines, 1,
245 if (numLines > 0) {
247 numLines , jump, stride, pBitmapBits, &splash->imageFormat);
252 pSrc += (numPassLines - numLines) * srcRect.stride;
H A Dsplashscreen_gfx.h81 int numLines; // number of scanlines in the rectangle member in struct:ImageRect
H A Dsplashscreen_impl.c171 for (j = 0; j < pSrcRect->numLines; j++) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java168 private int numLines = 5; field in class:NPrintWriter
173 numLines = numberOfLines;
177 if (numPrinted >= numLines) {
188 if (numPrinted == numLines) {
197 if (numPrinted == numLines) {
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DSOFMarkerSegment.java44 int numLines; field in class:SOFMarkerSegment
57 numLines = 0;
77 numLines = (buffer.buf[buffer.bufPtr++] & 0xff) << 8;
78 numLines |= buffer.buf[buffer.bufPtr++] & 0xff;
93 numLines = 0;
115 node.setAttribute("numLines",
116 Integer.toString(numLines));
136 value = getAttributeValue(node, attrs, "numLines", 0, 65535, false);
137 numLines = (value != -1) ? value : numLines;
[all...]
H A DJFIFMarkerSegment.java1241 retval = sof.numLines;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSourceCodePanel.java140 int numLines = 1 + source.getLineOfOffset(source.getDocument().getEndPosition().getOffset() - 1);
141 String str = Integer.toString(numLines);
148 Dimension d = new Dimension(width, numLines * getFontMetrics(getFont()).getHeight());
H A DAnnotatedMemoryPanel.java146 int numLines = rect.height / lineHeight;
151 BigInteger lineCount = new BigInteger(Integer.toString((int) (numLines - 1)));
185 for (int i = 0; i < numLines; i++) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp302 long scanLineStride, long *numLines);
2397 long numLines = 0;
2408 for (numLines = 0; sy < height; numLines++, sy++) {
2426 *numLinesP = numLines;
2444 long numLines;
2458 for(numLines = 1; sy < height; numLines++, sy++) {
2477 *numLinesP = numLines;
2743 long numLines
[all...]
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFont2DTest.java623 int lineNumber = 0, numLines = perLine.countTokens();
624 textLines = new String[ numLines ];
750 int numLines = perLine.countTokens(), lineNumber = 0;
751 if ( numLines != 0 ) {
752 userTextOpt = new String[ numLines ];
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c2042 int numLines = NUM_LINES; local
2049 if (!SAFE_TO_MULT(numLines, scanLength)) {
2053 nbytes = numLines * scanLength;
2055 for (y=0; y < rasterP->height; y+=numLines) {
2057 if (y+numLines > rasterP->height) {
2058 numLines = rasterP->height - y;
2059 nbytes = numLines * scanLength;
2063 rasterP->width, numLines,
2088 int numLines = NUM_LINES; local
2099 if (y+numLines > raster
[all...]

Completed in 3237 milliseconds