Searched refs:c1 (Results 1 - 25 of 207) sorted by relevance

123456789

/openjdk7/langtools/test/tools/javac/ClassLiterals/
H A DLiteralInterface_1.java29 Class c1 = Object.class; field in interface:LiteralInterface_1
H A DLiteralInterfaceImpl.java38 private static void check(Class c1, Class c2) throws Exception{ argument
39 if (c1 != c2) {
40 throw new Exception("mismatch: " + c1 + ", " + c2);
45 check(c1, Object.class);
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestRSACipher.java62 Cipher c1 = Cipher.getInstance(rsaAlgo, p);
65 c1.init(Cipher.ENCRYPT_MODE, publicKey);
66 e = c1.doFinal(b);
67 c1.init(Cipher.DECRYPT_MODE, privateKey);
68 d = c1.doFinal(e);
75 c1.init(Cipher.DECRYPT_MODE, publicKey);
77 d = c1.doFinal(e);
83 c1.init(Cipher.ENCRYPT_MODE, privateKey);
84 e = c1.doFinal(b);
85 c1
[all...]
H A DTestRawRSACipher.java58 Cipher c1 = Cipher.getInstance("RSA/ECB/NoPadding", p);
61 c1.init(Cipher.ENCRYPT_MODE, kp.getPublic());
64 cipherText = c1.doFinal(plainText);
71 c1.init(Cipher.DECRYPT_MODE, kp.getPrivate());
73 recoveredText = c1.doFinal(cipherText);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DIntDcm.h53 #define ExtractIntDcmComponentsX123(pixel, c1, c2, c3) \
57 (c1) = ((pixel) >> 16) & 0xff; \
60 #define ExtractIntDcmComponents123X(pixel, c1, c2, c3) \
64 (c1) = ((pixel) >> 24) & 0xff; \
67 #define ExtractIntDcmComponents1234(pixel, c1, c2, c3, c4) \
72 (c1) = ((pixel) >> 24) & 0xff; \
75 #define ComposeIntDcmComponentsX123(c1, c2, c3) \
76 (((((c1) << 8) | (c2)) << 8) | (c3))
78 #define ComposeIntDcmComponents123X(c1, c2, c3) \
79 ((((((c1) <<
[all...]
/openjdk7/hotspot/test/compiler/7024475/
H A DTest7024475.java39 static void test(Test7024475 test, int i, int c0, int j, int c1) { argument
41 if (c1 > c0) {
45 int index = c0 * 256 + c1;
51 c1--;
56 c1 = 255;
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DIsAvailable.java44 HttpClient c1 = HttpClient.New(url1);
50 c1.setReadTimeout(readTimeout);
51 boolean a = (boolean) available.invoke(c1);
55 if (c1.getReadTimeout() != readTimeout) {
59 c1.closeServer();
61 a = (boolean) available.invoke(c1);
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DNullTest.java41 Channel c1, c2;
43 c1 = SelectorProvider.provider().inheritedChannel();
48 if (c1 != null || c2 != null) {
/openjdk7/langtools/test/com/sun/javadoc/testUseOption/pkg2/
H A DC3.java45 public void method(pkg1.C1 c1) {} argument
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DKeyWrapping.java36 Cipher c1 = Cipher.getInstance("DES", "SunJCE");
50 c1.init(Cipher.WRAP_MODE, sKey);
52 byte[] wrappedKey = c1.wrap(sessionKey);
54 c1.init(Cipher.UNWRAP_MODE, sKey);
57 (SecretKey)c1.unwrap(wrappedKey, "DES",
81 c1.init(Cipher.WRAP_MODE, sKey);
83 byte[] wrappedPub = c1.wrap(pub);
84 byte[] wrappedPri = c1.wrap(pri);
86 c1.init(Cipher.UNWRAP_MODE, sKey);
88 Key unwrappedPub = c1
[all...]
/openjdk7/jdk/test/java/lang/System/finalization/
H A DFinExit.sh29 x=`$TESTJAVA/bin/java -cp "$TESTCLASSES" FinExit | cut -c1`
/openjdk7/langtools/test/tools/javac/
H A DThrowsIntersection_1.java47 abstract class c1 implements a, b {} class in inherits:a,b
50 class d extends c1 {
H A DThrowsIntersection_2.java48 abstract class c1 implements a, b {} class in inherits:a,b
51 class d extends c1 {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DASCIICaseInsensitiveComparator.java44 char c1 = s1.charAt(i);
46 assert c1 <= '\u007F' && c2 <= '\u007F';
47 if (c1 != c2) {
48 c1 = (char)toLower(c1);
50 if (c1 != c2) {
51 return c1 - c2;
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharSJIS.java53 protected char getUnicode(int c1, int c2) { argument
55 int rowOffset = c1 < 0xA0 ? 0x70 : 0xB0;
57 int b1 = ((c1 - rowOffset) << 1) - adjust;
H A DByteToCharPCK.java60 protected char getUnicode(int c1, int c2) { argument
62 if ((outChar = super.getUnicode(c1, c2)) != '\uFFFD') {
67 int rowOffset = c1 < 0xA0 ? 0x70 : 0xB0;
69 int b1 = ((c1 - rowOffset) << 1) - adjust;
H A DCharToBytePCK.java87 int c1 = (pos >> 8) & 0xff;
89 int rowOffset = c1 < 0x5F ? 0x70 : 0xB0;
90 int cellOffset = (c1 % 2 == 1) ? (c2 > 0x5F ? 0x20 : 0x1F) : 0x7E;
91 result = ((((c1 + 1 ) >> 1) + rowOffset) << 8) | (c2 + cellOffset);
H A DCharToByteSJIS.java71 int c1 = (pos >> 8) & 0xff;
73 int rowOffset = c1 < 0x5F ? 0x70 : 0xB0;
74 int cellOffset = (c1 % 2 == 1) ? (c2 > 0x5F ? 0x20 : 0x1F) : 0x7E;
75 return ((((c1 + 1 ) >> 1) + rowOffset) << 8) | (c2 + cellOffset);
/openjdk7/langtools/test/com/sun/javadoc/testUseOption/pkg1/
H A DC2.java48 public void method(pkg1.C1 c1) {} argument
/openjdk7/langtools/test/tools/javac/generics/6946618/
H A DT6946618c.java13 C<?> c1 = new C<? extends String>();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/util/
H A DUtf16.java59 static public int scalarValue(char c1, char c2) { argument
60 return (((c1 & 0x3FF) << 10) | (c2 & 0x3FF)) + 0x10000;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DLineInputStream.java75 int c1;
79 while ((c1 = in.read()) != -1) {
80 if (c1 == '\n') // Got NL, outa here.
82 else if (c1 == '\r') {
104 buf[offset++] = (char)c1;
107 if ((c1 == -1) && (offset == 0))
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTcpTest.java35 static Socket c1, c2, c3, s1, s2, s3; field in class:TcpTest
78 c1 = new Socket ("::1", port);
80 simpleDataExchange (c1, s1);
82 c1.close();
84 c1 = new Socket ("127.0.0.1", port);
93 simpleDataExchange (c1, s2);
96 simpleDataExchange (c1, s1);
99 c1.close();
124 c1 = new Socket (ia4addr, port);
132 c1
[all...]
/openjdk7/jdk/test/java/awt/Focus/ChoiceFocus/
H A DChoiceFocus.java66 Choice c1 = new Choice();
67 c1.add("Choice 1, Item 1");
68 c1.add("Choice 1, Item 2");
73 c1.addKeyListener(new KeyListener(){
88 f.add(c1);
100 Util.clickOnComp(c1, robot);
104 Util.clickOnComp(c1, robot);
/openjdk7/hotspot/test/compiler/6910605/
H A DTest.java59 int c1=2, c2=3, c3=4, c4=5, c5=6;
62 int[][] iii=(int[][])(new int[c1][c2]);
64 for( j=0; j<c1; j++ ) {

Completed in 198 milliseconds

123456789