Searched defs:widths (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontMetrics.java43 * The widths of the first 256 characters.
45 int widths[]; field in class:WFontMetrics
182 * Get the widths of the first 256 characters in the font.
185 return widths;
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11FontMetrics.java39 * The widths of the first 256 characters.
41 int widths[]; field in class:X11FontMetrics
188 if (widths != null) {
192 if (ch < 0 || ch >= widths.length) {
195 w += widths[ch];
213 * Get the widths of the first 256 characters in the font.
216 return widths;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.c106 jfieldID widths; member in struct:X11FontMetricsIDs
132 x11FontMetricsIDs.widths = (*env)->GetFieldID(env, cls, "widths", "[I");
779 jobject widths = NULL; local
794 widths = (*env)->GetObjectField(env, this, x11FontMetricsIDs.widths);
796 if (!JNU_IsNull(env, widths)) {
798 widlen = (*env)->GetArrayLength(env, widths);
799 (*env)->GetIntArrayRegion(env, widths, 0, widlen, (jint *) tempWidths);
833 jintArray widths local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp505 jintArray widths = env->NewIntArray(256);
506 if (widths == NULL) {
546 env->SetIntArrayRegion(widths, 0, 256, intWidths);
547 env->SetObjectField(fontMetrics, AwtFont::widthsID, widths);
569 env->DeleteLocalRef(widths);
862 jint *widths = NULL; local
864 widths = (jint *)env->GetPrimitiveArrayCritical(array, 0);
867 result += widths[*pStr++];
870 if (widths != NULL) {
871 env->ReleasePrimitiveArrayCritical(array, widths,
[all...]

Completed in 37 milliseconds