Searched refs:xx (Results 26 - 50 of 52) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DArrayTypeImpl.java72 Instance xx = (Instance)(((InstanceKlass) bottomKlass).getClassLoader());
73 return vm.classLoaderMirror(xx);
H A DReferenceTypeImpl.java171 Instance xx = (Instance)(((InstanceKlass)saKlass).getClassLoader());
172 return (ClassLoaderReferenceImpl)vm.classLoaderMirror(xx);
/openjdk7/jdk/test/com/sun/jdi/
H A DPrivateTransportTest.sh127 xx=`find ${jreloc}/lib -name libdt_socket.so`
128 libloc=`dirname ${xx}`
H A DStringConvertTest.sh60 $classname(String xx) {
61 me = xx;
H A DInvokeTest.java391 ReferenceType xx = (ReferenceType)iter.next();
392 if (xx.name().equals("java.lang.Object")) {
393 objectMirror = xx;
H A DInstancesTest.java64 int xx; field in class:InstancesFiller
66 xx = p1;
H A DReferrersTest.java63 int xx; field in class:ReferrersFiller
65 xx = p1;
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacterName.java91 } catch (Exception xx) {}
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpRequestHandler.java224 catch(SnmpTooBigException xx) {
317 } catch (SnmpTooBigException xx) {
323 pos= xx.getVarBindCount();
332 throw xx;
336 } catch(SnmpStatusException xx) {
340 "makeResponseMessage", "failure when encoding the response message", xx);
343 catch(SnmpTooBigException xx) {
365 catch(Exception xx) {
368 "makeResponseMessage", "Got unexpected exception", xx);
/openjdk7/jdk/test/javax/management/Introspector/
H A DAnnotationTest.java301 private static void check(DescriptorRead[] xx) { argument
302 for (DescriptorRead x : xx)
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.cpp1208 for (int xx = 0; xx < srcWidth; xx++) {
1212 pDstPixels[xx] = pSrcPixels[xx] << 24;
1225 for (int xx = 0; xx < srcWidth*3; xx+=3) {
1230 pDstPixels[xx+0] = pSrcPixels[xx
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DIntrospector.java470 Object[] xx = (Object[]) x;
471 String[] ss = new String[xx.length];
472 for (int i = 0; i < xx.length; i++)
473 ss[i] = (String) annotationToField(xx[i]);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.c619 char xx[1024]; local
653 strcpy(xx, realxlfd);
658 fprintf(stderr, "XCreateFontSet(%s)->0x%x\n", xx, xfs);
668 fprintf(stderr, " requested \"%s\"\n", xx);
H A Dawt_InputMethod.c671 int x, y, off_x, off_y, xx, yy; local
737 xx = x - off_x;
739 if (xx < 0 ){
740 xx = 0;
742 if (xx + width > xxwa.width){
743 xx = xxwa.width - width;
751 xx, yy,
H A Dfontconfig.h188 double xx, xy, yx, yy; member in struct:_FcMatrix
191 #define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DParagraphView.java284 float xx = text.modelToView(lastPos).getBounds().x;
285 if(xx >= x) {
287 text.modelToView(lastPos).getBounds().x == xx) {
297 float xx = text.modelToView(lastPos).getBounds().x;
298 if(xx >= x) {
300 text.modelToView(lastPos).getBounds().x == xx) {
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_ImageRep.c77 #define CHECK_DST(xx, yy) \
80 int poffset = (xx) * pixelStride; \
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java134 } catch (Exception xx) {
135 reg=xx;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css63 h6 {font-size: xx-small;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp677 intptr_t xx = ((intptr_t) THREAD) ^ (intptr_t) mark; local
678 xx = (intptr_t) rcvr->klass()->klass_part()->prototype_header() ^ xx;
679 intptr_t yy = (xx & ~((int) markOopDesc::age_mask_in_place));
722 xx = (intptr_t) rcvr->klass()->klass_part()->prototype_header() | (intptr_t) THREAD;
740 xx = (intptr_t) rcvr->klass()->klass_part()->prototype_header() | (intptr_t) THREAD;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp1043 intptr_t xx = x - off; local
1044 assert_signed_word_disp_range(xx, 16);
1045 int r = (xx >> 2) & ((1 << 14) - 1)
1046 | ( ( (xx>>(2+14)) & 3 ) << 20 );
1063 intptr_t xx = x - off; local
1064 assert_signed_word_disp_range(xx, 10);
1065 int r = ( ( (xx >> 2 ) & ((1 << 8) - 1) ) << 5 )
1066 | ( ( (xx >> (2+8)) & 3 ) << 19 );
1083 intptr_t xx = x - off; local
1084 assert_signed_word_disp_range(xx, nbit
[all...]
/openjdk7/jdk/src/share/back/
H A Dutil.c765 char * xx; local
767 xx = strchr(signature, ')');
768 if (xx == NULL || *(xx + 1) == 0) {
771 *typeKey = *(xx + 1);
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1223 int xx; local
1225 xx = XKeysymToKeycode((Display*)jlong_to_ptr(display), SunXK_F37);
1226 return (!xx) ? JNI_FALSE : JNI_TRUE;
1232 int xx; local
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c388 context->transform.xx = FloatToFTFixed((float)dmat[0]/ptsz);
802 (float) (advh * FTFixedToFloat(context->transform.xx));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java988 int xx = x;
990 while(xx <= x+rects[tabIndex].width) {
992 g.drawLine(xx+yCropLen[i],y-xCropLen[i],
993 xx+yCropLen[i+1]-1,y-xCropLen[i+1]);
995 xx+=CROP_SEGMENT;

Completed in 137 milliseconds

123