Searched refs:e1 (Results 1 - 25 of 148) sorted by relevance

123456

/openjdk7/langtools/test/tools/javac/enum/
H A DEnum2.java33 enum e1 { red, green, blue } enum in class:Enum2
34 static class e2 extends e1 {}
H A DEnumSwitch1.java38 void f(E1 e1) { argument
39 switch (e1) {
H A DEnumSwitch2.java38 void f(E1 e1) { argument
39 switch (e1) {
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_fsutil.h34 #define DitherDist(ep, e1, e2, e3, ec, c) \
37 e1 = e3 + ec; \
38 e2 = e3 + e1; \
41 ep[0].c += e1 >>= 4; \
44 ec -= e1 + e2 + e3; \
H A Dimg_fscolor.h98 int e1, e2, e3; \
106 e1 = ComponentBound(red); \
111 pixel = ColorCubeFSMap(e1, e2, e3); \
118 er = e1 - red; eg = e2 - green; eb = e3 - blue; \
121 DitherDist(cep, e1, e2, e3, er, r); \
122 DitherDist(cep, e1, e2, e3, eg, g); \
123 DitherDist(cep, e1, e2, e3, eb, b); \
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DMulticatchCantBeAssigned.java27 void e1() throws NullPointerException { } method in class:MulticatchCantBeAssigned
32 e1();
H A DMulticatchNotSupported.java31 void e1() throws E1 { } method in class:MulticatchNotSupported
36 e1();
H A DMulticatchTypesMustBeDisjoint.java30 void e1() throws E1 { } method in class:MulticatchTypesMustBeDisjoint
35 e1();
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DCompositeEnumeration.java39 Enumeration e1; field in class:CompositeEnumeration
42 public CompositeEnumeration(Enumeration e1, Enumeration e2) { argument
43 this.e1 = e1;
48 return e1.hasMoreElements() || e2.hasMoreElements();
52 if (e1.hasMoreElements()) {
53 return e1.nextElement();
/openjdk7/langtools/test/tools/javac/multicatch/7030606/
H A DT7030606.java13 void e1() throws E1 { } method in class:T7030606
18 e1();
25 e1();
32 e1();
39 e1();
46 e1();
53 e1();
/openjdk7/langtools/test/tools/javac/DefiniteAssignment/
H A DT4717164.java43 } catch (ClassNotFoundException e1) { // error: unreachable
/openjdk7/jdk/test/java/util/Hashtable/
H A DIllegalLoadFactor.java45 catch (IllegalArgumentException e1) {
56 catch (IllegalArgumentException e1) {
67 catch (IllegalArgumentException e1) {
78 catch (IllegalArgumentException e1) {
90 catch (IllegalArgumentException e1) {
101 catch (IllegalArgumentException e1) {
112 catch (IllegalArgumentException e1) {
123 catch (IllegalArgumentException e1) {
/openjdk7/jdk/test/sun/security/tools/keytool/
H A Dselfissued.sh55 $KT -alias e1 -dname CN=E1 -genkeypair
63 # Import e1 signed by ca2, should add ca2 and ca1, at least 3 certs in the chain
64 $KT -alias e1 -certreq | $KT -alias ca2 -gencert > e1.cert
67 cat e1.cert | $KT -alias e1 -importcert
68 $KT -alias e1 -list -v | grep '\[3\]' || { echo Bad E1; exit 1; }
/openjdk7/jdk/test/java/util/Vector/
H A DIllegalConstructorArgs.java46 catch (IllegalArgumentException e1) {
/openjdk7/langtools/test/tools/javac/processing/model/util/elements/doccomments/a/
H A DFirst.java51 /** ENUM_CONSTANT e1 */
52 e1 enum constant in enum:First.E
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp50 int HistogramElement::compare(HistogramElement* e1,HistogramElement* e2) { argument
51 if(e1->count() > e2->count()) {
53 } else if(e1->count() < e2->count()) {
66 int Histogram::sort_helper(HistogramElement** e1, HistogramElement** e2) { argument
67 return (*e1)->compare(*e1,*e2);
H A Dhistogram.hpp91 virtual int compare(HistogramElement* e1,HistogramElement* e2);
100 static int sort_helper(HistogramElement** e1,HistogramElement** e2);
/openjdk7/jdk/test/java/io/
H A DUnicode.java49 static void fail(String enc, String msg, int e0, int e1, int b0, int b1) argument
55 + " " + Integer.toHexString(e1)
72 int e0 = 0, e1 = 0;
75 e1 = BOM_LOW;
78 e1 = BOM_HIGH;
80 if ((b0 != e0) || (b1 != e1))
82 e0, e1, b0, b1);
88 int e0 = 0, e1 = 0;
91 e1 = c & 0xff;
94 e1
[all...]
/openjdk7/jdk/test/java/util/zip/ZipEntry/
H A DConstructor.java36 ZipEntry e1 = new ZipEntry("foo");
/openjdk7/langtools/test/tools/javac/foreach/
H A DT6682380.java41 for (T6682380<?> e1 : l);
/openjdk7/jdk/test/tools/jar/
H A DUpdateJar.java48 String e1 = "testUpdateJar_entry1.txt";
49 cleanup(jar, e0, e1);
52 FileOutputStream fos1 = new FileOutputStream(e1)) {
61 jarArgs = new String[] {"uf", jar, e1};
67 cleanup(jar, e0, e1);
/openjdk7/hotspot/test/runtime/7196045/
H A DTest7196045.java56 } catch (MalformedObjectNameException e1) {
57 throw new RuntimeException("Bad object name" + e1);
/openjdk7/jdk/test/java/util/EnumSet/
H A DInsertWrongType.java111 static void heterogeneousCopyOf(Enum e1, Enum e2) { argument
113 list.add(e1);
123 static void heterogeneousOf2(Enum e1, Enum e2) { argument
125 EnumSet.of(e1, e2);
132 static void heterogeneousOf3(Enum e1, Enum e2) { argument
134 EnumSet.of(e1, e1, e2);
141 static void heterogeneousOf4(Enum e1, Enum e2) { argument
143 EnumSet.of(e1, e1, e
150 heterogeneousOf5(Enum e1, Enum e2) argument
159 heterogeneousOfVar(Enum e1, Enum e2) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java218 * @param e1 an element that this set is to contain initially
223 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2) { argument
224 EnumSet<E> result = noneOf(e1.getDeclaringClass());
225 result.add(e1);
239 * @param e1 an element that this set is to contain initially
245 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) { argument
246 EnumSet<E> result = noneOf(e1.getDeclaringClass());
247 result.add(e1);
262 * @param e1 an element that this set is to contain initially
269 public static <E extends Enum<E>> EnumSet<E> of(E e1, argument
295 of(E e1, E e2, E e3, E e4, E e5) argument
[all...]
/openjdk7/jdk/test/java/net/SocketInputStream/
H A DSocketTimeout.java57 } catch(NoClassDefFoundError e1) {
73 } catch(NoClassDefFoundError e1) {
91 } catch(NoClassDefFoundError e1) {

Completed in 71 milliseconds

123456