Searched defs:b2 (Results 1 - 25 of 68) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/annotations/6881115/
H A DT6881115.java10 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/javadoc/
H A DBooleanConst.java46 public static final boolean b2 = true; field in class:BooleanConst
62 } else if (f.name().equals("b2")) {
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DTestUtility.java55 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/security/pkcs11/Cipher/
H A DTestRSACipher.java115 private static void match(byte[] b1, byte[] b2) throws Exception { argument
116 if (Arrays.equals(b1, b2) == false) {
118 System.out.println(toString(b2));
/openjdk7/jdk/test/java/awt/Focus/NoAutotransferToDisabledCompTest/
H A DNoAutotransferToDisabledCompTest.java46 JButton b2 = new JButton("b2"); field in class:NoAutotransferToDisabledCompTest
58 frame.add(b2);
65 b2.setEnabled(false);
/openjdk7/jdk/test/java/text/BreakIterator/
H A DExceptionTest.java119 private static void check(boolean b1, boolean b2) { argument
120 if (b1 != b2) {
121 throw new RuntimeException(b1 + " != " + b2);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_ONLY_IBM_EBCDIC_Decoder.java60 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...]
H A DDBCS_IBM_ASCII_Encoder.java49 private byte b2; field in class:DBCS_IBM_ASCII_Encoder
117 b2 = (byte)(theBytes & 0x000000ff);
119 if (b1 == 0x00 && b2 == 0x00
127 da[dp++] = (byte) b2;
132 da[dp++] = (byte) b2;
167 b2 = (byte)(theBytes & 0x000000ff);
169 if (b1 == 0x00 && b2 == 0x00
177 dst.put((byte) b2);
182 dst.put((byte) b2);
H A DDBCS_IBM_EBCDIC_Encoder.java49 private byte b2; field in class:DBCS_IBM_EBCDIC_Encoder
140 b2 = (byte)(theBytes & 0x000000ff);
142 if (b1 == 0x00 && b2 == 0x00
166 da[dp++] = b2;
169 da[dp++] = b2;
205 b2 = (byte)(theBytes & 0x000000ff);
207 if (b1== 0x00 && b2 == 0x00
233 dst.put(b2);
236 dst.put(b2);
/openjdk7/langtools/test/tools/javac/capture/
H A DCapture5.java44 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/langtools/test/tools/javac/conditional/6500343/
H A DT6500343a.java38 static Object crash(I i, A1 a1, A2 a2, boolean b1, boolean b2) { argument
39 return b1 ? i : b2 ? a2 : a1;
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos05.java46 void test(boolean b1, boolean b2) { argument
51 else if (b2) {
/openjdk7/langtools/test/tools/javac/warnings/6747671/
H A DT6747671.java23 T6747671.B b2;//raw warning field in class:T6747671
/openjdk7/jdk/test/java/math/BigDecimal/
H A DAddTests.java82 * 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/jdk/test/java/nio/Buffer/
H A DBasic.java71 static void fail(String s, Buffer b, Buffer b2) { argument
73 + toString(b) + ", " + toString(b2));
/openjdk7/jdk/test/sun/nio/cs/
H A DEucJpLinux0212.java37 private static void equal(CharBuffer b1, CharBuffer b2) { argument
38 equal(b1.position(), b2.position());
39 equal(b1.limit(), b2.limit());
40 System.out.printf("positions=%d %d%n", b1.position(), b2.position());
41 System.out.printf("limits=%d %d%n", b1.limit(), b2.limit());
43 equal((int)b1.get(i), (int)b2.get(i));
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DMS932_0213.java59 protected char decodeDouble(int b1, int b2) { argument
60 char c = decMS932.decodeDouble(b1, b2);
62 return super.decodeDouble(b1, b2);
H A DMS950_HKSCS_XP.java71 public char decodeDoubleEx(int b1, int b2) { argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpIpAddress.java89 * @param b2 Byte 2.
94 public SnmpIpAddress(long b1, long b2, long b3, long b4) { argument
95 super(b1, b2, b3, b4) ;
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharDBCS_ASCII.java47 char decodeDouble(int b1, int b2) { argument
48 return dec.decodeDouble(b1, b2);
H A DByteToCharDBCS_EBCDIC.java56 char decodeDouble(int b1, int b2) { argument
57 return dec.decodeDouble(b1, b2);
H A DByteToCharEUC2.java51 char decodeDouble(int b1, int b2) { argument
52 return dec.decodeDouble(b1, b2);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeDecoder.java60 private char decode(int b1, int b2) { argument
62 return (char)((b1 << 8) | b2);
64 return (char)((b2 << 8) | b1);
73 int b2 = src.get() & 0xff;
77 char c = (char)((b1 << 8) | b2);
88 // FALL THROUGH to process b1, b2 normally
92 char c = decode(b1, b2);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_163.c177 mp_digit a2 = 0, a1 = 0, a0, b2 = 0, b1 = 0, b0; local
213 b2 = MP_DIGIT(b, 2);
221 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local
227 s_bmul_3x3(MP_DIGITS(r), a2, a1, a0, b2, b1, b0); local
228 s_bmul_3x3(rm, a5 ^ a2, a4 ^ a1, a3 ^ a0, b5 ^ b2, b4 ^ b1,
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11GB2312.java108 protected char decodeDouble(int b1, int b2) { argument
109 return dec.decodeDouble(b1, b2);
130 int b2 = sa[sp + 1] & 0xFF | 0x80;
131 char c = decodeDouble(b1, b2);

Completed in 121 milliseconds

123