Searched defs:e2 (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/diags/examples/
H A DMulticatchCantBeAssigned.java28 void e2() throws IllegalArgumentException { } method in class:MulticatchCantBeAssigned
33 e2();
H A DMulticatchNotSupported.java32 void e2() throws E2 { } method in class:MulticatchNotSupported
37 e2();
H A DMulticatchTypesMustBeDisjoint.java31 void e2() throws E2 { } method in class:MulticatchTypesMustBeDisjoint
36 e2();
/openjdk7/langtools/test/tools/javac/enum/
H A DEnum2.java34 static class e2 extends e1 {} class in class:Enum2
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DCompositeEnumeration.java40 Enumeration e2; field in class:CompositeEnumeration
42 public CompositeEnumeration(Enumeration e1, Enumeration e2) { argument
44 this.e2 = e2;
48 return e1.hasMoreElements() || e2.hasMoreElements();
56 if (e2.hasMoreElements()) {
57 return e2.nextElement();
/openjdk7/jdk/test/java/util/EnumSet/
H A DSmallEnumIteratorRemoveResilience.java41 private static enum SmallEnum { e0, e1, e2 } enum constant in enum:SmallEnumIteratorRemoveResilience.SmallEnum
/openjdk7/langtools/test/tools/javac/multicatch/7030606/
H A DT7030606.java14 void e2() throws E2 { } method in class:T7030606
19 e2();
26 e2();
33 e2();
40 e2();
47 e2();
54 e2();
/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);
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.cpp102 int MemRecorder::sort_record_fn(const void* e1, const void* e2) { argument
104 const MemPointerRecord* p2 = (const MemPointerRecord*)e2;
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java184 void checkEqual(Element e1, Element e2) { argument
185 if (e1 != e2) {
187 + e1 + ", " + e2);
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java219 * @param e2 another element that this set is to contain initially
223 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2) { argument
226 result.add(e2);
240 * @param e2 another 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
248 result.add(e2);
263 * @param e2 another element that this set is to contain initially
269 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) { argument
272 result.add(e2);
288 * @param e2 anothe
295 of(E e1, E e2, E e3, E e4, E e5) argument
[all...]
H A DArrays.java431 * <i>mutually comparable</i> (that is, {@code e1.compareTo(e2)} must
433 * and {@code e2} in the array).
490 * comparable</i> (that is, {@code e1.compareTo(e2)} must not throw a
492 * {@code e2} in the array).
617 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
618 * for any elements {@code e1} and {@code e2} in the array).
678 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
679 * for any elements {@code e1} and {@code e2} in the range).
1847 * and <tt>e2</tt> are considered <i>equal</i> if <tt>(e1==null ? e2
3271 deepEquals0(Object e1, Object e2) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DCrypt.java119 private static final byte[] e2 = { field in class:Crypt
161 E[i] = e2[i];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DSOAPExtensionHandler.java280 Element e2 = Util.nextElement(iter);
281 if (e2 == null)
284 if (XmlUtil.matchesTagNS(e2, getHeaderfaultQName())) {
285 handleHeaderFaultElement(e, context, header, use, e2);
287 Util.fail("parsing.invalidElement", e2.getTagName(), e2.getNamespaceURI());
297 private void handleHeaderFaultElement(Element e, TWSDLParserContextImpl context, SOAPHeader header, String use, Element e2) { argument
303 String use2 = XmlUtil.getAttributeOrNull(e2, Constants.ATTR_USE);
314 String namespace2 = XmlUtil.getAttributeOrNull(e2, Constants.ATTR_NAMESPACE);
319 String encodingStyle2 = XmlUtil.getAttributeOrNull(e2, Constant
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp351 ConstantPoolCacheEntry* e2 = cpool->cache()->find_secondary_entry_for(this); local
354 e2->set_method_flags(as_TosState(adapter->result_type()),
359 e2->release_set_f1(method_type());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJOp.java231 JExpression e2; field in class:JOp.TernaryOp
235 JExpression e1, JExpression e2, JExpression e3) {
238 this.e2 = e2;
244 f.p('(').g(e1).p(op1).g(e2).p(op2).g(e3).p(')');
234 TernaryOp(String op1, String op2, JExpression e1, JExpression e2, JExpression e3) argument
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessEnvironment.java219 Map.Entry<String,String> e2) {
220 return nameComparator.compare(e1.getKey(), e2.getKey());
218 compare(Map.Entry<String,String> e1, Map.Entry<String,String> e2) argument
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java293 // returns the set e1 U e2.
296 Enumeration<Permission> e2) {
302 while (e2.hasMoreElements()) {
303 Permission o = e2.nextElement();
312 // returns the set e1 - e2.
315 Enumeration<Permission> e2) {
321 while (e2.hasMoreElements()) {
322 Permission o = e2.nextElement();
295 union(Enumeration<Permission> e1, Enumeration<Permission> e2) argument
314 subtract(Enumeration<Permission> e1, Enumeration<Permission> e2) argument
/openjdk7/langtools/test/tools/javap/4870651/
H A DTest.java75 enum Enum { e1, e2, e3 } enum constant in enum:Test.Enum
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassValue.java354 Entry<T> e2 = new Entry<>(v2, (T) value);
357 return e2;
544 Entry<?> e2 = cache[home]; // victim, if we find the real guy
545 if (e2 == null) {
548 // assume !classValue.match(e2), but do not assert, because of races
556 // relocate colliding entry e2 (from cache[home]) to first empty slot
563 cache[pos2 & mask] = ((entryDislocation(cache, pos2, e2) < PROBE_LIMIT)
564 ? e2 // put e2 here if it fits
646 Entry<?> e2
739 overwrittenEntry(Entry<T> e2) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.cpp311 SparsePRTEntry* e2 = entry_for_region_ind_create(e->r_ind()); local
312 e->copy_cards(e2);
313 _occupied_cards += e2->num_valid_cards();
314 assert(e2->num_valid_cards() > 0, "Postcondition.");
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp39 int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) { argument
40 if(e1->_instance_words > e2->_instance_words) {
42 } else if(e1->_instance_words < e2->_instance_words) {
180 int KlassInfoHisto::sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2) { argument
181 return (*e1)->compare(*e1,*e2);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpringLayout.java1025 * edge <code>e2</code> of component <code>c2</code>,
1029 * value(e1, c1) = value(e2, c2) + pad</pre>
1035 * @param e2 the edge of the anchor
1040 public void putConstraint(String e1, Component c1, int pad, String e2, Component c2) { argument
1041 putConstraint(e1, c1, Spring.constant(pad), e2, c2);
1046 * edge <code>e2</code> of component <code>c2</code>. As edge
1047 * <code>(e2, c2)</code> changes value, edge <code>(e1, c1)</code> will
1048 * be calculated by taking the (spring) sum of <code>(e2, c2)</code>
1062 * @param e2 the edge of the anchor
1074 public void putConstraint(String e1, Component c1, Spring s, String e2, Componen argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c185 class_compar(const void *e1, const void *e2) argument
188 ClassInfo *c2 = (ClassInfo*)e2;
196 method_compar(const void *e1, const void *e2) argument
199 MethodInfo *m2 = (MethodInfo*)e2;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp123 bool GrowableCache::equals(void* v, GrowableElement *e2) { argument
126 assert(e2 != NULL, "e2 != NULL");
128 return e1->equals(e2);
186 GrowableElement *e2 = _elements->at(i+1); local
187 if (e2->lessThan(e1)) {
189 _elements->at_put(i, e2);

Completed in 949 milliseconds

12