/openjdk7/langtools/test/tools/javac/annotations/6881115/ |
H A D | T6881115.java | 10 B b() default @B(b2 = 1, b2 = 2); 11 B[] b_arr() default {@B(), @B(b2 = 1, b2 = 2)}; 15 int b2(); method in interface:B 17 @A(b = @B(b2 = 1, b2 = 2), 18 b_arr = {@B(), @B(b2 = 1, b2 = 2)}) 19 class T6881115</*308 @A(b = @B(b2 [all...] |
/openjdk7/langtools/test/tools/javac/DefiniteAssignment/DefAssignBoolean/ |
H A D | DefAssignBoolean_12.java | 37 boolean b1, b2; 42 if ((t || (b2 = f)) ? t && (b2 = t) : f) 43 r = b2;
|
H A D | DefAssignBoolean_14.java | 37 boolean b1, b2; 42 if ((t || (b2 = f)) ? f || (b2 = f) : t); 44 r = b2;
|
H A D | DefAssignCond.java | 36 boolean t = true, f = false, b1, b2; 39 if (f ? true : (b2 = f)) ; 41 f = b2;
|
H A D | DefAssignBoolean_11.java | 37 boolean b1, b2;
|
H A D | DefAssignBoolean_13.java | 37 boolean b1, b2;
|
/openjdk7/jdk/test/java/net/DatagramPacket/ |
H A D | Offset.java | 37 byte b2[] = new byte[20]; 38 p.setData(b2);
|
/openjdk7/langtools/test/tools/javac/mixedTarget/ |
H A D | CompatibleAbstracts4.java | 27 C b2 = (C) a;
|
H A D | CompatibleAbstracts2.java | 29 B b2 = (B) a;
|
/openjdk7/jdk/test/java/io/LineNumberInputStream/ |
H A D | MarkReset.java | 42 int b2 = in.read(); 44 if(b1 != b2) 45 throw new Exception("Read Wrong bytes: Expected " + b1 + " got " + b2);
|
/openjdk7/jdk/test/java/math/BigInteger/ |
H A D | UnicodeConstructor.java | 47 BigInteger b2 = new BigInteger("\uff11\uff10\uff11\uff10"); 48 System.err.println(b2.toString());
|
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/ |
H A D | TestUtility.java | 55 public static boolean equalsBlock(byte[] b1, byte[] b2) { argument 57 if (b1.length != b2.length) 61 if (b1[i] != b2[i]) 68 public static boolean equalsBlock(byte[] b1, byte[] b2, int len) { argument 71 if (b1[i] != b2[i])
|
/openjdk7/jdk/test/sun/nio/cs/OLD/ |
H A D | DBCS_IBM_EBCDIC_Decoder.java | 85 int b1, b2; 117 b2 = sa[sp + 1]; 118 if (b2 < 0) 119 b2 += 256; 124 if ((b1 != 0x40 || b2 != 0x40) && 125 (b2 < 0x41 || b2 > 0xfe)) { 130 v = b1 * 256 + b2; 155 int b1, b2; 188 b2 [all...] |
H A D | DBCS_ONLY_IBM_EBCDIC_Decoder.java | 60 private static boolean isValidDoubleByte(int b1, int b2) { argument 61 return (b1 == 0x40 && b2 == 0x40) // DBCS-HOST SPACE 63 0x41 <= b2 && b2 <= 0xfe); 81 int b2 = sa[sp + 1] & 0xff; 83 if (!isValidDoubleByte(b1, b2)) { 87 int v = b1 * 256 + b2; 109 int b2 = src.get() & 0xff; 111 if (!isValidDoubleByte(b1, b2)) { 115 int v = b1 * 256 + b2; [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/ |
H A D | Base64.java | 126 byte k=0, l=0, b1=0,b2=0,b3=0; 136 b2 = binaryData[dataIndex++]; 140 System.out.println( "b1= " + b1 +", b2= " + b2 + ", b3= " + b3 ); 143 l = (byte)(b2 & 0x0f); 148 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0); 178 b2 = binaryData[dataIndex +1 ]; 179 l = ( byte ) ( b2 [all...] |
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/ |
H A D | Base64.java | 398 byte k=0, l=0, b1=0,b2=0,b3=0; 408 b2 = binaryData[dataIndex++]; 412 l = (byte)(b2 & 0x0f); 417 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0); 433 b2 = binaryData[dataIndex++]; 437 l = (byte)(b2 & 0x0f); 442 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>> [all...] |
/openjdk7/jdk/test/sun/nio/cs/ |
H A D | MalformedSurrogates.java | 59 byte[] b2 = t3.getBytes(); 60 System.out.println(b2.length); 61 for(int i = 0; i < b2.length; i++) 62 System.err.println("[" + i + "]" + "=" + (char) b2[i]); 63 if (b2.length != 8) {
|
/openjdk7/jdk/test/java/math/BigDecimal/ |
H A D | AddTests.java | 82 * Print sum of b1 and b2; correct result will not throw an 85 private static int addWithoutException(BigDecimal b1, BigDecimal b2, MathContext mc) { argument 90 BigDecimal sum = b1.add(b2, mc); 91 printAddition(b1, b2, sum.toString()); 94 printAddition(b1, b2, "Exception!"); 198 private static void printAddition(BigDecimal b1, BigDecimal b2, String s) { argument 199 System.out.println("" + b1+ "\t+\t" + b2 + "\t=\t" + s); 202 private static int roundAway(BigDecimal b1, BigDecimal b2) { argument 206 b2.precision(); 209 BigDecimal b2_negate = b2 222 roundAway1(BigDecimal b1, BigDecimal b2) argument 233 roundAway0(BigDecimal b1, BigDecimal b2) argument [all...] |
/openjdk7/langtools/test/tools/javac/capture/ |
H A D | Capture5.java | 44 void f(boolean b1, boolean b2, boolean b3, A a, B<String> b, C c) { argument 46 r = b2 ? a : b; 47 r = b1 ? (b2 ? a : b) : (b3 ? b : c);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/ |
H A D | AddressDataSource.java | 52 int b2 = readByte() & 0xFF; 53 return (short) ((b1 << 8) | b2); 59 int b2 = ((int) readByte()) & 0xFF; 62 return ((b1 << 24) | (b2 << 16) | (b3 << 8) | b4); 68 long b2 = ((long) readByte()) & 0xFFL; 75 return (((((b1 << 24) | (b2 << 16) | (b3 << 8) | b4)) << 32) |
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ |
H A D | AddressDataSource.java | 52 int b2 = readByte() & 0xFF; 53 return (short) ((b1 << 8) | b2); 59 int b2 = ((int) readByte()) & 0xFF; 62 return ((b1 << 24) | (b2 << 16) | (b3 << 8) | b4); 68 long b2 = ((long) readByte()) & 0xFFL; 75 return (((((b1 << 24) | (b2 << 16) | (b3 << 8) | b4)) << 32) |
|
/openjdk7/jdk/test/java/security/MessageDigest/ |
H A D | ByteBuffers.java | 52 ByteBuffer b2 = b1.slice(); 53 b2.put(t); 54 b2.clear(); 55 byte[] d2 = digest(md, b2, random); 70 b2.clear(); 71 ByteBuffer b4 = b2.asReadOnlyBuffer();
|
/openjdk7/jdk/test/java/security/Signature/ |
H A D | ByteBuffers.java | 60 ByteBuffer b2 = b1.slice(); 61 b2.put(t); 62 b2.clear(); 63 verify(sig, signature, b2, random); 72 b2.clear(); 73 ByteBuffer b4 = b2.asReadOnlyBuffer();
|
/openjdk7/jdk/test/javax/crypto/Mac/ |
H A D | ByteBuffers.java | 60 ByteBuffer b2 = b1.slice(); 61 b2.put(t); 62 b2.clear(); 63 verify(mac, macValue, b2, random); 72 b2.clear(); 73 ByteBuffer b4 = b2.asReadOnlyBuffer();
|
/openjdk7/jdk/test/sun/misc/ |
H A D | CopyMemory.java | 121 byte[] b2 = new byte[BUFFER_SIZE]; 124 set(b2, 0, BUFFER_SIZE, FILLER2); 131 b2, Unsafe.ARRAY_BYTE_BASE_OFFSET + ofs2, len); 132 check(b2, 0, ofs2 - 1, FILLER2); 133 check(b2, ofs2, len, val); 134 check(b2, ofs2 + len, BUFFER_SIZE - (ofs2 + len), FILLER2); 141 long b2 = getMemory(BUFFER_SIZE); 144 set(unsafe, b2, 0, BUFFER_SIZE, FILLER2); 151 null, b2 + ofs2, len); 152 check(unsafe, b2, [all...] |