Searched defs:c1 (Results 1 - 25 of 81) sorted by relevance

1234

/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/smartcardio/
H A DTestChannel.java40 static final byte[] c1 = parse("00 A4 04 00 07 A0 00 00 00 62 81 01 00"); field in class:TestChannel
/openjdk7/langtools/test/com/sun/javadoc/testUseOption/pkg2/
H A DC3.java45 public void method(pkg1.C1 c1) {} argument
/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/langtools/test/com/sun/javadoc/testUseOption/pkg1/
H A DC2.java48 public void method(pkg1.C1 c1) {} argument
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest6849805.java40 public void test(Color c1, Color c2, float f) { argument
41 Color r = getDerivedColor(c1, c2, f);
42 Color test = (f > 0 ? c2 : 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/hotspot/agent/src/share/classes/sun/jvm/hotspot/c1/
H A DRuntime1.java25 package sun.jvm.hotspot.c1;
/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/jdk/src/share/classes/sun/io/
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 DByteToCharSJIS.java53 protected char getUnicode(int c1, int c2) { argument
55 int rowOffset = c1 < 0xA0 ? 0x70 : 0xB0;
57 int b1 = ((c1 - rowOffset) << 1) - adjust;
/openjdk7/langtools/test/tools/javac/generics/inference/6650759/
H A DT6650759i.java46 static <W, U extends A<U, V>, V extends B<V>> W m3(Class<W> c1, C<U, V> c2) { argument
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC1.java45 public abstract C1<T> mc1t(T t, C1<T> c1t, C1 c1); argument
/openjdk7/jdk/src/share/classes/java/net/
H A DCookieManager.java429 public int compare(HttpCookie c1, HttpCookie c2) { argument
430 if (c1 == c2) return 0;
431 if (c1 == null) return -1;
435 if (!c1.getName().equals(c2.getName())) return 0;
438 if (c1.getPath().startsWith(c2.getPath()))
440 else if (c2.getPath().startsWith(c1.getPath()))
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_v_ImageConstLogic.h157 mlib_d64 c1, c2, c3; local
178 c1 = vis_faligndata(dc01, dc02);
182 c1 = dc01;
201 dpp[0] = VIS_CONSTLOGIC(c1, spp[0]);
211 da = VIS_CONSTLOGIC(c1, sa1);
239 c1 = vis_faligndata(dc01, dc02);
243 c1 = dc01;
269 dpp[0] = VIS_CONSTLOGIC(c1, ssa);
285 da = VIS_CONSTLOGIC(c1, sa);
334 c1
[all...]
/openjdk7/jdk/test/java/awt/print/PrinterJob/ImagePrinting/
H A DImageTypes.java113 void paintImage(BufferedImage bi, Color c1, Color c2) { argument
115 GradientPaint tp= new GradientPaint(0.0f, 0.0f, c1, 10f, 8f, c2, true);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java183 private void validate(Collection c1, Collection c2, boolean sorted) { argument
184 if (c1.size() != c2.size()) {
188 Iterator first = c1.iterator();
199 Iterator first = c1.iterator();
/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/src/share/classes/sun/tools/jconsole/
H A DUtilities.java126 * Modifies color c1 to ensure it has acceptable contrast
132 public static Color ensureContrast(Color c1, Color c2) { argument
133 double y1 = getColorBrightness(c1);
138 c1 = setColorBrightness(c1, y2 + 125.0);
140 c1 = setColorBrightness(c1, y2 - 125.0);
144 return c1;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DPCK.java83 protected char decodeDouble(int c1, int c2) { argument
86 if ((outChar = super.decodeDouble(c1, c2)) != '\uFFFD') {
91 int rowOffset = c1 < 0xA0 ? 0x70 : 0xB0;
93 int b1 = ((c1 - rowOffset) << 1) - adjust;
136 int c1 = (pos >> 8) & 0xff;
138 int rowOffset = c1 < 0x5F ? 0x70 : 0xB0;
139 int cellOffset = (c1 % 2 == 1) ? (c2 > 0x5F ? 0x20 : 0x1F) : 0x7E;
140 result = ((((c1 + 1 ) >> 1) + rowOffset) << 8) | (c2 + cellOffset);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp177 int c1 = e->index() % number_of_codes; local
179 tty->print_cr("%10d %6.3f%% %02x %02x %-19s %s", abs, rel, c1, c2, name_for(c1), name_for(c2));
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DClientId.java187 private boolean invokeComparator(ClientId c1, ClientId c2) { argument
190 ret = (c1.sockComparator).invoke(
191 c1.factory, c1.socketFactory, c2.socketFactory);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaintContext.java93 Color c1, Color c2, boolean cyclic) {
148 Color c = c1; c1 = c2; c2 = c;
160 int rgb1 = c1.getRGB();
91 GradientPaintContext(ColorModel cm, Point2D p1, Point2D p2, AffineTransform xform, Color c1, Color c2, boolean cyclic) argument

Completed in 97 milliseconds

1234