Searched refs:xx (Results 1 - 25 of 52) sorted by relevance

123

/openjdk7/langtools/test/tools/javah/T7126832/
H A Djava.java24 package xx; package
/openjdk7/hotspot/agent/test/jdi/
H A Dsagdoit.java91 public void doOneThreadGroup(ThreadGroupReference xx) { argument
92 pp("threadGroup:" + xx.name());
94 pp("parent() = " + xx.parent());
97 doThreadList(xx.threads());
101 doThreadGroupList(xx.threadGroups());
121 public void doOneThread(ThreadReference xx) { argument
122 pp("Thread: " + xx.name());
124 pp("suspendCount() = " + xx.suspendCount());
128 pp("status() = " + xx.status());
129 pp("isSuspended() = " + xx
189 doOneClass(ReferenceType xx) argument
244 doReferenceTypeFields(ReferenceType xx) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/awt/utility/
H A Drect.h36 #define RECT_SET(r,xx,yy,ww,hh) \
38 (r).left=(xx); \
40 (r).right=(xx)+(ww); \
/openjdk7/jdk/test/com/sun/jdi/
H A DJdbMethodExitTest.sh101 static void doit($classname xx) {
103 xx.i_bytef();
104 xx.i_charf();
105 xx.i_doublef();
106 xx.i_floatf();
107 xx.i_intf();
108 xx.i_shortf();
109 xx.i_booleanf();
110 xx.i_stringf();
111 xx
[all...]
H A DEarlyReturnNegativeTest.java122 static void doit(EarlyReturnNegativeTarg xx) throws Exception { argument
126 xx.i_bytef();
127 xx.i_charf();
128 xx.i_doublef();
129 xx.i_floatf();
130 xx.i_intf();
131 xx.i_longf();
132 xx.i_shortf();
133 xx.i_booleanf();
134 xx
[all...]
H A DJdbLockTest.sh46 sleeper xx = new sleeper();
47 xx.start();
H A DMethodExitReturnValuesTest.java142 static void doit(MethodExitReturnValuesTarg xx) { argument
164 xx.i_bytef();
165 xx.i_charf();
166 xx.i_doublef();
167 xx.i_floatf();
168 xx.i_intf();
169 xx.i_longf();
170 xx.i_shortf();
171 xx.i_booleanf();
172 xx
[all...]
H A DJdbReadTwiceTest.sh91 xx=`fgrep -i "$*" $tmpResult | wc -l`
92 if [ $xx != $count ] ; then
93 echo "Failed: Expected $count, got $xx: $*"
99 echo "Passed: Expected $count, got $xx: $*"
H A DEarlyReturnTest.java208 static void doit(EarlyReturnTarg xx) throws Exception { argument
237 if (!chk( xx.i_bytef(89))) failureCount++;
238 if (!chk( xx.i_charf())) failureCount++;
239 if (!chk( xx.i_doublef())) failureCount++;
240 if (!chk( xx.i_floatf())) failureCount++;
241 if (!chk( xx.i_intf())) failureCount++;
242 if (!chk( xx.i_longf())) failureCount++;
243 if (!chk( xx.i_shortf())) failureCount++;
244 if (!chk( xx.i_booleanf())) failureCount++;
245 if (!chk( xx
[all...]
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_config.h51 #define RECT_SET(r,xx,yy,ww,hh) (r).left=(xx);(r).top=(yy); \
52 (r).right=(xx)+(ww); (r).bottom=(yy)+(hh);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLanczosResampler.java91 int xx = iix - sinc_table_center;
93 for (int i = 0; i < sinc_table_size; i++, xx++)
94 y += in[xx] * sinc_table[i];
103 int xx = iix - sinc_table_center;
105 for (int i = 0; i < sinc_table_size; i++, xx++)
106 y += in[xx] * sinc_table[i];
H A DSoftSincResampler.java105 int xx = iix - sinc_table_center;
107 for (int i = 0; i < sinc_table_size; i++, xx++)
108 y += in[xx] * sinc_table[i];
124 int xx = iix - sinc_table_center;
126 for (int i = 0; i < sinc_table_size; i++, xx++)
127 y += in[xx] * sinc_table[i];
H A DSoftTuning.java108 int xx = data[r++] & 0xFF;
111 if (!(xx == 127 && yy == 127 && zz == 127))
113 (((xx * 16384) + (yy * 128) + zz) / 16384.0);
124 int xx = data[r++] & 0xFF;
127 if (!(xx == 127 && yy == 127 && zz == 127))
128 tuning[kk] = 100.0*(((xx*16384) + (yy*128) + zz)/16384.0);
144 int xx = data[r++] & 0xFF;
147 if (!(xx == 127 && yy == 127 && zz == 127))
148 tuning[i] = 100.0*(((xx*16384) + (yy*128) + zz)/16384.0);
198 int xx
[all...]
H A DSoftFilter.java204 float xx = (y * gain) * wet + (x) * (1 - wet);
209 float yy = (a0*xx + a1*xx1 + a2*xx2 - b1*yy1 - b2*yy2);
210 buffer[i] = (yy * gain) * wet + (xx) * (1 - wet);
212 xx1 = xx;
221 float xx = (y * gain) * wet + (x) * (1 - wet);
226 float yy = (a0*xx + a1*xx1 + a2*xx2 - b1*yy1 - b2*yy2);
227 buffer[i] = (yy * gain) * wet + (xx) * (1 - wet);
229 xx1 = xx;
243 float xx = (y * gain) * wet + (x) * (1 - wet);
248 float yy = (a0*xx
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/utility/
H A Drect.h36 #define RECT_SET(r,xx,yy,ww,hh) \
38 (r).x=(xx); \
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DMatrix3D.java46 float xx, xy, xz, xo; field in class:Matrix3D
53 xx = 1.0f;
60 xx *= f;
76 xx *= xf;
103 float Nxx = (float) (xx * ct + zx * st);
108 float Nzx = (float) (zx * ct - xx * st);
114 xx = Nxx;
155 float Nyx = (float) (yx * ct + xx * st);
160 float Nxx = (float) (xx * ct - yx * st);
170 xx
[all...]
/openjdk7/jdk/src/share/demo/applets/WireFrame/
H A DMatrix3D.java46 float xx, xy, xz, xo; field in class:Matrix3D
53 xx = 1.0f;
60 xx *= f;
76 xx *= xf;
103 float Nxx = (float) (xx * ct + zx * st);
108 float Nzx = (float) (zx * ct - xx * st);
114 xx = Nxx;
155 float Nyx = (float) (yx * ct + xx * st);
160 float Nxx = (float) (xx * ct - yx * st);
170 xx
[all...]
/openjdk7/langtools/test/tools/javah/
H A DT7185778.java35 * @run main T7185778 xx$yy
54 class xx$yy {
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_config.h49 #define RECT_SET(r,xx,yy,ww,hh) (r).x=(xx), (r).y=(yy); (r).width=(ww); \
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadGroupReferenceImpl.java72 ThreadReferenceImpl xx = (ThreadReferenceImpl)vm.threadMirror(jt);
73 myList.add(xx);
83 ThreadGroupReferenceImpl xx = (ThreadGroupReferenceImpl)vm.threadGroupMirror(
85 myList.add(xx);
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp203 float xx, xy, yx, yy; local
210 xx = adjustment.fX;
211 xy = xx * txMat[1];
212 xx = xx * txMat[0];
218 adjustment.fX = xx + yx;
273 float xx, xy, yx, yy; local
279 xx = xFunits * xScaleUnitsToPoints;
282 xy = xx * txMat[1];
283 xx
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/util/
H A DCacheMapTest.java93 int xx = x.intValue();
94 if (xx < lowest || xx >= size) {
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_config.h50 #define RECT_SET(r,xx,yy,ww,hh) ;
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadExecutionSynchronizer.java57 } catch (InterruptedException xx) {}
/openjdk7/jdk/test/java/util/PluggableLocale/
H A DGenericTest.java83 Locale xx = new Locale("xx");
84 Locale dispLocale = new Locale ("xx", "YY", "ZZ");
86 String xxname = xx.getDisplayLanguage(xx);
87 String expected = localeNP.getDisplayLanguage(xx.getLanguage(), dispLocale);

Completed in 105 milliseconds

123