/openjdk7/jdk/src/share/classes/sun/awt/geom/ |
H A D | PathConsumer2D.java | 50 float x3, float y3); 48 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
|
/openjdk7/jdk/src/share/classes/java/awt/font/ |
H A D | GlyphMetrics.java | 286 return (glyphType & 0x3) == STANDARD; 295 return (glyphType & 0x3) == LIGATURE; 304 return (glyphType & 0x3) == COMBINING; 313 return (glyphType & 0x3) == COMPONENT;
|
/openjdk7/hotspot/test/compiler/7110586/ |
H A D | Test7110586.java | 79 int x3 = 0; 88 x3 = test3(); 104 if (x3 != 12) { 105 System.out.println("ERROR (incr = +3): " + x3 + " != 12");
|
/openjdk7/langtools/test/tools/javac/ClassLiterals/ |
H A D | InnerClassLiterals.java | 40 Class x3 = void.class;
|
/openjdk7/langtools/test/tools/javac/ |
H A D | HexThree.java | 1225 +0x3.000000P+0, 1226 +0x3.000000P+0D, 1227 +0x3.000000P+0F, 1228 +0x3.000000P+0d, 1229 +0x3.000000P+0f, 1230 +0x3.000000P-0, 1231 +0x3.000000P-0D, 1232 +0x3.000000P-0F, 1233 +0x3.000000P-0d, 1234 +0x3 [all...] |
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | SocketOptions.java | 220 public final static int IP_TOS = 0x3;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/ |
H A D | Base64Encoder.java | 75 buf[ptr++] = encode(((input[i])&0x3)<<4); 82 ((input[i]&0x3)<<4) | 90 ((input[i]&0x3)<<4) | 94 ((input[i+2]>>6)&0x3));
|
/openjdk7/langtools/test/tools/javac/Diagnostics/6799605/ |
H A D | T6799605.java | 14 <T> void m(T6799605<T> x1, T6799605<T> x2, T6799605<T> x3) {} argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/ |
H A D | DebugVC50TypeEnums.java | 293 public static final int RESERVED_SIZE_SPECIAL_VOID = 0x3; 302 public static final int RESERVED_SIZE_INT_8_BYTE = 0x3; 307 public static final int RESERVED_SIZE_REAL_128_BIT = 0x3; 316 public static final int RESERVED_SIZE_REALLY_INT_2_BYTE_U = 0x3; // 2 byte unsigned integer
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | BASE64Encoder.java | 100 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); 108 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
|
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
H A D | TransformingPathConsumer2D.java | 145 float x3, float y3) 149 x3 + tx, y3 + ty); 199 float x3, float y3) 203 x3 * sx + tx, y3 * sy + ty); 262 float x3, float y3) 268 x3 * Mxx + y3 * Mxy + Mxt, 269 x3 * Myx + y3 * Myy + Myt); 312 float x3, float y3) 316 x3 * sx, y3 * sy); 371 float x3, floa 143 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument 197 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument 260 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument 310 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument 369 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument [all...] |
H A D | Curve.java | 58 float x3, float y3, 61 ax = 3 * (x2 - x3) + x4 - x1; 63 bx = 3 * (x1 - 2 * x2 + x3); 75 float x3, float y3) 79 bx = x1 - 2 * x2 + x3; 56 set(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) argument 73 set(float x1, float y1, float x2, float y2, float x3, float y3) argument
|
H A D | Stroker.java | 264 final float x3 = x4 + cv * my; 267 emitCurveTo(x1, y1, x2, y2, x3, y3, x4, y4, rev); 482 final float x3, final float y3, final boolean rev) 487 out.curveTo(x1, y1, x2, y2, x3, y3); 559 final float x3 = pts[off + 4], y3 = pts[off + 5]; 562 float dx4 = x4 - x3; 570 final boolean p3eqp4 = within(x3,y3,x4,y4, 6 * ulp(y4)); 575 dx1 = x3 - x1; 629 // [x2-x1, x4-x3][c1] 638 float x = 0.125f * (x1 + 3 * (x2 + x3) 479 emitCurveTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final float x3, final float y3, final boolean rev) argument 939 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/ |
H A D | BASE64EncoderStream.java | 168 out.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); 176 out.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); 215 (byte)pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]; 225 (byte)pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)];
|
/openjdk7/jdk/test/com/sun/jdi/ |
H A D | StringConvertTest.sh | 54 static JJ2[] x3 = new JJ2[2]; 87 x3[0] = new JJ2("array0"); 88 x3[1] = new JJ2("array1"); 94 System.out.println("x3.toString = " + x3.toString()); 155 #cmd print "(Object)($classname.x3)" 156 cmd print "((Object)$classname.x3).toString()"
|
/openjdk7/jdk/test/java/lang/reflect/Generics/ |
H A D | TestN1.java | 70 Inner3(X1 x1, X2 x2, X3 x3, T1 t1, T2 t2) {} argument 84 void foo(X3 x3){} argument 85 <X3> X3[] bar(X1 x1, X3[] x3, T1 t1) { return x3;} argument
|
/openjdk7/jdk/test/sun/security/provider/MessageDigest/ |
H A D | TestSHAClone.java | 40 (byte)0x1, (byte)0x2, (byte)0x3
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | WaveExtensibleFileReader.java | 62 int x3; field in class:WaveExtensibleFileReader.GUID 77 GUID(long i1, int s1, int s2, int x1, int x2, int x3, int x4, argument 84 this.x3 = x3; 99 d.x3 = riff.readUnsignedByte(); 126 if (x3 != t.x3)
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/ |
H A D | DatatypeConverterImpl.java | 589 ((input[i] & 0x3) << 4) 593 | ((input[i + 2] >> 6) & 0x3)); 599 buf[ptr++] = encode(((input[i]) & 0x3) << 4); 606 buf[ptr++] = encode(((input[i] & 0x3) << 4) 622 ((input[i] & 0x3) << 4) 626 | ((input[i + 2] >> 6) & 0x3)); 633 buf[1] = encode(((input[i]) & 0x3) << 4); 641 buf[1] = encode(((input[i] & 0x3) << 4) 666 ((input[i]&0x3)<<4) | 670 ((input[i+2]>>6)&0x3)); [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/ |
H A D | BASE64EncodingAlgorithm.java | 164 int x3 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+']; 169 value[idx++] = (byte) (((x2 & 0x0f) << 4) | (x3 >> 2)); 172 value[idx++] = (byte) (((x3 & 0x03) << 6) | x4);
|
/openjdk7/jdk/src/solaris/classes/sun/awt/ |
H A D | XSettings.java | 208 idx = (idx + len + 3) & ~0x3; 257 idx = (idx + nameLen + 3) & ~0x3; // pad to 32 bit 267 idx = (idx + len + 3) & ~0x3;
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/ |
H A D | Message.java | 54 static final byte TRAILING_TWO_BIT_BYTE_MASK = 0x3;
|
/openjdk7/jdk/src/share/native/sun/awt/medialib/ |
H A D | mlib_image_types.h | 164 MLIB_IMAGE_ALIGNED4 = 0x3,
|
/openjdk7/jdk/src/share/classes/sun/net/idn/ |
H A D | StringPrepDataReader.java | 124 private static final byte DATA_FORMAT_VERSION[] = {(byte)0x3, (byte)0x2,
|
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/ |
H A D | JulesPathBuf.java | 184 double x3 = coords[2]; 187 x2 = x1 + (x3 - x1) / 3; 200 points.setX(pointIndex, DoubleToCairoFixed(x3)); 202 currX = x3;
|