Searched refs:glyphIndex (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEGlyphStorage.h233 * @param glyphIndex - the index of the glyph
242 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
294 * @param glyphIndex the index into the glyph array
301 LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const;
306 * @param glyphIndex the index into the glyph array
313 le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const;
319 * @param glyphIndex the index into the glyph array
326 le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const;
332 * @param glyphIndex the index into the glyph array
338 inline LEGlyphID &operator[](le_int32 glyphIndex) cons
[all...]
H A DLEGlyphStorage.cpp279 LEGlyphID LEGlyphStorage::getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const argument
290 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) {
295 return fGlyphs[glyphIndex];
298 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) argument
309 if (glyphIndex < 0 || glyphIndex >= fGlyphCount) {
314 fGlyphs[glyphIndex] = glyphID;
317 le_int32 LEGlyphStorage::getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const argument
328 if (glyphIndex <
336 setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) argument
374 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const argument
393 setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success) argument
431 getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const argument
451 setPosition(le_int32 glyphIndex, float x, float y, LEErrorCode &success) argument
466 adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode &success) argument
[all...]
H A DLayoutEngine.h478 * @param glyphIndex - the index of the glyph
487 void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
H A DLayoutEngine.cpp245 void LayoutEngine::getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const argument
247 fGlyphStorage->getGlyphPosition(glyphIndex, x, y, success);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java156 * @param glyphIndex the index into this <code>GlyphVector</code>
160 * <code>glyphIndex</code>.
161 * @throws IndexOutOfBoundsException if <code>glyphIndex</code>
165 public abstract int getGlyphCode(int glyphIndex); argument
198 * @param glyphIndex the index of the glyph
202 public int getGlyphCharIndex(int glyphIndex) { argument
203 return glyphIndex;
307 * @param glyphIndex the index into this <code>GlyphVector</code>
309 * at the specified <code>glyphIndex</code> of this
311 * @throws IndexOutOfBoundsException if <code>glyphIndex</cod
315 getGlyphOutline(int glyphIndex) argument
335 getGlyphOutline(int glyphIndex, float x, float y) argument
356 getGlyphPosition(int glyphIndex) argument
373 setGlyphPosition(int glyphIndex, Point2D newPos) argument
389 getGlyphTransform(int glyphIndex) argument
406 setGlyphTransform(int glyphIndex, AffineTransform newTX) argument
522 getGlyphLogicalBounds(int glyphIndex) argument
539 getGlyphVisualBounds(int glyphIndex) argument
580 getGlyphMetrics(int glyphIndex) argument
596 getGlyphJustificationInfo(int glyphIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeStrike.java187 int glyphIndex = 0;
190 while (glyphIndex < glyphs.length) {
191 int start = glyphIndex;
192 int slot = glyphs[glyphIndex] >>> 24;
193 while (glyphIndex < glyphs.length &&
194 (glyphs[glyphIndex+1] >>> 24) == slot) {
195 glyphIndex++;
197 int tmpLen = glyphIndex-start+1;
H A DStandardGlyphVector.java309 public int getGlyphCode(int glyphIndex) { argument
310 return userGlyphs[glyphIndex];
1438 void setGlyphTransform(int glyphIndex, AffineTransform newTX) { argument
1467 indices[glyphIndex] = 1;
1491 int oldIndex = indices[glyphIndex];
1498 if (indices[i] == oldIndex && i != glyphIndex) {
1513 sgv.clearCaches(glyphIndex);
1542 indices[glyphIndex] = newIndex;
1546 sgv.clearCaches(glyphIndex);
1629 GlyphStrike getStrike(int glyphIndex) { argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DTextRenderer.cpp353 jint glyphIndex, jint totalGlyphs)
441 (jint)(ginfo->advanceX * (totalGlyphs - glyphIndex));
519 jint glyphIndex, jint totalGlyphs,
575 glyphIndex, totalGlyphs);
349 D3DTR_UpdateCachedDestination(D3DContext *d3dc, D3DSDOps *dstOps, GlyphInfo *ginfo, jint gx1, jint gy1, jint gx2, jint gy2, jint agx1, jint agx2, jint glyphIndex, jint totalGlyphs) argument
517 D3DTR_DrawLCDGlyphViaCache(D3DContext *d3dc, D3DSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint glyphIndex, jint totalGlyphs, jboolean rgbOrder, jint contrast) argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLTextRenderer.c714 jint glyphIndex, jint totalGlyphs)
769 (jint)(ginfo->advanceX * (totalGlyphs - glyphIndex));
823 jint glyphIndex, jint totalGlyphs,
887 glyphIndex, totalGlyphs);
712 OGLTR_UpdateCachedDestination(OGLSDOps *dstOps, GlyphInfo *ginfo, jint gx1, jint gy1, jint gx2, jint gy2, jint glyphIndex, jint totalGlyphs) argument
821 OGLTR_DrawLCDGlyphViaCache(OGLContext *oglc, OGLSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint glyphIndex, jint totalGlyphs, jboolean rgbOrder, jint contrast) argument

Completed in 39 milliseconds