Searched refs:positions (Results 26 - 29 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java681 * text and its just that positions aren't what we'd expect) we print
695 * print the GlyphVector as glyph codes, using the positions
858 float[] positions = g.getGlyphPositions(0, numGlyphs, null);
861 samePositions(gv2, glyphCodes2, glyphCodes, positions);
889 * it and verify the positions are really different than
919 /* If positions have not been explicitly assigned, we can
925 * drawString method to take the advances (ie relative positions)
945 * the position based on the glyph positions.
959 drawString(s, x+positions[i*2], y+positions[
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c250 unsigned char *positions; local
253 positions = (b + numGlyphs * BYTES_PER_GLYPH_IMAGE);
256 positions = NULL;
263 images, positions);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLayoutEngine.cpp240 void LayoutEngine::getGlyphPositions(float positions[], LEErrorCode &success) const argument
242 fGlyphStorage->getGlyphPositions(positions, success);
387 // Output: positions
541 // Output: glyphs, positions, char indices
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp2271 boolean glyphCodes, jfloat x, jfloat y, jfloatArray positions)
2282 if (positions != NULL) {
2283 glyphPos = env->GetFloatArrayElements(positions, NULL);
2286 /* We need to convert positions relative to the origin of the text
2357 env->ReleaseFloatArrayElements(positions, glyphPos, JNI_ABORT);

Completed in 50 milliseconds

12