/openjdk7/langtools/test/tools/javac/DefiniteAssignment/DefAssignBoolean/ |
H A D | DefAssignBoolean_11.java | 37 boolean b1, b2; 42 if ((t && (b1 = t)) ? t : t && (b1 = f)) 43 r = b1;
|
H A D | DefAssignBoolean_13.java | 37 boolean b1, b2; 42 if ((t && (b1 = t)) ? f : t || (b1 = f)); 44 r = b1;
|
H A D | DefAssignCond.java | 36 boolean t = true, f = false, b1, b2; 37 if (t ? (b1 = t) : false) 38 t = b1;
|
H A D | DefAssignBoolean_12.java | 37 boolean b1, b2;
|
H A D | DefAssignBoolean_14.java | 37 boolean b1, b2;
|
/openjdk7/jdk/test/java/net/DatagramPacket/ |
H A D | Offset.java | 34 byte b1[] = new byte[1024]; 35 DatagramPacket p = new DatagramPacket(b1, 512, 512 );
|
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/ |
H A D | BoundsCollision.java | 41 Box<Number> b1 = b0; 42 b0.f(b1); // <<pass>>
|
/openjdk7/langtools/test/tools/javac/mandatoryWarnings/deprecated/ |
H A D | B.java | 11 B1 b1 = new B1();
|
/openjdk7/jdk/test/java/io/LineNumberInputStream/ |
H A D | MarkReset.java | 40 int b1 = in.read(); 44 if(b1 != b2) 45 throw new Exception("Read Wrong bytes: Expected " + b1 + " got " + b2);
|
/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) 60 for (int i=0; i<b1.length; i++) { 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/java/math/BigInteger/ |
H A D | UnicodeConstructor.java | 43 BigInteger b1 = new BigInteger("\uff10"); 44 System.err.println(b1.toString());
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/ |
H A D | UTF8Reader.java | 170 int b1 = index == fOffset 172 if (b1 == -1) { 175 if ((b1 & 0xC0) != 0x80) { 176 invalidByte(2, 2, b1); 178 c = ((b0 << 6) & 0x07C0) | (b1 & 0x003F); 184 int b1 = index == fOffset 186 if (b1 == -1) { 189 if ((b1 & 0xC0) != 0x80 190 || (b0 == 0xED && b1 >= 0xA0) 191 || ((b0 & 0x0F) == 0 && (b1 [all...] |
/openjdk7/jdk/test/sun/nio/cs/OLD/ |
H A D | DBCS_IBM_EBCDIC_Decoder.java | 85 int b1, b2; 86 b1 = sa[sp]; 91 if (b1 < 0) 92 b1 += 256; 94 if (b1 == SO) { // Shift out 102 } else if (b1 == SI) { 113 outputChar = singleByteToChar.charAt(b1); 124 if ((b1 != 0x40 || b2 != 0x40) && 130 v = b1 * 256 + b2; 155 int b1, b [all...] |
/openjdk7/jdk/test/java/util/BitSet/ |
H A D | BSMethods.java | 153 BitSet b1 = new BitSet(); 154 b1.set(1000); 157 b1.flip(100, 900); 165 b1.flip(2, 44); 347 BitSet b1 = new BitSet(256); 353 b1.set(generator.nextInt(255)); 360 BitSet b3 = (BitSet)b1.clone(); 365 boolean bit1 = b1.get(x); 371 checkSanity(b1, b2, b3); 381 BitSet b1 [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; 135 b1 = binaryData[dataIndex++]; 140 System.out.println( "b1= " + b1 +", b2= " + b2 + ", b3= " + b3 ); 144 k = (byte)(b1 & 0x03); 146 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0); 165 b1 = binaryData[dataIndex]; 166 k = (byte) ( b1 [all...] |
/openjdk7/hotspot/test/compiler/7119644/ |
H A D | TestByteDoubleVect.java | 54 double[] b1 = new double[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (byte)123, 103.); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (byte)123, 103.); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestByteFloatVect.java | 54 float[] b1 = new float[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (byte)123, 103.f); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (byte)123, 103.f); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestByteIntVect.java | 54 int[] b1 = new int[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (byte)123, (int)103); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (byte)123, (int)103); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestByteLongVect.java | 54 long[] b1 = new long[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (byte)123, (long)103); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (byte)123, (long)103); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestByteShortVect.java | 54 short[] b1 = new short[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (byte)123, (short)103); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (byte)123, (short)103); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestCharShortVect.java | 54 short[] b1 = new short[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (char)123, (short)103); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (char)123, (short)103); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestFloatDoubleVect.java | 54 double[] b1 = new double[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, 123.f, 103.); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, 123.f, 103.); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestIntDoubleVect.java | 54 double[] b1 = new double[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (int)123, 103.); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (int)123, 103.); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestIntFloatVect.java | 54 float[] b1 = new float[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (int)123, 103.f); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (int)123, 103.f); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |
H A D | TestIntLongVect.java | 54 long[] b1 = new long[ARRLEN]; 58 test_ci(a1, b1); 60 test_cp(a1, a2, b1, b2); 61 test_ci_neg(a1, b1); 62 test_vi_neg(a1, b1, (int)123, (long)103); 63 test_cp_neg(a1, a2, b1, b2); 64 test_ci_oppos(a1, b1); 65 test_vi_oppos(a1, b1, (int)123, (long)103); 66 test_cp_oppos(a1, a2, b1, b2); 67 test_ci_aln(a1, b1); [all...] |