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

123456789

/openjdk10/langtools/test/tools/javac/enum/
H A DEnum2.java9 enum e1 { red, green, blue } enum in class:Enum2
10 static class e2 extends e1 {}
H A DEnumSwitch1.java38 void f(E1 e1) { argument
39 switch (e1) {
H A DEnumSwitch2.java12 void f(E1 e1) { argument
13 switch (e1) {
/openjdk10/jdk/src/java.desktop/share/native/libawt/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); \
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DSmallSet.java74 // if e1 is null, e2 must be null; otherwise e2 must be different from e1
76 E e1, e2; field in class:SmallSet
82 SmallSet(final E e1, final E e2) { argument
83 this.e1 = e1;
93 return new SmallSet<E>(e1, e2);
98 return e1 == null ? 0 : (e2 == null ? 1 : 2);
106 return e1 != null;
110 if (e1
[all...]
/openjdk10/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();
/openjdk10/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();
/openjdk10/test/lib/jdk/test/lib/hprof/util/
H A DCompositeEnumeration.java40 Enumeration<JavaHeapObject> e1; field in class:CompositeEnumeration
43 public CompositeEnumeration(Enumeration<JavaHeapObject> e1, Enumeration<JavaHeapObject> e2) { argument
44 this.e1 = e1;
49 return e1.hasMoreElements() || e2.hasMoreElements();
53 if (e1.hasMoreElements()) {
54 return e1.nextElement();
/openjdk10/langtools/test/tools/javac/DefiniteAssignment/
H A DT4717164.java20 } catch (ClassNotFoundException e1) { // error: unreachable
/openjdk10/jdk/test/java/util/Hashtable/
H A DIllegalLoadFactor.java43 catch (IllegalArgumentException e1) {
54 catch (IllegalArgumentException e1) {
65 catch (IllegalArgumentException e1) {
76 catch (IllegalArgumentException e1) {
88 catch (IllegalArgumentException e1) {
99 catch (IllegalArgumentException e1) {
110 catch (IllegalArgumentException e1) {
121 catch (IllegalArgumentException e1) {
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DSet.java30 * contain no pair of elements {@code e1} and {@code e2} such that
31 * {@code e1.equals(e2)}, and at most one null element. As implied by
459 * @param e1 the single element
465 static <E> Set<E> of(E e1) { argument
466 return new ImmutableCollections.Set1<>(e1);
474 * @param e1 the first element
482 static <E> Set<E> of(E e1, E e2) { argument
483 return new ImmutableCollections.Set2<>(e1, e2);
491 * @param e1 the first element
500 static <E> Set<E> of(E e1, argument
519 of(E e1, E e2, E e3, E e4) argument
539 of(E e1, E e2, E e3, E e4, E e5) argument
560 of(E e1, E e2, E e3, E e4, E e5, E e6) argument
583 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) argument
607 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) argument
632 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) argument
658 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) argument
[all...]
H A DList.java37 * lists typically allow pairs of elements {@code e1} and {@code e2}
38 * such that {@code e1.equals(e2)}, and they typically allow multiple
448 * specified comparator (that is, {@code c.compare(e1, e2)} must not throw
449 * a {@code ClassCastException} for any elements {@code e1} and {@code e2}
528 * the two lists are <i>equal</i>. (Two elements {@code e1} and
529 * {@code e2} are <i>equal</i> if {@code Objects.equals(e1, e2)}.)
798 * @param e1 the single element
804 static <E> List<E> of(E e1) { argument
805 return new ImmutableCollections.List1<>(e1);
814 * @param e1 th
821 of(E e1, E e2) argument
839 of(E e1, E e2, E e3) argument
858 of(E e1, E e2, E e3, E e4) argument
878 of(E e1, E e2, E e3, E e4, E e5) argument
899 of(E e1, E e2, E e3, E e4, E e5, E e6) argument
922 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) argument
946 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) argument
971 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) argument
997 of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) argument
[all...]
/openjdk10/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; }
/openjdk10/jdk/test/java/util/Vector/
H A DIllegalConstructorArgs.java46 catch (IllegalArgumentException e1) {
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/arrays/
H A DDeclarationAnnotation.java10 Object e1 = new @DA int[5]; field in class:DeclarationAnnotation
/openjdk10/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
/openjdk10/nashorn/test/src/jdk/nashorn/api/scripting/test/
H A DMultipleEngineTest.java46 final ScriptEngine e1 = m.getEngineByName("nashorn");
47 e1.eval("var x = 33; print(x);");
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp51 int HistogramElement::compare(HistogramElement* e1,HistogramElement* e2) { argument
52 if(e1->count() > e2->count()) {
54 } else if(e1->count() < e2->count()) {
67 int Histogram::sort_helper(HistogramElement** e1, HistogramElement** e2) { argument
68 return (*e1)->compare(*e1,*e2);
H A Dhistogram.hpp79 virtual int compare(HistogramElement* e1,HistogramElement* e2);
88 static int sort_helper(HistogramElement** e1,HistogramElement** e2);
/openjdk10/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...]
/openjdk10/nashorn/test/script/trusted/
H A DJDK-8032060.js33 function checkMap(e1, e2) {
34 if (! Debug.identical(Debug.map(e1), Debug.map(e2))) {
35 fail("e1 and e2 have different maps");
41 throw e1
53 fail("e1 and e2 have different maps after being thrown");
/openjdk10/jdk/test/javax/rmi/PortableRemoteObject/
H A DHelloServer.java30 } catch (InterruptedException e1) {
31 e1.printStackTrace();

Completed in 288 milliseconds

123456789