21.98/7.22 YES 22.32/7.25 proof of /export/starexec/sandbox2/benchmark/theBenchmark.jar 22.32/7.25 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 22.32/7.25 22.32/7.25 22.32/7.25 termination of the given Bare JBC problem could be proven: 22.32/7.25 22.32/7.25 (0) Bare JBC problem 22.32/7.25 (1) BareJBCToJBCProof [EQUIVALENT, 96 ms] 22.32/7.25 (2) JBC problem 22.32/7.25 (3) JBCToGraph [EQUIVALENT, 3191 ms] 22.32/7.25 (4) JBCTerminationGraph 22.32/7.25 (5) TerminationGraphToSCCProof [SOUND, 0 ms] 22.32/7.25 (6) AND 22.32/7.25 (7) JBCTerminationSCC 22.32/7.25 (8) SCCToIRSProof [SOUND, 313 ms] 22.32/7.25 (9) IRSwT 22.32/7.25 (10) IRSFormatTransformerProof [EQUIVALENT, 0 ms] 22.32/7.25 (11) IRSwT 22.32/7.25 (12) IRSwTTerminationDigraphProof [EQUIVALENT, 86 ms] 22.32/7.25 (13) IRSwT 22.32/7.25 (14) IntTRSCompressionProof [EQUIVALENT, 0 ms] 22.32/7.25 (15) IRSwT 22.32/7.25 (16) TempFilterProof [SOUND, 101 ms] 22.32/7.25 (17) IntTRS 22.32/7.25 (18) RankingReductionPairProof [EQUIVALENT, 26 ms] 22.32/7.25 (19) YES 22.32/7.25 (20) JBCTerminationSCC 22.32/7.25 (21) SCCToIRSProof [SOUND, 188 ms] 22.32/7.25 (22) IRSwT 22.32/7.25 (23) IRSFormatTransformerProof [EQUIVALENT, 0 ms] 22.32/7.25 (24) IRSwT 22.32/7.25 (25) IRSwTTerminationDigraphProof [EQUIVALENT, 32 ms] 22.32/7.25 (26) IRSwT 22.32/7.25 (27) IntTRSCompressionProof [EQUIVALENT, 0 ms] 22.32/7.25 (28) IRSwT 22.32/7.25 (29) TempFilterProof [SOUND, 10 ms] 22.32/7.25 (30) IntTRS 22.32/7.25 (31) RankingReductionPairProof [EQUIVALENT, 0 ms] 22.32/7.25 (32) YES 22.32/7.25 (33) JBCTerminationSCC 22.32/7.25 (34) SCCToIRSProof [SOUND, 185 ms] 22.32/7.25 (35) IRSwT 22.32/7.25 (36) IRSFormatTransformerProof [EQUIVALENT, 0 ms] 22.32/7.25 (37) IRSwT 22.32/7.25 (38) IRSwTTerminationDigraphProof [EQUIVALENT, 318 ms] 22.32/7.25 (39) IRSwT 22.32/7.25 (40) IntTRSCompressionProof [EQUIVALENT, 0 ms] 22.32/7.25 (41) IRSwT 22.32/7.25 (42) TempFilterProof [SOUND, 92 ms] 22.32/7.25 (43) IntTRS 22.32/7.25 (44) PolynomialOrderProcessor [EQUIVALENT, 0 ms] 22.32/7.25 (45) IntTRS 22.32/7.25 (46) RankingReductionPairProof [EQUIVALENT, 14 ms] 22.32/7.25 (47) YES 22.32/7.25 22.32/7.25 22.32/7.25 ---------------------------------------- 22.32/7.25 22.32/7.25 (0) 22.32/7.25 Obligation: 22.32/7.25 need to prove termination of the following program: 22.32/7.25 /* 22.32/7.25 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.25 * 22.32/7.25 * This code is free software; you can redistribute it and/or modify it 22.32/7.25 * under the terms of the GNU General Public License version 2 only, as 22.32/7.25 * published by the Free Software Foundation. Sun designates this 22.32/7.25 * particular file as subject to the "Classpath" exception as provided 22.32/7.25 * by Sun in the LICENSE file that accompanied this code. 22.32/7.25 * 22.32/7.25 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.25 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.25 * accompanied this code). 22.32/7.25 * 22.32/7.25 * You should have received a copy of the GNU General Public License version 22.32/7.25 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.25 * 22.32/7.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.25 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.25 * have any questions. 22.32/7.25 */ 22.32/7.25 22.32/7.25 package javaUtilEx; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * This class provides a skeletal implementation of the Collection 22.32/7.25 * interface, to minimize the effort required to implement this interface.

22.32/7.25 * 22.32/7.25 * To implement an unmodifiable collection, the programmer needs only to 22.32/7.25 * extend this class and provide implementations for the iterator and 22.32/7.25 * size methods. (The iterator returned by the iterator 22.32/7.25 * method must implement hasNext and next.)

22.32/7.25 * 22.32/7.25 * To implement a modifiable collection, the programmer must additionally 22.32/7.25 * override this class's add method (which otherwise throws an 22.32/7.25 * UnsupportedOperationException), and the iterator returned by the 22.32/7.25 * iterator method must additionally implement its remove 22.32/7.25 * method.

22.32/7.25 * 22.32/7.25 * The programmer should generally provide a void (no argument) and 22.32/7.25 * Collection constructor, as per the recommendation in the 22.32/7.25 * Collection interface specification.

22.32/7.25 * 22.32/7.25 * The documentation for each non-abstract method in this class describes its 22.32/7.25 * implementation in detail. Each of these methods may be overridden if 22.32/7.25 * the collection being implemented admits a more efficient implementation.

22.32/7.25 * 22.32/7.25 * This class is a member of the 22.32/7.25 * 22.32/7.25 * Java Collections Framework. 22.32/7.25 * 22.32/7.25 * @author Josh Bloch 22.32/7.25 * @author Neal Gafter 22.32/7.25 * @see Collection 22.32/7.25 * @since 1.2 22.32/7.25 */ 22.32/7.25 22.32/7.25 public abstract class AbstractCollection implements Collection { 22.32/7.25 /** 22.32/7.25 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.25 * implicit.) 22.32/7.25 */ 22.32/7.25 protected AbstractCollection() { 22.32/7.25 } 22.32/7.25 22.32/7.25 // Query Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns an iterator over the elements contained in this collection. 22.32/7.25 * 22.32/7.25 * @return an iterator over the elements contained in this collection 22.32/7.25 */ 22.32/7.25 public abstract Iterator iterator(); 22.32/7.25 22.32/7.25 public abstract int size(); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation returns size() == 0. 22.32/7.25 */ 22.32/7.25 public boolean isEmpty() { 22.32/7.25 return size() == 0; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over the elements in the collection, 22.32/7.25 * checking each element in turn for equality with the specified element. 22.32/7.25 * 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public boolean contains(Object o) { 22.32/7.25 Iterator e = iterator(); 22.32/7.25 if (o==null) { 22.32/7.25 while (e.hasNext()) 22.32/7.25 if (e.next()==null) 22.32/7.25 return true; 22.32/7.25 } else { 22.32/7.25 while (e.hasNext()) 22.32/7.25 if (o.equals(e.next())) 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 return false; 22.32/7.25 } 22.32/7.25 22.32/7.25 // Modification Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation always throws an 22.32/7.25 * UnsupportedOperationException. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IllegalStateException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public boolean add(E e) { 22.32/7.25 throw new UnsupportedOperationException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over the collection looking for the 22.32/7.25 * specified element. If it finds the element, it removes the element 22.32/7.25 * from the collection using the iterator's remove method. 22.32/7.25 * 22.32/7.25 *

Note that this implementation throws an 22.32/7.25 * UnsupportedOperationException if the iterator returned by this 22.32/7.25 * collection's iterator method does not implement the remove 22.32/7.25 * method and this collection contains the specified object. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public boolean remove(Object o) { 22.32/7.25 Iterator e = iterator(); 22.32/7.25 if (o==null) { 22.32/7.25 while (e.hasNext()) { 22.32/7.25 if (e.next()==null) { 22.32/7.25 e.remove(); 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 } else { 22.32/7.25 while (e.hasNext()) { 22.32/7.25 if (o.equals(e.next())) { 22.32/7.25 e.remove(); 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 } 22.32/7.25 return false; 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Bulk Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over the specified collection, 22.32/7.25 * checking each element returned by the iterator in turn to see 22.32/7.25 * if it's contained in this collection. If all elements are so 22.32/7.25 * contained true is returned, otherwise false. 22.32/7.25 * 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @see #contains(Object) 22.32/7.25 */ 22.32/7.25 public boolean containsAll(Collection c) { 22.32/7.25 Iterator e = c.iterator(); 22.32/7.25 while (e.hasNext()) 22.32/7.25 if (!contains(e.next())) 22.32/7.25 return false; 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over the specified collection, and adds 22.32/7.25 * each object returned by the iterator to this collection, in turn. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException unless add is 22.32/7.25 * overridden (assuming the specified collection is non-empty). 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IllegalStateException {@inheritDoc} 22.32/7.25 * 22.32/7.25 * @see #add(Object) 22.32/7.25 */ 22.32/7.25 public boolean addAll(Collection c) { 22.32/7.25 boolean modified = false; 22.32/7.25 Iterator e = c.iterator(); 22.32/7.25 while (e.hasNext()) { 22.32/7.25 if (add(e.next())) 22.32/7.25 modified = true; 22.32/7.25 } 22.32/7.25 return modified; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over this collection, checking each 22.32/7.25 * element returned by the iterator in turn to see if it's contained 22.32/7.25 * in the specified collection. If it's so contained, it's removed from 22.32/7.25 * this collection with the iterator's remove method. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the iterator returned by the 22.32/7.25 * iterator method does not implement the remove method 22.32/7.25 * and this collection contains one or more elements in common with the 22.32/7.25 * specified collection. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * 22.32/7.25 * @see #remove(Object) 22.32/7.25 * @see #contains(Object) 22.32/7.25 */ 22.32/7.25 public boolean removeAll(Collection c) { 22.32/7.25 boolean modified = false; 22.32/7.25 Iterator e = iterator(); 22.32/7.25 while (e.hasNext()) { 22.32/7.25 if (c.contains(e.next())) { 22.32/7.25 e.remove(); 22.32/7.25 modified = true; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 return modified; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over this collection, checking each 22.32/7.25 * element returned by the iterator in turn to see if it's contained 22.32/7.25 * in the specified collection. If it's not so contained, it's removed 22.32/7.25 * from this collection with the iterator's remove method. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the iterator returned by the 22.32/7.25 * iterator method does not implement the remove method 22.32/7.25 * and this collection contains one or more elements not present in the 22.32/7.25 * specified collection. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * 22.32/7.25 * @see #remove(Object) 22.32/7.25 * @see #contains(Object) 22.32/7.25 */ 22.32/7.25 public boolean retainAll(Collection c) { 22.32/7.25 boolean modified = false; 22.32/7.25 Iterator e = iterator(); 22.32/7.25 while (e.hasNext()) { 22.32/7.25 if (!c.contains(e.next())) { 22.32/7.25 e.remove(); 22.32/7.25 modified = true; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 return modified; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation iterates over this collection, removing each 22.32/7.25 * element using the Iterator.remove operation. Most 22.32/7.25 * implementations will probably choose to override this method for 22.32/7.25 * efficiency. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the iterator returned by this 22.32/7.25 * collection's iterator method does not implement the 22.32/7.25 * remove method and this collection is non-empty. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public void clear() { 22.32/7.25 Iterator e = iterator(); 22.32/7.25 while (e.hasNext()) { 22.32/7.25 e.next(); 22.32/7.25 e.remove(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // String conversion 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns a string representation of this collection. The string 22.32/7.25 * representation consists of a list of the collection's elements in the 22.32/7.25 * order they are returned by its iterator, enclosed in square brackets 22.32/7.25 * ("[]"). Adjacent elements are separated by the characters 22.32/7.25 * ", " (comma and space). Elements are converted to strings as 22.32/7.25 * by {@link String#valueOf(Object)}. 22.32/7.25 * 22.32/7.25 * @return a string representation of this collection 22.32/7.25 */ 22.32/7.25 public String toString() { 22.32/7.25 Iterator i = iterator(); 22.32/7.25 if (! i.hasNext()) 22.32/7.25 return "[]"; 22.32/7.25 22.32/7.25 String sb = ""; 22.32/7.25 sb = sb + "["; 22.32/7.25 for (;;) { 22.32/7.25 E e = i.next(); 22.32/7.25 sb = sb + (e == this ? "(this Collection)" : e); 22.32/7.25 if (! i.hasNext()) { 22.32/7.25 sb = sb + "]"; 22.32/7.25 return sb; 22.32/7.25 } 22.32/7.25 sb = sb + ", "; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 /* 22.32/7.25 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.25 * 22.32/7.25 * This code is free software; you can redistribute it and/or modify it 22.32/7.25 * under the terms of the GNU General Public License version 2 only, as 22.32/7.25 * published by the Free Software Foundation. Sun designates this 22.32/7.25 * particular file as subject to the "Classpath" exception as provided 22.32/7.25 * by Sun in the LICENSE file that accompanied this code. 22.32/7.25 * 22.32/7.25 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.25 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.25 * accompanied this code). 22.32/7.25 * 22.32/7.25 * You should have received a copy of the GNU General Public License version 22.32/7.25 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.25 * 22.32/7.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.25 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.25 * have any questions. 22.32/7.25 */ 22.32/7.25 22.32/7.25 package javaUtilEx; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * This class provides a skeletal implementation of the {@link List} 22.32/7.25 * interface to minimize the effort required to implement this interface 22.32/7.25 * backed by a "random access" data store (such as an array). For sequential 22.32/7.25 * access data (such as a linked list), {@link AbstractSequentialList} should 22.32/7.25 * be used in preference to this class. 22.32/7.25 * 22.32/7.25 *

To implement an unmodifiable list, the programmer needs only to extend 22.32/7.25 * this class and provide implementations for the {@link #get(int)} and 22.32/7.25 * {@link List#size() size()} methods. 22.32/7.25 * 22.32/7.25 *

To implement a modifiable list, the programmer must additionally 22.32/7.25 * override the {@link #set(int, Object) set(int, E)} method (which otherwise 22.32/7.25 * throws an {@code UnsupportedOperationException}). If the list is 22.32/7.25 * variable-size the programmer must additionally override the 22.32/7.25 * {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods. 22.32/7.25 * 22.32/7.25 *

The programmer should generally provide a void (no argument) and collection 22.32/7.25 * constructor, as per the recommendation in the {@link Collection} interface 22.32/7.25 * specification. 22.32/7.25 * 22.32/7.25 *

Unlike the other abstract collection implementations, the programmer does 22.32/7.25 * not have to provide an iterator implementation; the iterator and 22.32/7.25 * list iterator are implemented by this class, on top of the "random access" 22.32/7.25 * methods: 22.32/7.25 * {@link #get(int)}, 22.32/7.25 * {@link #set(int, Object) set(int, E)}, 22.32/7.25 * {@link #add(int, Object) add(int, E)} and 22.32/7.25 * {@link #remove(int)}. 22.32/7.25 * 22.32/7.25 *

The documentation for each non-abstract method in this class describes its 22.32/7.25 * implementation in detail. Each of these methods may be overridden if the 22.32/7.25 * collection being implemented admits a more efficient implementation. 22.32/7.25 * 22.32/7.25 *

This class is a member of the 22.32/7.25 * 22.32/7.25 * Java Collections Framework. 22.32/7.25 * 22.32/7.25 * @author Josh Bloch 22.32/7.25 * @author Neal Gafter 22.32/7.25 * @since 1.2 22.32/7.25 */ 22.32/7.25 22.32/7.25 public abstract class AbstractList extends AbstractCollection implements List { 22.32/7.25 /** 22.32/7.25 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.25 * implicit.) 22.32/7.25 */ 22.32/7.25 protected AbstractList() { 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Appends the specified element to the end of this list (optional 22.32/7.25 * operation). 22.32/7.25 * 22.32/7.25 *

Lists that support this operation may place limitations on what 22.32/7.25 * elements may be added to this list. In particular, some 22.32/7.25 * lists will refuse to add null elements, and others will impose 22.32/7.25 * restrictions on the type of elements that may be added. List 22.32/7.25 * classes should clearly specify in their documentation any restrictions 22.32/7.25 * on what elements may be added. 22.32/7.25 * 22.32/7.25 *

This implementation calls {@code add(size(), e)}. 22.32/7.25 * 22.32/7.25 *

Note that this implementation throws an 22.32/7.25 * {@code UnsupportedOperationException} unless 22.32/7.25 * {@link #add(int, Object) add(int, E)} is overridden. 22.32/7.25 * 22.32/7.25 * @param e element to be appended to this list 22.32/7.25 * @return {@code true} (as specified by {@link Collection#add}) 22.32/7.25 * @throws UnsupportedOperationException if the {@code add} operation 22.32/7.25 * is not supported by this list 22.32/7.25 * @throws ClassCastException if the class of the specified element 22.32/7.25 * prevents it from being added to this list 22.32/7.25 * @throws NullPointerException if the specified element is null and this 22.32/7.25 * list does not permit null elements 22.32/7.25 * @throws IllegalArgumentException if some property of this element 22.32/7.25 * prevents it from being added to this list 22.32/7.25 */ 22.32/7.25 public boolean add(E e) { 22.32/7.25 add(size(), e); 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 abstract public E get(int index); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation always throws an 22.32/7.25 * {@code UnsupportedOperationException}. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public E set(int index, E element) { 22.32/7.25 throw new UnsupportedOperationException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation always throws an 22.32/7.25 * {@code UnsupportedOperationException}. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public void add(int index, E element) { 22.32/7.25 throw new UnsupportedOperationException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation always throws an 22.32/7.25 * {@code UnsupportedOperationException}. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public E remove(int index) { 22.32/7.25 throw new UnsupportedOperationException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Search Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator (with 22.32/7.25 * {@code listIterator()}). Then, it iterates over the list until the 22.32/7.25 * specified element is found or the end of the list is reached. 22.32/7.25 * 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public int indexOf(Object o) { 22.32/7.25 ListIterator e = listIterator(); 22.32/7.25 if (o==null) { 22.32/7.25 while (e.hasNext()) 22.32/7.25 if (e.next()==null) 22.32/7.25 return e.previousIndex(); 22.32/7.25 } else { 22.32/7.25 while (e.hasNext()) 22.32/7.25 if (o.equals(e.next())) 22.32/7.25 return e.previousIndex(); 22.32/7.25 } 22.32/7.25 return -1; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator that points to the end 22.32/7.25 * of the list (with {@code listIterator(size())}). Then, it iterates 22.32/7.25 * backwards over the list until the specified element is found, or the 22.32/7.25 * beginning of the list is reached. 22.32/7.25 * 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public int lastIndexOf(Object o) { 22.32/7.25 ListIterator e = listIterator(size()); 22.32/7.25 if (o==null) { 22.32/7.25 while (e.hasPrevious()) 22.32/7.25 if (e.previous()==null) 22.32/7.25 return e.nextIndex(); 22.32/7.25 } else { 22.32/7.25 while (e.hasPrevious()) 22.32/7.25 if (o.equals(e.previous())) 22.32/7.25 return e.nextIndex(); 22.32/7.25 } 22.32/7.25 return -1; 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Bulk Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Removes all of the elements from this list (optional operation). 22.32/7.25 * The list will be empty after this call returns. 22.32/7.25 * 22.32/7.25 *

This implementation calls {@code removeRange(0, size())}. 22.32/7.25 * 22.32/7.25 *

Note that this implementation throws an 22.32/7.25 * {@code UnsupportedOperationException} unless {@code remove(int 22.32/7.25 * index)} or {@code removeRange(int fromIndex, int toIndex)} is 22.32/7.25 * overridden. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException if the {@code clear} operation 22.32/7.25 * is not supported by this list 22.32/7.25 */ 22.32/7.25 public void clear() { 22.32/7.25 removeRange(0, size()); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation gets an iterator over the specified collection 22.32/7.25 * and iterates over it, inserting the elements obtained from the 22.32/7.25 * iterator into this list at the appropriate position, one at a time, 22.32/7.25 * using {@code add(int, E)}. 22.32/7.25 * Many implementations will override this method for efficiency. 22.32/7.25 * 22.32/7.25 *

Note that this implementation throws an 22.32/7.25 * {@code UnsupportedOperationException} unless 22.32/7.25 * {@link #add(int, Object) add(int, E)} is overridden. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public boolean addAll(int index, Collection c) { 22.32/7.25 rangeCheckForAdd(index); 22.32/7.25 boolean modified = false; 22.32/7.25 Iterator e = c.iterator(); 22.32/7.25 while (e.hasNext()) { 22.32/7.25 add(index++, e.next()); 22.32/7.25 modified = true; 22.32/7.25 } 22.32/7.25 return modified; 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Iterators 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns an iterator over the elements in this list in proper sequence. 22.32/7.25 * 22.32/7.25 *

This implementation returns a straightforward implementation of the 22.32/7.25 * iterator interface, relying on the backing list's {@code size()}, 22.32/7.25 * {@code get(int)}, and {@code remove(int)} methods. 22.32/7.25 * 22.32/7.25 *

Note that the iterator returned by this method will throw an 22.32/7.25 * {@link UnsupportedOperationException} in response to its 22.32/7.25 * {@code remove} method unless the list's {@code remove(int)} method is 22.32/7.25 * overridden. 22.32/7.25 * 22.32/7.25 *

This implementation can be made to throw runtime exceptions in the 22.32/7.25 * face of concurrent modification, as described in the specification 22.32/7.25 * for the (protected) {@link #modCount} field. 22.32/7.25 * 22.32/7.25 * @return an iterator over the elements in this list in proper sequence 22.32/7.25 */ 22.32/7.25 public Iterator iterator() { 22.32/7.25 return new Itr(); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation returns {@code listIterator(0)}. 22.32/7.25 * 22.32/7.25 * @see #listIterator(int) 22.32/7.25 */ 22.32/7.25 public ListIterator listIterator() { 22.32/7.25 return listIterator(0); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation returns a straightforward implementation of the 22.32/7.25 * {@code ListIterator} interface that extends the implementation of the 22.32/7.25 * {@code Iterator} interface returned by the {@code iterator()} method. 22.32/7.25 * The {@code ListIterator} implementation relies on the backing list's 22.32/7.25 * {@code get(int)}, {@code set(int, E)}, {@code add(int, E)} 22.32/7.25 * and {@code remove(int)} methods. 22.32/7.25 * 22.32/7.25 *

Note that the list iterator returned by this implementation will 22.32/7.25 * throw an {@link UnsupportedOperationException} in response to its 22.32/7.25 * {@code remove}, {@code set} and {@code add} methods unless the 22.32/7.25 * list's {@code remove(int)}, {@code set(int, E)}, and 22.32/7.25 * {@code add(int, E)} methods are overridden. 22.32/7.25 * 22.32/7.25 *

This implementation can be made to throw runtime exceptions in the 22.32/7.25 * face of concurrent modification, as described in the specification for 22.32/7.25 * the (protected) {@link #modCount} field. 22.32/7.25 * 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public ListIterator listIterator(final int index) { 22.32/7.25 rangeCheckForAdd(index); 22.32/7.25 22.32/7.25 return new ListItr(index); 22.32/7.25 } 22.32/7.25 22.32/7.25 private class Itr implements Iterator { 22.32/7.25 /** 22.32/7.25 * Index of element to be returned by subsequent call to next. 22.32/7.25 */ 22.32/7.25 int cursor = 0; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Index of element returned by most recent call to next or 22.32/7.25 * previous. Reset to -1 if this element is deleted by a call 22.32/7.25 * to remove. 22.32/7.25 */ 22.32/7.25 int lastRet = -1; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * The modCount value that the iterator believes that the backing 22.32/7.25 * List should have. If this expectation is violated, the iterator 22.32/7.25 * has detected concurrent modification. 22.32/7.25 */ 22.32/7.25 int expectedModCount = modCount; 22.32/7.25 22.32/7.25 public boolean hasNext() { 22.32/7.25 return cursor != size(); 22.32/7.25 } 22.32/7.25 22.32/7.25 public E next() { 22.32/7.25 checkForComodification(); 22.32/7.25 try { 22.32/7.25 int i = cursor; 22.32/7.25 E next = get(i); 22.32/7.25 lastRet = i; 22.32/7.25 cursor = i + 1; 22.32/7.25 return next; 22.32/7.25 } catch (IndexOutOfBoundsException e) { 22.32/7.25 checkForComodification(); 22.32/7.25 throw new NoSuchElementException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 public void remove() { 22.32/7.25 if (lastRet < 0) 22.32/7.25 throw new IllegalStateException(); 22.32/7.25 checkForComodification(); 22.32/7.25 22.32/7.25 try { 22.32/7.25 AbstractList.this.remove(lastRet); 22.32/7.25 if (lastRet < cursor) 22.32/7.25 cursor--; 22.32/7.25 lastRet = -1; 22.32/7.25 expectedModCount = modCount; 22.32/7.25 } catch (IndexOutOfBoundsException e) { 22.32/7.25 throw new ConcurrentModificationException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 final void checkForComodification() { 22.32/7.25 if (modCount != expectedModCount) 22.32/7.25 throw new ConcurrentModificationException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 private class ListItr extends Itr implements ListIterator { 22.32/7.25 ListItr(int index) { 22.32/7.25 cursor = index; 22.32/7.25 } 22.32/7.25 22.32/7.25 public boolean hasPrevious() { 22.32/7.25 return cursor != 0; 22.32/7.25 } 22.32/7.25 22.32/7.25 public E previous() { 22.32/7.25 checkForComodification(); 22.32/7.25 try { 22.32/7.25 int i = cursor - 1; 22.32/7.25 E previous = get(i); 22.32/7.25 lastRet = cursor = i; 22.32/7.25 return previous; 22.32/7.25 } catch (IndexOutOfBoundsException e) { 22.32/7.25 checkForComodification(); 22.32/7.25 throw new NoSuchElementException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 public int nextIndex() { 22.32/7.25 return cursor; 22.32/7.25 } 22.32/7.25 22.32/7.25 public int previousIndex() { 22.32/7.25 return cursor-1; 22.32/7.25 } 22.32/7.25 22.32/7.25 public void set(E e) { 22.32/7.25 if (lastRet < 0) 22.32/7.25 throw new IllegalStateException(); 22.32/7.25 checkForComodification(); 22.32/7.25 22.32/7.25 try { 22.32/7.25 AbstractList.this.set(lastRet, e); 22.32/7.25 expectedModCount = modCount; 22.32/7.25 } catch (IndexOutOfBoundsException ex) { 22.32/7.25 throw new ConcurrentModificationException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 public void add(E e) { 22.32/7.25 checkForComodification(); 22.32/7.25 22.32/7.25 try { 22.32/7.25 int i = cursor; 22.32/7.25 AbstractList.this.add(i, e); 22.32/7.25 lastRet = -1; 22.32/7.25 cursor = i + 1; 22.32/7.25 expectedModCount = modCount; 22.32/7.25 } catch (IndexOutOfBoundsException ex) { 22.32/7.25 throw new ConcurrentModificationException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * {@inheritDoc} 22.32/7.25 * 22.32/7.25 *

This implementation returns a list that subclasses 22.32/7.25 * {@code AbstractList}. The subclass stores, in private fields, the 22.32/7.25 * offset of the subList within the backing list, the size of the subList 22.32/7.25 * (which can change over its lifetime), and the expected 22.32/7.25 * {@code modCount} value of the backing list. There are two variants 22.32/7.25 * of the subclass, one of which implements {@code RandomAccess}. 22.32/7.25 * If this list implements {@code RandomAccess} the returned list will 22.32/7.25 * be an instance of the subclass that implements {@code RandomAccess}. 22.32/7.25 * 22.32/7.25 *

The subclass's {@code set(int, E)}, {@code get(int)}, 22.32/7.25 * {@code add(int, E)}, {@code remove(int)}, {@code addAll(int, 22.32/7.25 * Collection)} and {@code removeRange(int, int)} methods all 22.32/7.25 * delegate to the corresponding methods on the backing abstract list, 22.32/7.25 * after bounds-checking the index and adjusting for the offset. The 22.32/7.25 * {@code addAll(Collection c)} method merely returns {@code addAll(size, 22.32/7.25 * c)}. 22.32/7.25 * 22.32/7.25 *

The {@code listIterator(int)} method returns a "wrapper object" 22.32/7.25 * over a list iterator on the backing list, which is created with the 22.32/7.25 * corresponding method on the backing list. The {@code iterator} method 22.32/7.25 * merely returns {@code listIterator()}, and the {@code size} method 22.32/7.25 * merely returns the subclass's {@code size} field. 22.32/7.25 * 22.32/7.25 *

All methods first check to see if the actual {@code modCount} of 22.32/7.25 * the backing list is equal to its expected value, and throw a 22.32/7.25 * {@code ConcurrentModificationException} if it is not. 22.32/7.25 * 22.32/7.25 * @throws IndexOutOfBoundsException if an endpoint index value is out of range 22.32/7.25 * {@code (fromIndex < 0 || toIndex > size)} 22.32/7.25 * @throws IllegalArgumentException if the endpoint indices are out of order 22.32/7.25 * {@code (fromIndex > toIndex)} 22.32/7.25 */ 22.32/7.25 public List subList(int fromIndex, int toIndex) { 22.32/7.25 return (this instanceof RandomAccess ? 22.32/7.25 new RandomAccessSubList(this, fromIndex, toIndex) : 22.32/7.25 new SubList(this, fromIndex, toIndex)); 22.32/7.25 } 22.32/7.25 22.32/7.25 // Comparison and hashing 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Compares the specified object with this list for equality. Returns 22.32/7.25 * {@code true} if and only if the specified object is also a list, both 22.32/7.25 * lists have the same size, and all corresponding pairs of elements in 22.32/7.25 * the two lists are equal. (Two elements {@code e1} and 22.32/7.25 * {@code e2} are equal if {@code (e1==null ? e2==null : 22.32/7.25 * e1.equals(e2))}.) In other words, two lists are defined to be 22.32/7.25 * equal if they contain the same elements in the same order.

22.32/7.25 * 22.32/7.25 * This implementation first checks if the specified object is this 22.32/7.25 * list. If so, it returns {@code true}; if not, it checks if the 22.32/7.25 * specified object is a list. If not, it returns {@code false}; if so, 22.32/7.25 * it iterates over both lists, comparing corresponding pairs of elements. 22.32/7.25 * If any comparison returns {@code false}, this method returns 22.32/7.25 * {@code false}. If either iterator runs out of elements before the 22.32/7.25 * other it returns {@code false} (as the lists are of unequal length); 22.32/7.25 * otherwise it returns {@code true} when the iterations complete. 22.32/7.25 * 22.32/7.25 * @param o the object to be compared for equality with this list 22.32/7.25 * @return {@code true} if the specified object is equal to this list 22.32/7.25 */ 22.32/7.25 public boolean equals(Object o) { 22.32/7.25 if (o == this) 22.32/7.25 return true; 22.32/7.25 if (!(o instanceof List)) 22.32/7.25 return false; 22.32/7.25 22.32/7.25 ListIterator e1 = listIterator(); 22.32/7.25 ListIterator e2 = ((List) o).listIterator(); 22.32/7.25 while(e1.hasNext() && e2.hasNext()) { 22.32/7.25 E o1 = e1.next(); 22.32/7.25 Object o2 = e2.next(); 22.32/7.25 if (!(o1==null ? o2==null : o1.equals(o2))) 22.32/7.25 return false; 22.32/7.25 } 22.32/7.25 return !(e1.hasNext() || e2.hasNext()); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns the hash code value for this list. 22.32/7.25 * 22.32/7.25 *

This implementation uses exactly the code that is used to define the 22.32/7.25 * list hash function in the documentation for the {@link List#hashCode} 22.32/7.25 * method. 22.32/7.25 * 22.32/7.25 * @return the hash code value for this list 22.32/7.25 */ 22.32/7.25 public int hashCode() { 22.32/7.25 int hashCode = 1; 22.32/7.25 Iterator it = this.iterator(); 22.32/7.25 while (it.hasNext()) { 22.32/7.25 E e = it.next(); 22.32/7.25 hashCode = 31*hashCode + (e==null ? 0 : e.hashCode()); 22.32/7.25 } 22.32/7.25 return hashCode; 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Removes from this list all of the elements whose index is between 22.32/7.25 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. 22.32/7.25 * Shifts any succeeding elements to the left (reduces their index). 22.32/7.25 * This call shortens the list by {@code (toIndex - fromIndex)} elements. 22.32/7.25 * (If {@code toIndex==fromIndex}, this operation has no effect.) 22.32/7.25 * 22.32/7.25 *

This method is called by the {@code clear} operation on this list 22.32/7.25 * and its subLists. Overriding this method to take advantage of 22.32/7.25 * the internals of the list implementation can substantially 22.32/7.25 * improve the performance of the {@code clear} operation on this list 22.32/7.25 * and its subLists. 22.32/7.25 * 22.32/7.25 *

This implementation gets a list iterator positioned before 22.32/7.25 * {@code fromIndex}, and repeatedly calls {@code ListIterator.next} 22.32/7.25 * followed by {@code ListIterator.remove} until the entire range has 22.32/7.25 * been removed. Note: if {@code ListIterator.remove} requires linear 22.32/7.25 * time, this implementation requires quadratic time. 22.32/7.25 * 22.32/7.25 * @param fromIndex index of first element to be removed 22.32/7.25 * @param toIndex index after last element to be removed 22.32/7.25 */ 22.32/7.25 protected void removeRange(int fromIndex, int toIndex) { 22.32/7.25 ListIterator it = listIterator(fromIndex); 22.32/7.25 for (int i=0, n=toIndex-fromIndex; istructurally modified. 22.32/7.25 * Structural modifications are those that change the size of the 22.32/7.25 * list, or otherwise perturb it in such a fashion that iterations in 22.32/7.25 * progress may yield incorrect results. 22.32/7.25 * 22.32/7.25 *

This field is used by the iterator and list iterator implementation 22.32/7.25 * returned by the {@code iterator} and {@code listIterator} methods. 22.32/7.25 * If the value of this field changes unexpectedly, the iterator (or list 22.32/7.25 * iterator) will throw a {@code ConcurrentModificationException} in 22.32/7.25 * response to the {@code next}, {@code remove}, {@code previous}, 22.32/7.25 * {@code set} or {@code add} operations. This provides 22.32/7.25 * fail-fast behavior, rather than non-deterministic behavior in 22.32/7.25 * the face of concurrent modification during iteration. 22.32/7.25 * 22.32/7.25 *

Use of this field by subclasses is optional. If a subclass 22.32/7.25 * wishes to provide fail-fast iterators (and list iterators), then it 22.32/7.25 * merely has to increment this field in its {@code add(int, E)} and 22.32/7.25 * {@code remove(int)} methods (and any other methods that it overrides 22.32/7.25 * that result in structural modifications to the list). A single call to 22.32/7.25 * {@code add(int, E)} or {@code remove(int)} must add no more than 22.32/7.25 * one to this field, or the iterators (and list iterators) will throw 22.32/7.25 * bogus {@code ConcurrentModificationExceptions}. If an implementation 22.32/7.25 * does not wish to provide fail-fast iterators, this field may be 22.32/7.25 * ignored. 22.32/7.25 */ 22.32/7.25 protected transient int modCount = 0; 22.32/7.25 22.32/7.25 private void rangeCheckForAdd(int index) { 22.32/7.25 if (index < 0 || index > size()) 22.32/7.25 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.25 } 22.32/7.25 22.32/7.25 private String outOfBoundsMsg(int index) { 22.32/7.25 return ""; 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 class SubList extends AbstractList { 22.32/7.25 private final AbstractList l; 22.32/7.25 private final int offset; 22.32/7.25 private int size; 22.32/7.25 22.32/7.25 SubList(AbstractList list, int fromIndex, int toIndex) { 22.32/7.25 if (fromIndex < 0) 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 if (toIndex > list.size()) 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 if (fromIndex > toIndex) 22.32/7.25 throw new IllegalArgumentException(); 22.32/7.25 l = list; 22.32/7.25 offset = fromIndex; 22.32/7.25 size = toIndex - fromIndex; 22.32/7.25 this.modCount = l.modCount; 22.32/7.25 } 22.32/7.25 22.32/7.25 public E set(int index, E element) { 22.32/7.25 rangeCheck(index); 22.32/7.25 checkForComodification(); 22.32/7.25 return l.set(index+offset, element); 22.32/7.25 } 22.32/7.25 22.32/7.25 public E get(int index) { 22.32/7.25 rangeCheck(index); 22.32/7.25 checkForComodification(); 22.32/7.25 return l.get(index+offset); 22.32/7.25 } 22.32/7.25 22.32/7.25 public int size() { 22.32/7.25 checkForComodification(); 22.32/7.25 return size; 22.32/7.25 } 22.32/7.25 22.32/7.25 public void add(int index, E element) { 22.32/7.25 rangeCheckForAdd(index); 22.32/7.25 checkForComodification(); 22.32/7.25 l.add(index+offset, element); 22.32/7.25 this.modCount = l.modCount; 22.32/7.25 size++; 22.32/7.25 } 22.32/7.25 22.32/7.25 public E remove(int index) { 22.32/7.25 rangeCheck(index); 22.32/7.25 checkForComodification(); 22.32/7.25 E result = l.remove(index+offset); 22.32/7.25 this.modCount = l.modCount; 22.32/7.25 size--; 22.32/7.25 return result; 22.32/7.25 } 22.32/7.25 22.32/7.25 protected void removeRange(int fromIndex, int toIndex) { 22.32/7.25 checkForComodification(); 22.32/7.25 l.removeRange(fromIndex+offset, toIndex+offset); 22.32/7.25 this.modCount = l.modCount; 22.32/7.25 size -= (toIndex-fromIndex); 22.32/7.25 } 22.32/7.25 22.32/7.25 public boolean addAll(Collection c) { 22.32/7.25 return addAll(size, c); 22.32/7.25 } 22.32/7.25 22.32/7.25 public boolean addAll(int index, Collection c) { 22.32/7.25 rangeCheckForAdd(index); 22.32/7.25 int cSize = c.size(); 22.32/7.25 if (cSize==0) 22.32/7.25 return false; 22.32/7.25 22.32/7.25 checkForComodification(); 22.32/7.25 l.addAll(offset+index, c); 22.32/7.25 this.modCount = l.modCount; 22.32/7.25 size += cSize; 22.32/7.25 return true; 22.32/7.25 } 22.32/7.25 22.32/7.25 public Iterator iterator() { 22.32/7.25 return listIterator(); 22.32/7.25 } 22.32/7.25 22.32/7.25 public ListIterator listIterator(final int index) { 22.32/7.25 checkForComodification(); 22.32/7.25 rangeCheckForAdd(index); 22.32/7.25 22.32/7.25 return new ListIterator() { 22.32/7.25 private final ListIterator i = l.listIterator(index+offset); 22.32/7.25 22.32/7.25 public boolean hasNext() { 22.32/7.25 return nextIndex() < size; 22.32/7.25 } 22.32/7.25 22.32/7.25 public E next() { 22.32/7.25 if (hasNext()) 22.32/7.25 return i.next(); 22.32/7.25 else 22.32/7.25 throw new NoSuchElementException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 public boolean hasPrevious() { 22.32/7.25 return previousIndex() >= 0; 22.32/7.25 } 22.32/7.25 22.32/7.25 public E previous() { 22.32/7.25 if (hasPrevious()) 22.32/7.25 return i.previous(); 22.32/7.25 else 22.32/7.25 throw new NoSuchElementException(); 22.32/7.25 } 22.32/7.25 22.32/7.25 public int nextIndex() { 22.32/7.25 return i.nextIndex() - offset; 22.32/7.25 } 22.32/7.25 22.32/7.25 public int previousIndex() { 22.32/7.25 return i.previousIndex() - offset; 22.32/7.25 } 22.32/7.25 22.32/7.25 public void remove() { 22.32/7.25 i.remove(); 22.32/7.25 SubList.this.modCount = l.modCount; 22.32/7.25 size--; 22.32/7.25 } 22.32/7.25 22.32/7.25 public void set(E e) { 22.32/7.25 i.set(e); 22.32/7.25 } 22.32/7.25 22.32/7.25 public void add(E e) { 22.32/7.25 i.add(e); 22.32/7.25 SubList.this.modCount = l.modCount; 22.32/7.25 size++; 22.32/7.25 } 22.32/7.25 }; 22.32/7.25 } 22.32/7.25 22.32/7.25 public List subList(int fromIndex, int toIndex) { 22.32/7.25 return new SubList(this, fromIndex, toIndex); 22.32/7.25 } 22.32/7.25 22.32/7.25 private void rangeCheck(int index) { 22.32/7.25 if (index < 0 || index >= size) 22.32/7.25 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.25 } 22.32/7.25 22.32/7.25 private void rangeCheckForAdd(int index) { 22.32/7.25 if (index < 0 || index > size) 22.32/7.25 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.25 } 22.32/7.25 22.32/7.25 private String outOfBoundsMsg(int index) { 22.32/7.25 return ""; 22.32/7.25 } 22.32/7.25 22.32/7.25 private void checkForComodification() { 22.32/7.25 if (this.modCount != l.modCount) 22.32/7.25 throw new ConcurrentModificationException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 class RandomAccessSubList extends SubList implements RandomAccess { 22.32/7.25 RandomAccessSubList(AbstractList list, int fromIndex, int toIndex) { 22.32/7.25 super(list, fromIndex, toIndex); 22.32/7.25 } 22.32/7.25 22.32/7.25 public List subList(int fromIndex, int toIndex) { 22.32/7.25 return new RandomAccessSubList(this, fromIndex, toIndex); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 /* 22.32/7.25 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.25 * 22.32/7.25 * This code is free software; you can redistribute it and/or modify it 22.32/7.25 * under the terms of the GNU General Public License version 2 only, as 22.32/7.25 * published by the Free Software Foundation. Sun designates this 22.32/7.25 * particular file as subject to the "Classpath" exception as provided 22.32/7.25 * by Sun in the LICENSE file that accompanied this code. 22.32/7.25 * 22.32/7.25 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.25 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.25 * accompanied this code). 22.32/7.25 * 22.32/7.25 * You should have received a copy of the GNU General Public License version 22.32/7.25 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.25 * 22.32/7.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.25 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.25 * have any questions. 22.32/7.25 */ 22.32/7.25 22.32/7.25 package javaUtilEx; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * This class provides a skeletal implementation of the List 22.32/7.25 * interface to minimize the effort required to implement this interface 22.32/7.25 * backed by a "sequential access" data store (such as a linked list). For 22.32/7.25 * random access data (such as an array), AbstractList should be used 22.32/7.25 * in preference to this class.

22.32/7.25 * 22.32/7.25 * This class is the opposite of the AbstractList class in the sense 22.32/7.25 * that it implements the "random access" methods (get(int index), 22.32/7.25 * set(int index, E element), add(int index, E element) and 22.32/7.25 * remove(int index)) on top of the list's list iterator, instead of 22.32/7.25 * the other way around.

22.32/7.25 * 22.32/7.25 * To implement a list the programmer needs only to extend this class and 22.32/7.25 * provide implementations for the listIterator and size 22.32/7.25 * methods. For an unmodifiable list, the programmer need only implement the 22.32/7.25 * list iterator's hasNext, next, hasPrevious, 22.32/7.25 * previous and index methods.

22.32/7.25 * 22.32/7.25 * For a modifiable list the programmer should additionally implement the list 22.32/7.25 * iterator's set method. For a variable-size list the programmer 22.32/7.25 * should additionally implement the list iterator's remove and 22.32/7.25 * add methods.

22.32/7.25 * 22.32/7.25 * The programmer should generally provide a void (no argument) and collection 22.32/7.25 * constructor, as per the recommendation in the Collection interface 22.32/7.25 * specification.

22.32/7.25 * 22.32/7.25 * This class is a member of the 22.32/7.25 * 22.32/7.25 * Java Collections Framework. 22.32/7.25 * 22.32/7.25 * @author Josh Bloch 22.32/7.25 * @author Neal Gafter 22.32/7.25 * @see Collection 22.32/7.25 * @see List 22.32/7.25 * @see AbstractList 22.32/7.25 * @see AbstractCollection 22.32/7.25 * @since 1.2 22.32/7.25 */ 22.32/7.25 22.32/7.25 public abstract class AbstractSequentialList extends AbstractList { 22.32/7.25 /** 22.32/7.25 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.25 * implicit.) 22.32/7.25 */ 22.32/7.25 protected AbstractSequentialList() { 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns the element at the specified position in this list. 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator pointing to the 22.32/7.25 * indexed element (with listIterator(index)). Then, it gets 22.32/7.25 * the element using ListIterator.next and returns it. 22.32/7.25 * 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public E get(int index) { 22.32/7.25 try { 22.32/7.25 return listIterator(index).next(); 22.32/7.25 } catch (NoSuchElementException exc) { 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Replaces the element at the specified position in this list with the 22.32/7.25 * specified element (optional operation). 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator pointing to the 22.32/7.25 * indexed element (with listIterator(index)). Then, it gets 22.32/7.25 * the current element using ListIterator.next and replaces it 22.32/7.25 * with ListIterator.set. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the list iterator does not 22.32/7.25 * implement the set operation. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public E set(int index, E element) { 22.32/7.25 try { 22.32/7.25 ListIterator e = listIterator(index); 22.32/7.25 E oldVal = e.next(); 22.32/7.25 e.set(element); 22.32/7.25 return oldVal; 22.32/7.25 } catch (NoSuchElementException exc) { 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Inserts the specified element at the specified position in this list 22.32/7.25 * (optional operation). Shifts the element currently at that position 22.32/7.25 * (if any) and any subsequent elements to the right (adds one to their 22.32/7.25 * indices). 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator pointing to the 22.32/7.25 * indexed element (with listIterator(index)). Then, it 22.32/7.25 * inserts the specified element with ListIterator.add. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the list iterator does not 22.32/7.25 * implement the add operation. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public void add(int index, E element) { 22.32/7.25 try { 22.32/7.25 listIterator(index).add(element); 22.32/7.25 } catch (NoSuchElementException exc) { 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Removes the element at the specified position in this list (optional 22.32/7.25 * operation). Shifts any subsequent elements to the left (subtracts one 22.32/7.25 * from their indices). Returns the element that was removed from the 22.32/7.25 * list. 22.32/7.25 * 22.32/7.25 *

This implementation first gets a list iterator pointing to the 22.32/7.25 * indexed element (with listIterator(index)). Then, it removes 22.32/7.25 * the element with ListIterator.remove. 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the list iterator does not 22.32/7.25 * implement the remove operation. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public E remove(int index) { 22.32/7.25 try { 22.32/7.25 ListIterator e = listIterator(index); 22.32/7.25 E outCast = e.next(); 22.32/7.25 e.remove(); 22.32/7.25 return outCast; 22.32/7.25 } catch (NoSuchElementException exc) { 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Bulk Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Inserts all of the elements in the specified collection into this 22.32/7.25 * list at the specified position (optional operation). Shifts the 22.32/7.25 * element currently at that position (if any) and any subsequent 22.32/7.25 * elements to the right (increases their indices). The new elements 22.32/7.25 * will appear in this list in the order that they are returned by the 22.32/7.25 * specified collection's iterator. The behavior of this operation is 22.32/7.25 * undefined if the specified collection is modified while the 22.32/7.25 * operation is in progress. (Note that this will occur if the specified 22.32/7.25 * collection is this list, and it's nonempty.) 22.32/7.25 * 22.32/7.25 *

This implementation gets an iterator over the specified collection and 22.32/7.25 * a list iterator over this list pointing to the indexed element (with 22.32/7.25 * listIterator(index)). Then, it iterates over the specified 22.32/7.25 * collection, inserting the elements obtained from the iterator into this 22.32/7.25 * list, one at a time, using ListIterator.add followed by 22.32/7.25 * ListIterator.next (to skip over the added element). 22.32/7.25 * 22.32/7.25 *

Note that this implementation will throw an 22.32/7.25 * UnsupportedOperationException if the list iterator returned by 22.32/7.25 * the listIterator method does not implement the add 22.32/7.25 * operation. 22.32/7.25 * 22.32/7.25 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.25 * @throws ClassCastException {@inheritDoc} 22.32/7.25 * @throws NullPointerException {@inheritDoc} 22.32/7.25 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public boolean addAll(int index, Collection c) { 22.32/7.25 try { 22.32/7.25 boolean modified = false; 22.32/7.25 ListIterator e1 = listIterator(index); 22.32/7.25 Iterator e2 = c.iterator(); 22.32/7.25 while (e2.hasNext()) { 22.32/7.25 e1.add(e2.next()); 22.32/7.25 modified = true; 22.32/7.25 } 22.32/7.25 return modified; 22.32/7.25 } catch (NoSuchElementException exc) { 22.32/7.25 throw new IndexOutOfBoundsException(); 22.32/7.25 } 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 // Iterators 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns an iterator over the elements in this list (in proper 22.32/7.25 * sequence).

22.32/7.25 * 22.32/7.25 * This implementation merely returns a list iterator over the list. 22.32/7.25 * 22.32/7.25 * @return an iterator over the elements in this list (in proper sequence) 22.32/7.25 */ 22.32/7.25 public Iterator iterator() { 22.32/7.25 return listIterator(); 22.32/7.25 } 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns a list iterator over the elements in this list (in proper 22.32/7.25 * sequence). 22.32/7.25 * 22.32/7.25 * @param index index of first element to be returned from the list 22.32/7.25 * iterator (by a call to the next method) 22.32/7.25 * @return a list iterator over the elements in this list (in proper 22.32/7.25 * sequence) 22.32/7.25 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.25 */ 22.32/7.25 public abstract ListIterator listIterator(int index); 22.32/7.25 } 22.32/7.25 22.32/7.25 22.32/7.25 /* 22.32/7.25 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.25 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.25 * 22.32/7.25 * This code is free software; you can redistribute it and/or modify it 22.32/7.25 * under the terms of the GNU General Public License version 2 only, as 22.32/7.25 * published by the Free Software Foundation. Sun designates this 22.32/7.25 * particular file as subject to the "Classpath" exception as provided 22.32/7.25 * by Sun in the LICENSE file that accompanied this code. 22.32/7.25 * 22.32/7.25 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.25 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.25 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.25 * accompanied this code). 22.32/7.25 * 22.32/7.25 * You should have received a copy of the GNU General Public License version 22.32/7.25 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.25 * 22.32/7.25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.25 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.25 * have any questions. 22.32/7.25 */ 22.32/7.25 22.32/7.25 package javaUtilEx; 22.32/7.25 22.32/7.25 /** 22.32/7.25 * The root interface in the collection hierarchy. A collection 22.32/7.25 * represents a group of objects, known as its elements. Some 22.32/7.25 * collections allow duplicate elements and others do not. Some are ordered 22.32/7.25 * and others unordered. The JDK does not provide any direct 22.32/7.25 * implementations of this interface: it provides implementations of more 22.32/7.25 * specific subinterfaces like Set and List. This interface 22.32/7.25 * is typically used to pass collections around and manipulate them where 22.32/7.25 * maximum generality is desired. 22.32/7.25 * 22.32/7.25 *

Bags or multisets (unordered collections that may contain 22.32/7.25 * duplicate elements) should implement this interface directly. 22.32/7.25 * 22.32/7.25 *

All general-purpose Collection implementation classes (which 22.32/7.25 * typically implement Collection indirectly through one of its 22.32/7.25 * subinterfaces) should provide two "standard" constructors: a void (no 22.32/7.25 * arguments) constructor, which creates an empty collection, and a 22.32/7.25 * constructor with a single argument of type Collection, which 22.32/7.25 * creates a new collection with the same elements as its argument. In 22.32/7.25 * effect, the latter constructor allows the user to copy any collection, 22.32/7.25 * producing an equivalent collection of the desired implementation type. 22.32/7.25 * There is no way to enforce this convention (as interfaces cannot contain 22.32/7.25 * constructors) but all of the general-purpose Collection 22.32/7.25 * implementations in the Java platform libraries comply. 22.32/7.25 * 22.32/7.25 *

The "destructive" methods contained in this interface, that is, the 22.32/7.25 * methods that modify the collection on which they operate, are specified to 22.32/7.25 * throw UnsupportedOperationException if this collection does not 22.32/7.25 * support the operation. If this is the case, these methods may, but are not 22.32/7.25 * required to, throw an UnsupportedOperationException if the 22.32/7.25 * invocation would have no effect on the collection. For example, invoking 22.32/7.25 * the {@link #addAll(Collection)} method on an unmodifiable collection may, 22.32/7.25 * but is not required to, throw the exception if the collection to be added 22.32/7.25 * is empty. 22.32/7.25 * 22.32/7.25 *

Some collection implementations have restrictions on the elements that 22.32/7.25 * they may contain. For example, some implementations prohibit null elements, 22.32/7.25 * and some have restrictions on the types of their elements. Attempting to 22.32/7.25 * add an ineligible element throws an unchecked exception, typically 22.32/7.25 * NullPointerException or ClassCastException. Attempting 22.32/7.25 * to query the presence of an ineligible element may throw an exception, 22.32/7.25 * or it may simply return false; some implementations will exhibit the former 22.32/7.25 * behavior and some will exhibit the latter. More generally, attempting an 22.32/7.25 * operation on an ineligible element whose completion would not result in 22.32/7.25 * the insertion of an ineligible element into the collection may throw an 22.32/7.25 * exception or it may succeed, at the option of the implementation. 22.32/7.25 * Such exceptions are marked as "optional" in the specification for this 22.32/7.25 * interface. 22.32/7.25 * 22.32/7.25 *

It is up to each collection to determine its own synchronization 22.32/7.25 * policy. In the absence of a stronger guarantee by the 22.32/7.25 * implementation, undefined behavior may result from the invocation 22.32/7.25 * of any method on a collection that is being mutated by another 22.32/7.25 * thread; this includes direct invocations, passing the collection to 22.32/7.25 * a method that might perform invocations, and using an existing 22.32/7.25 * iterator to examine the collection. 22.32/7.25 * 22.32/7.25 *

Many methods in Collections Framework interfaces are defined in 22.32/7.25 * terms of the {@link Object#equals(Object) equals} method. For example, 22.32/7.25 * the specification for the {@link #contains(Object) contains(Object o)} 22.32/7.25 * method says: "returns true if and only if this collection 22.32/7.25 * contains at least one element e such that 22.32/7.25 * (o==null ? e==null : o.equals(e))." This specification should 22.32/7.25 * not be construed to imply that invoking Collection.contains 22.32/7.25 * with a non-null argument o will cause o.equals(e) to be 22.32/7.25 * invoked for any element e. Implementations are free to implement 22.32/7.25 * optimizations whereby the equals invocation is avoided, for 22.32/7.25 * example, by first comparing the hash codes of the two elements. (The 22.32/7.25 * {@link Object#hashCode()} specification guarantees that two objects with 22.32/7.25 * unequal hash codes cannot be equal.) More generally, implementations of 22.32/7.25 * the various Collections Framework interfaces are free to take advantage of 22.32/7.25 * the specified behavior of underlying {@link Object} methods wherever the 22.32/7.25 * implementor deems it appropriate. 22.32/7.25 * 22.32/7.25 *

This interface is a member of the 22.32/7.25 * 22.32/7.25 * Java Collections Framework. 22.32/7.25 * 22.32/7.25 * @author Josh Bloch 22.32/7.25 * @author Neal Gafter 22.32/7.25 * @see Set 22.32/7.25 * @see List 22.32/7.25 * @see Map 22.32/7.25 * @see SortedSet 22.32/7.25 * @see SortedMap 22.32/7.25 * @see HashSet 22.32/7.25 * @see TreeSet 22.32/7.25 * @see ArrayList 22.32/7.25 * @see LinkedList 22.32/7.25 * @see Vector 22.32/7.25 * @see Collections 22.32/7.25 * @see Arrays 22.32/7.25 * @see AbstractCollection 22.32/7.25 * @since 1.2 22.32/7.25 */ 22.32/7.25 22.32/7.25 public interface Collection { 22.32/7.25 // Query Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns the number of elements in this collection. If this collection 22.32/7.25 * contains more than Integer.MAX_VALUE elements, returns 22.32/7.25 * Integer.MAX_VALUE. 22.32/7.25 * 22.32/7.25 * @return the number of elements in this collection 22.32/7.25 */ 22.32/7.25 int size(); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns true if this collection contains no elements. 22.32/7.25 * 22.32/7.25 * @return true if this collection contains no elements 22.32/7.25 */ 22.32/7.25 boolean isEmpty(); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns true if this collection contains the specified element. 22.32/7.25 * More formally, returns true if and only if this collection 22.32/7.25 * contains at least one element e such that 22.32/7.25 * (o==null ? e==null : o.equals(e)). 22.32/7.25 * 22.32/7.25 * @param o element whose presence in this collection is to be tested 22.32/7.25 * @return true if this collection contains the specified 22.32/7.25 * element 22.32/7.25 * @throws ClassCastException if the type of the specified element 22.32/7.25 * is incompatible with this collection (optional) 22.32/7.25 * @throws NullPointerException if the specified element is null and this 22.32/7.25 * collection does not permit null elements (optional) 22.32/7.25 */ 22.32/7.25 boolean contains(Object o); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns an iterator over the elements in this collection. There are no 22.32/7.25 * guarantees concerning the order in which the elements are returned 22.32/7.25 * (unless this collection is an instance of some class that provides a 22.32/7.25 * guarantee). 22.32/7.25 * 22.32/7.25 * @return an Iterator over the elements in this collection 22.32/7.25 */ 22.32/7.25 Iterator iterator(); 22.32/7.25 22.32/7.25 // Modification Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Ensures that this collection contains the specified element (optional 22.32/7.25 * operation). Returns true if this collection changed as a 22.32/7.25 * result of the call. (Returns false if this collection does 22.32/7.25 * not permit duplicates and already contains the specified element.)

22.32/7.25 * 22.32/7.25 * Collections that support this operation may place limitations on what 22.32/7.25 * elements may be added to this collection. In particular, some 22.32/7.25 * collections will refuse to add null elements, and others will 22.32/7.25 * impose restrictions on the type of elements that may be added. 22.32/7.25 * Collection classes should clearly specify in their documentation any 22.32/7.25 * restrictions on what elements may be added.

22.32/7.25 * 22.32/7.25 * If a collection refuses to add a particular element for any reason 22.32/7.25 * other than that it already contains the element, it must throw 22.32/7.25 * an exception (rather than returning false). This preserves 22.32/7.25 * the invariant that a collection always contains the specified element 22.32/7.25 * after this call returns. 22.32/7.25 * 22.32/7.25 * @param e element whose presence in this collection is to be ensured 22.32/7.25 * @return true if this collection changed as a result of the 22.32/7.25 * call 22.32/7.25 * @throws UnsupportedOperationException if the add operation 22.32/7.25 * is not supported by this collection 22.32/7.25 * @throws ClassCastException if the class of the specified element 22.32/7.25 * prevents it from being added to this collection 22.32/7.25 * @throws NullPointerException if the specified element is null and this 22.32/7.25 * collection does not permit null elements 22.32/7.25 * @throws IllegalArgumentException if some property of the element 22.32/7.25 * prevents it from being added to this collection 22.32/7.25 * @throws IllegalStateException if the element cannot be added at this 22.32/7.25 * time due to insertion restrictions 22.32/7.25 */ 22.32/7.25 boolean add(E e); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Removes a single instance of the specified element from this 22.32/7.25 * collection, if it is present (optional operation). More formally, 22.32/7.25 * removes an element e such that 22.32/7.25 * (o==null ? e==null : o.equals(e)), if 22.32/7.25 * this collection contains one or more such elements. Returns 22.32/7.25 * true if this collection contained the specified element (or 22.32/7.25 * equivalently, if this collection changed as a result of the call). 22.32/7.25 * 22.32/7.25 * @param o element to be removed from this collection, if present 22.32/7.25 * @return true if an element was removed as a result of this call 22.32/7.25 * @throws ClassCastException if the type of the specified element 22.32/7.25 * is incompatible with this collection (optional) 22.32/7.25 * @throws NullPointerException if the specified element is null and this 22.32/7.25 * collection does not permit null elements (optional) 22.32/7.25 * @throws UnsupportedOperationException if the remove operation 22.32/7.25 * is not supported by this collection 22.32/7.25 */ 22.32/7.25 boolean remove(Object o); 22.32/7.25 22.32/7.25 22.32/7.25 // Bulk Operations 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Returns true if this collection contains all of the elements 22.32/7.25 * in the specified collection. 22.32/7.25 * 22.32/7.25 * @param c collection to be checked for containment in this collection 22.32/7.25 * @return true if this collection contains all of the elements 22.32/7.25 * in the specified collection 22.32/7.25 * @throws ClassCastException if the types of one or more elements 22.32/7.25 * in the specified collection are incompatible with this 22.32/7.25 * collection (optional) 22.32/7.25 * @throws NullPointerException if the specified collection contains one 22.32/7.25 * or more null elements and this collection does not permit null 22.32/7.25 * elements (optional), or if the specified collection is null 22.32/7.25 * @see #contains(Object) 22.32/7.25 */ 22.32/7.25 boolean containsAll(Collection c); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Adds all of the elements in the specified collection to this collection 22.32/7.25 * (optional operation). The behavior of this operation is undefined if 22.32/7.25 * the specified collection is modified while the operation is in progress. 22.32/7.25 * (This implies that the behavior of this call is undefined if the 22.32/7.25 * specified collection is this collection, and this collection is 22.32/7.25 * nonempty.) 22.32/7.25 * 22.32/7.25 * @param c collection containing elements to be added to this collection 22.32/7.25 * @return true if this collection changed as a result of the call 22.32/7.25 * @throws UnsupportedOperationException if the addAll operation 22.32/7.25 * is not supported by this collection 22.32/7.25 * @throws ClassCastException if the class of an element of the specified 22.32/7.25 * collection prevents it from being added to this collection 22.32/7.25 * @throws NullPointerException if the specified collection contains a 22.32/7.25 * null element and this collection does not permit null elements, 22.32/7.25 * or if the specified collection is null 22.32/7.25 * @throws IllegalArgumentException if some property of an element of the 22.32/7.25 * specified collection prevents it from being added to this 22.32/7.25 * collection 22.32/7.25 * @throws IllegalStateException if not all the elements can be added at 22.32/7.25 * this time due to insertion restrictions 22.32/7.25 * @see #add(Object) 22.32/7.25 */ 22.32/7.25 boolean addAll(Collection c); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Removes all of this collection's elements that are also contained in the 22.32/7.25 * specified collection (optional operation). After this call returns, 22.32/7.25 * this collection will contain no elements in common with the specified 22.32/7.25 * collection. 22.32/7.25 * 22.32/7.25 * @param c collection containing elements to be removed from this collection 22.32/7.25 * @return true if this collection changed as a result of the 22.32/7.25 * call 22.32/7.25 * @throws UnsupportedOperationException if the removeAll method 22.32/7.25 * is not supported by this collection 22.32/7.25 * @throws ClassCastException if the types of one or more elements 22.32/7.25 * in this collection are incompatible with the specified 22.32/7.25 * collection (optional) 22.32/7.25 * @throws NullPointerException if this collection contains one or more 22.32/7.25 * null elements and the specified collection does not support 22.32/7.25 * null elements (optional), or if the specified collection is null 22.32/7.25 * @see #remove(Object) 22.32/7.25 * @see #contains(Object) 22.32/7.25 */ 22.32/7.25 boolean removeAll(Collection c); 22.32/7.25 22.32/7.25 /** 22.32/7.25 * Retains only the elements in this collection that are contained in the 22.32/7.25 * specified collection (optional operation). In other words, removes from 22.32/7.25 * this collection all of its elements that are not contained in the 22.32/7.25 * specified collection. 22.32/7.25 * 22.32/7.25 * @param c collection containing elements to be retained in this collection 22.32/7.26 * @return true if this collection changed as a result of the call 22.32/7.26 * @throws UnsupportedOperationException if the retainAll operation 22.32/7.26 * is not supported by this collection 22.32/7.26 * @throws ClassCastException if the types of one or more elements 22.32/7.26 * in this collection are incompatible with the specified 22.32/7.26 * collection (optional) 22.32/7.26 * @throws NullPointerException if this collection contains one or more 22.32/7.26 * null elements and the specified collection does not permit null 22.32/7.26 * elements (optional), or if the specified collection is null 22.32/7.26 * @see #remove(Object) 22.32/7.26 * @see #contains(Object) 22.32/7.26 */ 22.32/7.26 boolean retainAll(Collection c); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes all of the elements from this collection (optional operation). 22.32/7.26 * The collection will be empty after this method returns. 22.32/7.26 * 22.32/7.26 * @throws UnsupportedOperationException if the clear operation 22.32/7.26 * is not supported by this collection 22.32/7.26 */ 22.32/7.26 void clear(); 22.32/7.26 22.32/7.26 22.32/7.26 // Comparison and hashing 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Compares the specified object with this collection for equality.

22.32/7.26 * 22.32/7.26 * While the Collection interface adds no stipulations to the 22.32/7.26 * general contract for the Object.equals, programmers who 22.32/7.26 * implement the Collection interface "directly" (in other words, 22.32/7.26 * create a class that is a Collection but is not a Set 22.32/7.26 * or a List) must exercise care if they choose to override the 22.32/7.26 * Object.equals. It is not necessary to do so, and the simplest 22.32/7.26 * course of action is to rely on Object's implementation, but 22.32/7.26 * the implementor may wish to implement a "value comparison" in place of 22.32/7.26 * the default "reference comparison." (The List and 22.32/7.26 * Set interfaces mandate such value comparisons.)

22.32/7.26 * 22.32/7.26 * The general contract for the Object.equals method states that 22.32/7.26 * equals must be symmetric (in other words, a.equals(b) if and 22.32/7.26 * only if b.equals(a)). The contracts for List.equals 22.32/7.26 * and Set.equals state that lists are only equal to other lists, 22.32/7.26 * and sets to other sets. Thus, a custom equals method for a 22.32/7.26 * collection class that implements neither the List nor 22.32/7.26 * Set interface must return false when this collection 22.32/7.26 * is compared to any list or set. (By the same logic, it is not possible 22.32/7.26 * to write a class that correctly implements both the Set and 22.32/7.26 * List interfaces.) 22.32/7.26 * 22.32/7.26 * @param o object to be compared for equality with this collection 22.32/7.26 * @return true if the specified object is equal to this 22.32/7.26 * collection 22.32/7.26 * 22.32/7.26 * @see Object#equals(Object) 22.32/7.26 * @see Set#equals(Object) 22.32/7.26 * @see List#equals(Object) 22.32/7.26 */ 22.32/7.26 boolean equals(Object o); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the hash code value for this collection. While the 22.32/7.26 * Collection interface adds no stipulations to the general 22.32/7.26 * contract for the Object.hashCode method, programmers should 22.32/7.26 * take note that any class that overrides the Object.equals 22.32/7.26 * method must also override the Object.hashCode method in order 22.32/7.26 * to satisfy the general contract for the Object.hashCodemethod. 22.32/7.26 * In particular, c1.equals(c2) implies that 22.32/7.26 * c1.hashCode()==c2.hashCode(). 22.32/7.26 * 22.32/7.26 * @return the hash code value for this collection 22.32/7.26 * 22.32/7.26 * @see Object#hashCode() 22.32/7.26 * @see Object#equals(Object) 22.32/7.26 */ 22.32/7.26 int hashCode(); 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * This exception may be thrown by methods that have detected concurrent 22.32/7.26 * modification of an object when such modification is not permissible. 22.32/7.26 *

22.32/7.26 * For example, it is not generally permissible for one thread to modify a Collection 22.32/7.26 * while another thread is iterating over it. In general, the results of the 22.32/7.26 * iteration are undefined under these circumstances. Some Iterator 22.32/7.26 * implementations (including those of all the general purpose collection implementations 22.32/7.26 * provided by the JRE) may choose to throw this exception if this behavior is 22.32/7.26 * detected. Iterators that do this are known as fail-fast iterators, 22.32/7.26 * as they fail quickly and cleanly, rather that risking arbitrary, 22.32/7.26 * non-deterministic behavior at an undetermined time in the future. 22.32/7.26 *

22.32/7.26 * Note that this exception does not always indicate that an object has 22.32/7.26 * been concurrently modified by a different thread. If a single 22.32/7.26 * thread issues a sequence of method invocations that violates the 22.32/7.26 * contract of an object, the object may throw this exception. For 22.32/7.26 * example, if a thread modifies a collection directly while it is 22.32/7.26 * iterating over the collection with a fail-fast iterator, the iterator 22.32/7.26 * will throw this exception. 22.32/7.26 * 22.32/7.26 *

Note that fail-fast behavior cannot be guaranteed as it is, generally 22.32/7.26 * speaking, impossible to make any hard guarantees in the presence of 22.32/7.26 * unsynchronized concurrent modification. Fail-fast operations 22.32/7.26 * throw ConcurrentModificationException on a best-effort basis. 22.32/7.26 * Therefore, it would be wrong to write a program that depended on this 22.32/7.26 * exception for its correctness: ConcurrentModificationException 22.32/7.26 * should be used only to detect bugs. 22.32/7.26 * 22.32/7.26 * @author Josh Bloch 22.32/7.26 * @see Collection 22.32/7.26 * @see Iterator 22.32/7.26 * @see ListIterator 22.32/7.26 * @see Vector 22.32/7.26 * @see LinkedList 22.32/7.26 * @see HashSet 22.32/7.26 * @see Hashtable 22.32/7.26 * @see TreeMap 22.32/7.26 * @see AbstractList 22.32/7.26 * @since 1.2 22.32/7.26 */ 22.32/7.26 public class ConcurrentModificationException extends RuntimeException { 22.32/7.26 /** 22.32/7.26 * Constructs a ConcurrentModificationException with no 22.32/7.26 * detail message. 22.32/7.26 */ 22.32/7.26 public ConcurrentModificationException() { 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a ConcurrentModificationException with the 22.32/7.26 * specified detail message. 22.32/7.26 * 22.32/7.26 * @param message the detail message pertaining to this exception. 22.32/7.26 */ 22.32/7.26 public ConcurrentModificationException(String message) { 22.32/7.26 super(message); 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 /* 22.32/7.26 * This file is available under and governed by the GNU General Public 22.32/7.26 * License version 2 only, as published by the Free Software Foundation. 22.32/7.26 * However, the following notice accompanied the original version of this 22.32/7.26 * file: 22.32/7.26 * 22.32/7.26 * Written by Doug Lea and Josh Bloch with assistance from members of 22.32/7.26 * JCP JSR-166 Expert Group and released to the public domain, as explained 22.32/7.26 * at http://creativecommons.org/licenses/publicdomain 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * A linear collection that supports element insertion and removal at 22.32/7.26 * both ends. The name deque is short for "double ended queue" 22.32/7.26 * and is usually pronounced "deck". Most Deque 22.32/7.26 * implementations place no fixed limits on the number of elements 22.32/7.26 * they may contain, but this interface supports capacity-restricted 22.32/7.26 * deques as well as those with no fixed size limit. 22.32/7.26 * 22.32/7.26 *

This interface defines methods to access the elements at both 22.32/7.26 * ends of the deque. Methods are provided to insert, remove, and 22.32/7.26 * examine the element. Each of these methods exists in two forms: 22.32/7.26 * one throws an exception if the operation fails, the other returns a 22.32/7.26 * special value (either null or false, depending on 22.32/7.26 * the operation). The latter form of the insert operation is 22.32/7.26 * designed specifically for use with capacity-restricted 22.32/7.26 * Deque implementations; in most implementations, insert 22.32/7.26 * operations cannot fail. 22.32/7.26 * 22.32/7.26 *

The twelve methods described above are summarized in the 22.32/7.26 * following table: 22.32/7.26 * 22.32/7.26 *

22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 *
First Element (Head) Last Element (Tail)
Throws exceptionSpecial valueThrows exceptionSpecial value
Insert{@link #addFirst addFirst(e)}{@link #offerFirst offerFirst(e)}{@link #addLast addLast(e)}{@link #offerLast offerLast(e)}
Remove{@link #removeFirst removeFirst()}{@link #pollFirst pollFirst()}{@link #removeLast removeLast()}{@link #pollLast pollLast()}
Examine{@link #getFirst getFirst()}{@link #peekFirst peekFirst()}{@link #getLast getLast()}{@link #peekLast peekLast()}
22.32/7.26 * 22.32/7.26 *

This interface extends the {@link Queue} interface. When a deque is 22.32/7.26 * used as a queue, FIFO (First-In-First-Out) behavior results. Elements are 22.32/7.26 * added at the end of the deque and removed from the beginning. The methods 22.32/7.26 * inherited from the Queue interface are precisely equivalent to 22.32/7.26 * Deque methods as indicated in the following table: 22.32/7.26 * 22.32/7.26 *

22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 *
Queue Method Equivalent Deque Method
{@link java.util.Queue#add add(e)}{@link #addLast addLast(e)}
{@link java.util.Queue#offer offer(e)}{@link #offerLast offerLast(e)}
{@link java.util.Queue#remove remove()}{@link #removeFirst removeFirst()}
{@link java.util.Queue#poll poll()}{@link #pollFirst pollFirst()}
{@link java.util.Queue#element element()}{@link #getFirst getFirst()}
{@link java.util.Queue#peek peek()}{@link #peek peekFirst()}
22.32/7.26 * 22.32/7.26 *

Deques can also be used as LIFO (Last-In-First-Out) stacks. This 22.32/7.26 * interface should be used in preference to the legacy {@link Stack} class. 22.32/7.26 * When a deque is used as a stack, elements are pushed and popped from the 22.32/7.26 * beginning of the deque. Stack methods are precisely equivalent to 22.32/7.26 * Deque methods as indicated in the table below: 22.32/7.26 * 22.32/7.26 *

22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 * 22.32/7.26 *
Stack Method Equivalent Deque Method
{@link #push push(e)}{@link #addFirst addFirst(e)}
{@link #pop pop()}{@link #removeFirst removeFirst()}
{@link #peek peek()}{@link #peekFirst peekFirst()}
22.32/7.26 * 22.32/7.26 *

Note that the {@link #peek peek} method works equally well when 22.32/7.26 * a deque is used as a queue or a stack; in either case, elements are 22.32/7.26 * drawn from the beginning of the deque. 22.32/7.26 * 22.32/7.26 *

This interface provides two methods to remove interior 22.32/7.26 * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and 22.32/7.26 * {@link #removeLastOccurrence removeLastOccurrence}. 22.32/7.26 * 22.32/7.26 *

Unlike the {@link List} interface, this interface does not 22.32/7.26 * provide support for indexed access to elements. 22.32/7.26 * 22.32/7.26 *

While Deque implementations are not strictly required 22.32/7.26 * to prohibit the insertion of null elements, they are strongly 22.32/7.26 * encouraged to do so. Users of any Deque implementations 22.32/7.26 * that do allow null elements are strongly encouraged not to 22.32/7.26 * take advantage of the ability to insert nulls. This is so because 22.32/7.26 * null is used as a special return value by various methods 22.32/7.26 * to indicated that the deque is empty. 22.32/7.26 * 22.32/7.26 *

Deque implementations generally do not define 22.32/7.26 * element-based versions of the equals and hashCode 22.32/7.26 * methods, but instead inherit the identity-based versions from class 22.32/7.26 * Object. 22.32/7.26 * 22.32/7.26 *

This interface is a member of the Java Collections 22.32/7.26 * Framework. 22.32/7.26 * 22.32/7.26 * @author Doug Lea 22.32/7.26 * @author Josh Bloch 22.32/7.26 * @since 1.6 22.32/7.26 * @param the type of elements held in this collection 22.32/7.26 */ 22.32/7.26 22.32/7.26 public interface Deque extends Queue { 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the front of this deque if it is 22.32/7.26 * possible to do so immediately without violating capacity restrictions. 22.32/7.26 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.26 * use method {@link #offerFirst}. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @throws IllegalStateException if the element cannot be added at this 22.32/7.26 * time due to capacity restrictions 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 void addFirst(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the end of this deque if it is 22.32/7.26 * possible to do so immediately without violating capacity restrictions. 22.32/7.26 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.26 * use method {@link #offerLast}. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #add}. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @throws IllegalStateException if the element cannot be added at this 22.32/7.26 * time due to capacity restrictions 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 void addLast(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the front of this deque unless it would 22.32/7.26 * violate capacity restrictions. When using a capacity-restricted deque, 22.32/7.26 * this method is generally preferable to the {@link #addFirst} method, 22.32/7.26 * which can fail to insert an element only by throwing an exception. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @return true if the element was added to this deque, else 22.32/7.26 * false 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 boolean offerFirst(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the end of this deque unless it would 22.32/7.26 * violate capacity restrictions. When using a capacity-restricted deque, 22.32/7.26 * this method is generally preferable to the {@link #addLast} method, 22.32/7.26 * which can fail to insert an element only by throwing an exception. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @return true if the element was added to this deque, else 22.32/7.26 * false 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 boolean offerLast(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the first element of this deque. This method 22.32/7.26 * differs from {@link #pollFirst pollFirst} only in that it throws an 22.32/7.26 * exception if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the head of this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E removeFirst(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the last element of this deque. This method 22.32/7.26 * differs from {@link #pollLast pollLast} only in that it throws an 22.32/7.26 * exception if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the tail of this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E removeLast(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the first element of this deque, 22.32/7.26 * or returns null if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the head of this deque, or null if this deque is empty 22.32/7.26 */ 22.32/7.26 E pollFirst(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the last element of this deque, 22.32/7.26 * or returns null if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the tail of this deque, or null if this deque is empty 22.32/7.26 */ 22.32/7.26 E pollLast(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the first element of this deque. 22.32/7.26 * 22.32/7.26 * This method differs from {@link #peekFirst peekFirst} only in that it 22.32/7.26 * throws an exception if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the head of this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E getFirst(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the last element of this deque. 22.32/7.26 * This method differs from {@link #peekLast peekLast} only in that it 22.32/7.26 * throws an exception if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the tail of this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E getLast(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the first element of this deque, 22.32/7.26 * or returns null if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the head of this deque, or null if this deque is empty 22.32/7.26 */ 22.32/7.26 E peekFirst(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the last element of this deque, 22.32/7.26 * or returns null if this deque is empty. 22.32/7.26 * 22.32/7.26 * @return the tail of this deque, or null if this deque is empty 22.32/7.26 */ 22.32/7.26 E peekLast(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the first occurrence of the specified element from this deque. 22.32/7.26 * If the deque does not contain the element, it is unchanged. 22.32/7.26 * More formally, removes the first element e such that 22.32/7.26 * (o==null ? e==null : o.equals(e)) 22.32/7.26 * (if such an element exists). 22.32/7.26 * Returns true if this deque contained the specified element 22.32/7.26 * (or equivalently, if this deque changed as a result of the call). 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this deque, if present 22.32/7.26 * @return true if an element was removed as a result of this call 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * is incompatible with this deque (optional) 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements (optional) 22.32/7.26 */ 22.32/7.26 boolean removeFirstOccurrence(Object o); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the last occurrence of the specified element from this deque. 22.32/7.26 * If the deque does not contain the element, it is unchanged. 22.32/7.26 * More formally, removes the last element e such that 22.32/7.26 * (o==null ? e==null : o.equals(e)) 22.32/7.26 * (if such an element exists). 22.32/7.26 * Returns true if this deque contained the specified element 22.32/7.26 * (or equivalently, if this deque changed as a result of the call). 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this deque, if present 22.32/7.26 * @return true if an element was removed as a result of this call 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * is incompatible with this deque (optional) 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements (optional) 22.32/7.26 */ 22.32/7.26 boolean removeLastOccurrence(Object o); 22.32/7.26 22.32/7.26 // *** Queue methods *** 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element into the queue represented by this deque 22.32/7.26 * (in other words, at the tail of this deque) if it is possible to do so 22.32/7.26 * immediately without violating capacity restrictions, returning 22.32/7.26 * true upon success and throwing an 22.32/7.26 * IllegalStateException if no space is currently available. 22.32/7.26 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.26 * use {@link #offer(Object) offer}. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #addLast}. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @return true (as specified by {@link Collection#add}) 22.32/7.26 * @throws IllegalStateException if the element cannot be added at this 22.32/7.26 * time due to capacity restrictions 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 boolean add(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element into the queue represented by this deque 22.32/7.26 * (in other words, at the tail of this deque) if it is possible to do so 22.32/7.26 * immediately without violating capacity restrictions, returning 22.32/7.26 * true upon success and false if no space is currently 22.32/7.26 * available. When using a capacity-restricted deque, this method is 22.32/7.26 * generally preferable to the {@link #add} method, which can fail to 22.32/7.26 * insert an element only by throwing an exception. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #offerLast}. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @return true if the element was added to this deque, else 22.32/7.26 * false 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 boolean offer(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the head of the queue represented by this deque 22.32/7.26 * (in other words, the first element of this deque). 22.32/7.26 * This method differs from {@link #poll poll} only in that it throws an 22.32/7.26 * exception if this deque is empty. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.26 * 22.32/7.26 * @return the head of the queue represented by this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E remove(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the head of the queue represented by this deque 22.32/7.26 * (in other words, the first element of this deque), or returns 22.32/7.26 * null if this deque is empty. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #pollFirst()}. 22.32/7.26 * 22.32/7.26 * @return the first element of this deque, or null if 22.32/7.26 * this deque is empty 22.32/7.26 */ 22.32/7.26 E poll(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the head of the queue represented by 22.32/7.26 * this deque (in other words, the first element of this deque). 22.32/7.26 * This method differs from {@link #peek peek} only in that it throws an 22.32/7.26 * exception if this deque is empty. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #getFirst()}. 22.32/7.26 * 22.32/7.26 * @return the head of the queue represented by this deque 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E element(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the head of the queue represented by 22.32/7.26 * this deque (in other words, the first element of this deque), or 22.32/7.26 * returns null if this deque is empty. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #peekFirst()}. 22.32/7.26 * 22.32/7.26 * @return the head of the queue represented by this deque, or 22.32/7.26 * null if this deque is empty 22.32/7.26 */ 22.32/7.26 E peek(); 22.32/7.26 22.32/7.26 22.32/7.26 // *** Stack methods *** 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Pushes an element onto the stack represented by this deque (in other 22.32/7.26 * words, at the head of this deque) if it is possible to do so 22.32/7.26 * immediately without violating capacity restrictions, returning 22.32/7.26 * true upon success and throwing an 22.32/7.26 * IllegalStateException if no space is currently available. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #addFirst}. 22.32/7.26 * 22.32/7.26 * @param e the element to push 22.32/7.26 * @throws IllegalStateException if the element cannot be added at this 22.32/7.26 * time due to capacity restrictions 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this deque 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements 22.32/7.26 * @throws IllegalArgumentException if some property of the specified 22.32/7.26 * element prevents it from being added to this deque 22.32/7.26 */ 22.32/7.26 void push(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Pops an element from the stack represented by this deque. In other 22.32/7.26 * words, removes and returns the first element of this deque. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.26 * 22.32/7.26 * @return the element at the front of this deque (which is the top 22.32/7.26 * of the stack represented by this deque) 22.32/7.26 * @throws NoSuchElementException if this deque is empty 22.32/7.26 */ 22.32/7.26 E pop(); 22.32/7.26 22.32/7.26 22.32/7.26 // *** Collection methods *** 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the first occurrence of the specified element from this deque. 22.32/7.26 * If the deque does not contain the element, it is unchanged. 22.32/7.26 * More formally, removes the first element e such that 22.32/7.26 * (o==null ? e==null : o.equals(e)) 22.32/7.26 * (if such an element exists). 22.32/7.26 * Returns true if this deque contained the specified element 22.32/7.26 * (or equivalently, if this deque changed as a result of the call). 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #removeFirstOccurrence}. 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this deque, if present 22.32/7.26 * @return true if an element was removed as a result of this call 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * is incompatible with this deque (optional) 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements (optional) 22.32/7.26 */ 22.32/7.26 boolean remove(Object o); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns true if this deque contains the specified element. 22.32/7.26 * More formally, returns true if and only if this deque contains 22.32/7.26 * at least one element e such that 22.32/7.26 * (o==null ? e==null : o.equals(e)). 22.32/7.26 * 22.32/7.26 * @param o element whose presence in this deque is to be tested 22.32/7.26 * @return true if this deque contains the specified element 22.32/7.26 * @throws ClassCastException if the type of the specified element 22.32/7.26 * is incompatible with this deque (optional) 22.32/7.26 * @throws NullPointerException if the specified element is null and this 22.32/7.26 * deque does not permit null elements (optional) 22.32/7.26 */ 22.32/7.26 boolean contains(Object o); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the number of elements in this deque. 22.32/7.26 * 22.32/7.26 * @return the number of elements in this deque 22.32/7.26 */ 22.32/7.26 public int size(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns an iterator over the elements in this deque in proper sequence. 22.32/7.26 * The elements will be returned in order from first (head) to last (tail). 22.32/7.26 * 22.32/7.26 * @return an iterator over the elements in this deque in proper sequence 22.32/7.26 */ 22.32/7.26 Iterator iterator(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns an iterator over the elements in this deque in reverse 22.32/7.26 * sequential order. The elements will be returned in order from 22.32/7.26 * last (tail) to first (head). 22.32/7.26 * 22.32/7.26 * @return an iterator over the elements in this deque in reverse 22.32/7.26 * sequence 22.32/7.26 */ 22.32/7.26 Iterator descendingIterator(); 22.32/7.26 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Thrown to indicate that a method has been passed an illegal or 22.32/7.26 * inappropriate argument. 22.32/7.26 * 22.32/7.26 * @author unascribed 22.32/7.26 * @see java.lang.Thread#setPriority(int) 22.32/7.26 * @since JDK1.0 22.32/7.26 */ 22.32/7.26 public 22.32/7.26 class IllegalArgumentException extends RuntimeException { 22.32/7.26 /** 22.32/7.26 * Constructs an IllegalArgumentException with no 22.32/7.26 * detail message. 22.32/7.26 */ 22.32/7.26 public IllegalArgumentException() { 22.32/7.26 super(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs an IllegalArgumentException with the 22.32/7.26 * specified detail message. 22.32/7.26 * 22.32/7.26 * @param s the detail message. 22.32/7.26 */ 22.32/7.26 public IllegalArgumentException(String s) { 22.32/7.26 super(s); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a new exception with the specified detail message and 22.32/7.26 * cause. 22.32/7.26 * 22.32/7.26 *

Note that the detail message associated with cause is 22.32/7.26 * not automatically incorporated in this exception's detail 22.32/7.26 * message. 22.32/7.26 * 22.32/7.26 * @param message the detail message (which is saved for later retrieval 22.32/7.26 * by the {@link Throwable#getMessage()} method). 22.32/7.26 * @param cause the cause (which is saved for later retrieval by the 22.32/7.26 * {@link Throwable#getCause()} method). (A null value 22.32/7.26 * is permitted, and indicates that the cause is nonexistent or 22.32/7.26 * unknown.) 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public IllegalArgumentException(String message, Throwable cause) { 22.32/7.26 super(message, cause); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a new exception with the specified cause and a detail 22.32/7.26 * message of (cause==null ? null : cause.toString()) (which 22.32/7.26 * typically contains the class and detail message of cause). 22.32/7.26 * This constructor is useful for exceptions that are little more than 22.32/7.26 * wrappers for other throwables (for example, {@link 22.32/7.26 * java.security.PrivilegedActionException}). 22.32/7.26 * 22.32/7.26 * @param cause the cause (which is saved for later retrieval by the 22.32/7.26 * {@link Throwable#getCause()} method). (A null value is 22.32/7.26 * permitted, and indicates that the cause is nonexistent or 22.32/7.26 * unknown.) 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public IllegalArgumentException(Throwable cause) { 22.32/7.26 super(cause); 22.32/7.26 } 22.32/7.26 22.32/7.26 private static final long serialVersionUID = -5365630128856068164L; 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Signals that a method has been invoked at an illegal or 22.32/7.26 * inappropriate time. In other words, the Java environment or 22.32/7.26 * Java application is not in an appropriate state for the requested 22.32/7.26 * operation. 22.32/7.26 * 22.32/7.26 * @author Jonni Kanerva 22.32/7.26 * @since JDK1.1 22.32/7.26 */ 22.32/7.26 public 22.32/7.26 class IllegalStateException extends RuntimeException { 22.32/7.26 /** 22.32/7.26 * Constructs an IllegalStateException with no detail message. 22.32/7.26 * A detail message is a String that describes this particular exception. 22.32/7.26 */ 22.32/7.26 public IllegalStateException() { 22.32/7.26 super(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs an IllegalStateException with the specified detail 22.32/7.26 * message. A detail message is a String that describes this particular 22.32/7.26 * exception. 22.32/7.26 * 22.32/7.26 * @param s the String that contains a detailed message 22.32/7.26 */ 22.32/7.26 public IllegalStateException(String s) { 22.32/7.26 super(s); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a new exception with the specified detail message and 22.32/7.26 * cause. 22.32/7.26 * 22.32/7.26 *

Note that the detail message associated with cause is 22.32/7.26 * not automatically incorporated in this exception's detail 22.32/7.26 * message. 22.32/7.26 * 22.32/7.26 * @param message the detail message (which is saved for later retrieval 22.32/7.26 * by the {@link Throwable#getMessage()} method). 22.32/7.26 * @param cause the cause (which is saved for later retrieval by the 22.32/7.26 * {@link Throwable#getCause()} method). (A null value 22.32/7.26 * is permitted, and indicates that the cause is nonexistent or 22.32/7.26 * unknown.) 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public IllegalStateException(String message, Throwable cause) { 22.32/7.26 super(message, cause); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a new exception with the specified cause and a detail 22.32/7.26 * message of (cause==null ? null : cause.toString()) (which 22.32/7.26 * typically contains the class and detail message of cause). 22.32/7.26 * This constructor is useful for exceptions that are little more than 22.32/7.26 * wrappers for other throwables (for example, {@link 22.32/7.26 * java.security.PrivilegedActionException}). 22.32/7.26 * 22.32/7.26 * @param cause the cause (which is saved for later retrieval by the 22.32/7.26 * {@link Throwable#getCause()} method). (A null value is 22.32/7.26 * permitted, and indicates that the cause is nonexistent or 22.32/7.26 * unknown.) 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public IllegalStateException(Throwable cause) { 22.32/7.26 super(cause); 22.32/7.26 } 22.32/7.26 22.32/7.26 static final long serialVersionUID = -1848914673093119416L; 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * An iterator over a collection. {@code Iterator} takes the place of 22.32/7.26 * {@link Enumeration} in the Java Collections Framework. Iterators 22.32/7.26 * differ from enumerations in two ways: 22.32/7.26 * 22.32/7.26 *

22.32/7.26 * 22.32/7.26 *

This interface is a member of the 22.32/7.26 * 22.32/7.26 * Java Collections Framework. 22.32/7.26 * 22.32/7.26 * @author Josh Bloch 22.32/7.26 * @see Collection 22.32/7.26 * @see ListIterator 22.32/7.26 * @see Iterable 22.32/7.26 * @since 1.2 22.32/7.26 */ 22.32/7.26 public interface Iterator { 22.32/7.26 /** 22.32/7.26 * Returns {@code true} if the iteration has more elements. 22.32/7.26 * (In other words, returns {@code true} if {@link #next} would 22.32/7.26 * return an element rather than throwing an exception.) 22.32/7.26 * 22.32/7.26 * @return {@code true} if the iteration has more elements 22.32/7.26 */ 22.32/7.26 boolean hasNext(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the next element in the iteration. 22.32/7.26 * 22.32/7.26 * @return the next element in the iteration 22.32/7.26 * @throws NoSuchElementException if the iteration has no more elements 22.32/7.26 */ 22.32/7.26 E next(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes from the underlying collection the last element returned 22.32/7.26 * by this iterator (optional operation). This method can be called 22.32/7.26 * only once per call to {@link #next}. The behavior of an iterator 22.32/7.26 * is unspecified if the underlying collection is modified while the 22.32/7.26 * iteration is in progress in any way other than by calling this 22.32/7.26 * method. 22.32/7.26 * 22.32/7.26 * @throws UnsupportedOperationException if the {@code remove} 22.32/7.26 * operation is not supported by this iterator 22.32/7.26 * 22.32/7.26 * @throws IllegalStateException if the {@code next} method has not 22.32/7.26 * yet been called, or the {@code remove} method has already 22.32/7.26 * been called after the last call to the {@code next} 22.32/7.26 * method 22.32/7.26 */ 22.32/7.26 void remove(); 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 public class juLinkedListCreateListIteratorLoop { 22.32/7.26 public static void main(String[] args) { 22.32/7.26 Random.args = args; 22.32/7.26 22.32/7.26 LinkedList l = createList(Random.random()); 22.32/7.26 ListIterator it = l.listIterator(); 22.32/7.26 while (it.hasNext()) { 22.32/7.26 it.next(); 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 public static LinkedList createList(int n) { 22.32/7.26 LinkedList l = new LinkedList(); 22.32/7.26 while (n > 0) { 22.32/7.26 l.addLast(new Content(Random.random())); 22.32/7.26 n--; 22.32/7.26 } 22.32/7.26 return l; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 final class Content { 22.32/7.26 int val; 22.32/7.26 22.32/7.26 public Content(int v) { 22.32/7.26 this.val = v; 22.32/7.26 } 22.32/7.26 22.32/7.26 public int hashCode() { 22.32/7.26 return val^31; 22.32/7.26 } 22.32/7.26 22.32/7.26 public boolean equals(Object o) { 22.32/7.26 if (o instanceof Content) { 22.32/7.26 return this.val == ((Content) o).val; 22.32/7.26 } 22.32/7.26 return false; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Linked list implementation of the List interface. Implements all 22.32/7.26 * optional list operations, and permits all elements (including 22.32/7.26 * null). In addition to implementing the List interface, 22.32/7.26 * the LinkedList class provides uniformly named methods to 22.32/7.26 * get, remove and insert an element at the 22.32/7.26 * beginning and end of the list. These operations allow linked lists to be 22.32/7.26 * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque 22.32/7.26 * double-ended queue}.

22.32/7.26 * 22.32/7.26 * The class implements the Deque interface, providing 22.32/7.26 * first-in-first-out queue operations for add, 22.32/7.26 * poll, along with other stack and deque operations.

22.32/7.26 * 22.32/7.26 * All of the operations perform as could be expected for a doubly-linked 22.32/7.26 * list. Operations that index into the list will traverse the list from 22.32/7.26 * the beginning or the end, whichever is closer to the specified index.

22.32/7.26 * 22.32/7.26 *

Note that this implementation is not synchronized. 22.32/7.26 * If multiple threads access a linked list concurrently, and at least 22.32/7.26 * one of the threads modifies the list structurally, it must be 22.32/7.26 * synchronized externally. (A structural modification is any operation 22.32/7.26 * that adds or deletes one or more elements; merely setting the value of 22.32/7.26 * an element is not a structural modification.) This is typically 22.32/7.26 * accomplished by synchronizing on some object that naturally 22.32/7.26 * encapsulates the list. 22.32/7.26 * 22.32/7.26 * If no such object exists, the list should be "wrapped" using the 22.32/7.26 * {@link Collections#synchronizedList Collections.synchronizedList} 22.32/7.26 * method. This is best done at creation time, to prevent accidental 22.32/7.26 * unsynchronized access to the list:

22.32/7.26	 *   List list = Collections.synchronizedList(new LinkedList(...));
22.32/7.26 * 22.32/7.26 *

The iterators returned by this class's iterator and 22.32/7.26 * listIterator methods are fail-fast: if the list is 22.32/7.26 * structurally modified at any time after the iterator is created, in 22.32/7.26 * any way except through the Iterator's own remove or 22.32/7.26 * add methods, the iterator will throw a {@link 22.32/7.26 * ConcurrentModificationException}. Thus, in the face of concurrent 22.32/7.26 * modification, the iterator fails quickly and cleanly, rather than 22.32/7.26 * risking arbitrary, non-deterministic behavior at an undetermined 22.32/7.26 * time in the future. 22.32/7.26 * 22.32/7.26 *

Note that the fail-fast behavior of an iterator cannot be guaranteed 22.32/7.26 * as it is, generally speaking, impossible to make any hard guarantees in the 22.32/7.26 * presence of unsynchronized concurrent modification. Fail-fast iterators 22.32/7.26 * throw ConcurrentModificationException on a best-effort basis. 22.32/7.26 * Therefore, it would be wrong to write a program that depended on this 22.32/7.26 * exception for its correctness: the fail-fast behavior of iterators 22.32/7.26 * should be used only to detect bugs. 22.32/7.26 * 22.32/7.26 *

This class is a member of the 22.32/7.26 * 22.32/7.26 * Java Collections Framework. 22.32/7.26 * 22.32/7.26 * @author Josh Bloch 22.32/7.26 * @see List 22.32/7.26 * @see ArrayList 22.32/7.26 * @see Vector 22.32/7.26 * @since 1.2 22.32/7.26 * @param the type of elements held in this collection 22.32/7.26 */ 22.32/7.26 22.32/7.26 public class LinkedList 22.32/7.26 extends AbstractSequentialList 22.32/7.26 implements List, Deque 22.32/7.26 { 22.32/7.26 private transient Entry header = new Entry(null, null, null); 22.32/7.26 private transient int size = 0; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs an empty list. 22.32/7.26 */ 22.32/7.26 public LinkedList() { 22.32/7.26 header.next = header.previous = header; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Constructs a list containing the elements of the specified 22.32/7.26 * collection, in the order they are returned by the collection's 22.32/7.26 * iterator. 22.32/7.26 * 22.32/7.26 * @param c the collection whose elements are to be placed into this list 22.32/7.26 * @throws NullPointerException if the specified collection is null 22.32/7.26 */ 22.32/7.26 public LinkedList(Collection c) { 22.32/7.26 this(); 22.32/7.26 addAll(c); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the first element in this list. 22.32/7.26 * 22.32/7.26 * @return the first element in this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 */ 22.32/7.26 public E getFirst() { 22.32/7.26 if (size==0) 22.32/7.26 throw new NoSuchElementException(); 22.32/7.26 22.32/7.26 return header.next.element; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the last element in this list. 22.32/7.26 * 22.32/7.26 * @return the last element in this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 */ 22.32/7.26 public E getLast() { 22.32/7.26 if (size==0) 22.32/7.26 throw new NoSuchElementException(); 22.32/7.26 22.32/7.26 return header.previous.element; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes and returns the first element from this list. 22.32/7.26 * 22.32/7.26 * @return the first element from this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 */ 22.32/7.26 public E removeFirst() { 22.32/7.26 return remove(header.next); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes and returns the last element from this list. 22.32/7.26 * 22.32/7.26 * @return the last element from this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 */ 22.32/7.26 public E removeLast() { 22.32/7.26 return remove(header.previous); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the beginning of this list. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 */ 22.32/7.26 public void addFirst(E e) { 22.32/7.26 addBefore(e, header.next); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Appends the specified element to the end of this list. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #add}. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 */ 22.32/7.26 public void addLast(E e) { 22.32/7.26 addBefore(e, header); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns true if this list contains the specified element. 22.32/7.26 * More formally, returns true if and only if this list contains 22.32/7.26 * at least one element e such that 22.32/7.26 * (o==null ? e==null : o.equals(e)). 22.32/7.26 * 22.32/7.26 * @param o element whose presence in this list is to be tested 22.32/7.26 * @return true if this list contains the specified element 22.32/7.26 */ 22.32/7.26 public boolean contains(Object o) { 22.32/7.26 return indexOf(o) != -1; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the number of elements in this list. 22.32/7.26 * 22.32/7.26 * @return the number of elements in this list 22.32/7.26 */ 22.32/7.26 public int size() { 22.32/7.26 return size; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Appends the specified element to the end of this list. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #addLast}. 22.32/7.26 * 22.32/7.26 * @param e element to be appended to this list 22.32/7.26 * @return true (as specified by {@link Collection#add}) 22.32/7.26 */ 22.32/7.26 public boolean add(E e) { 22.32/7.26 addBefore(e, header); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the first occurrence of the specified element from this list, 22.32/7.26 * if it is present. If this list does not contain the element, it is 22.32/7.26 * unchanged. More formally, removes the element with the lowest index 22.32/7.26 * i such that 22.32/7.26 * (o==null ? get(i)==null : o.equals(get(i))) 22.32/7.26 * (if such an element exists). Returns true if this list 22.32/7.26 * contained the specified element (or equivalently, if this list 22.32/7.26 * changed as a result of the call). 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this list, if present 22.32/7.26 * @return true if this list contained the specified element 22.32/7.26 */ 22.32/7.26 public boolean remove(Object o) { 22.32/7.26 if (o==null) { 22.32/7.26 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.26 if (e.element==null) { 22.32/7.26 remove(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 } else { 22.32/7.26 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.26 if (o.equals(e.element)) { 22.32/7.26 remove(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 } 22.32/7.26 return false; 22.32/7.26 } 22.32/7.26 /** 22.32/7.26 * Removes all of the elements from this list. 22.32/7.26 */ 22.32/7.26 public void clear() { 22.32/7.26 Entry e = header.next; 22.32/7.26 while (e != header) { 22.32/7.26 Entry next = e.next; 22.32/7.26 e.next = e.previous = null; 22.32/7.26 e.element = null; 22.32/7.26 e = next; 22.32/7.26 } 22.32/7.26 header.next = header.previous = header; 22.32/7.26 size = 0; 22.32/7.26 modCount++; 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 // Positional Access Operations 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the element at the specified position in this list. 22.32/7.26 * 22.32/7.26 * @param index index of the element to return 22.32/7.26 * @return the element at the specified position in this list 22.32/7.26 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.26 */ 22.32/7.26 public E get(int index) { 22.32/7.26 return entry(index).element; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Replaces the element at the specified position in this list with the 22.32/7.26 * specified element. 22.32/7.26 * 22.32/7.26 * @param index index of the element to replace 22.32/7.26 * @param element element to be stored at the specified position 22.32/7.26 * @return the element previously at the specified position 22.32/7.26 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.26 */ 22.32/7.26 public E set(int index, E element) { 22.32/7.26 Entry e = entry(index); 22.32/7.26 E oldVal = e.element; 22.32/7.26 e.element = element; 22.32/7.26 return oldVal; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the specified position in this list. 22.32/7.26 * Shifts the element currently at that position (if any) and any 22.32/7.26 * subsequent elements to the right (adds one to their indices). 22.32/7.26 * 22.32/7.26 * @param index index at which the specified element is to be inserted 22.32/7.26 * @param element element to be inserted 22.32/7.26 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.26 */ 22.32/7.26 public void add(int index, E element) { 22.32/7.26 addBefore(element, (index==size ? header : entry(index))); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the element at the specified position in this list. Shifts any 22.32/7.26 * subsequent elements to the left (subtracts one from their indices). 22.32/7.26 * Returns the element that was removed from the list. 22.32/7.26 * 22.32/7.26 * @param index the index of the element to be removed 22.32/7.26 * @return the element previously at the specified position 22.32/7.26 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.26 */ 22.32/7.26 public E remove(int index) { 22.32/7.26 return remove(entry(index)); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the indexed entry. 22.32/7.26 */ 22.32/7.26 private Entry entry(int index) { 22.32/7.26 if (index < 0 || index >= size) 22.32/7.26 throw new IndexOutOfBoundsException(); 22.32/7.26 Entry e = header; 22.32/7.26 if (index < (size >> 1)) { 22.32/7.26 for (int i = 0; i <= index; i++) 22.32/7.26 e = e.next; 22.32/7.26 } else { 22.32/7.26 for (int i = size; i > index; i--) 22.32/7.26 e = e.previous; 22.32/7.26 } 22.32/7.26 return e; 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 // Search Operations 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the index of the first occurrence of the specified element 22.32/7.26 * in this list, or -1 if this list does not contain the element. 22.32/7.26 * More formally, returns the lowest index i such that 22.32/7.26 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.26 * or -1 if there is no such index. 22.32/7.26 * 22.32/7.26 * @param o element to search for 22.32/7.26 * @return the index of the first occurrence of the specified element in 22.32/7.26 * this list, or -1 if this list does not contain the element 22.32/7.26 */ 22.32/7.26 public int indexOf(Object o) { 22.32/7.26 int index = 0; 22.32/7.26 if (o==null) { 22.32/7.26 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.26 if (e.element==null) 22.32/7.26 return index; 22.32/7.26 index++; 22.32/7.26 } 22.32/7.26 } else { 22.32/7.26 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.26 if (o.equals(e.element)) 22.32/7.26 return index; 22.32/7.26 index++; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 return -1; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the index of the last occurrence of the specified element 22.32/7.26 * in this list, or -1 if this list does not contain the element. 22.32/7.26 * More formally, returns the highest index i such that 22.32/7.26 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.26 * or -1 if there is no such index. 22.32/7.26 * 22.32/7.26 * @param o element to search for 22.32/7.26 * @return the index of the last occurrence of the specified element in 22.32/7.26 * this list, or -1 if this list does not contain the element 22.32/7.26 */ 22.32/7.26 public int lastIndexOf(Object o) { 22.32/7.26 int index = size; 22.32/7.26 if (o==null) { 22.32/7.26 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.26 index--; 22.32/7.26 if (e.element==null) 22.32/7.26 return index; 22.32/7.26 } 22.32/7.26 } else { 22.32/7.26 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.26 index--; 22.32/7.26 if (o.equals(e.element)) 22.32/7.26 return index; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 return -1; 22.32/7.26 } 22.32/7.26 22.32/7.26 // Queue operations. 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the head (first element) of this list. 22.32/7.26 * @return the head of this list, or null if this list is empty 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public E peek() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return getFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the head (first element) of this list. 22.32/7.26 * @return the head of this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public E element() { 22.32/7.26 return getFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the head (first element) of this list 22.32/7.26 * @return the head of this list, or null if this list is empty 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public E poll() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return removeFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the head (first element) of this list. 22.32/7.26 * 22.32/7.26 * @return the head of this list 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public E remove() { 22.32/7.26 return removeFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Adds the specified element as the tail (last element) of this list. 22.32/7.26 * 22.32/7.26 * @param e the element to add 22.32/7.26 * @return true (as specified by {@link Queue#offer}) 22.32/7.26 * @since 1.5 22.32/7.26 */ 22.32/7.26 public boolean offer(E e) { 22.32/7.26 return add(e); 22.32/7.26 } 22.32/7.26 22.32/7.26 // Deque operations 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the front of this list. 22.32/7.26 * 22.32/7.26 * @param e the element to insert 22.32/7.26 * @return true (as specified by {@link Deque#offerFirst}) 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public boolean offerFirst(E e) { 22.32/7.26 addFirst(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element at the end of this list. 22.32/7.26 * 22.32/7.26 * @param e the element to insert 22.32/7.26 * @return true (as specified by {@link Deque#offerLast}) 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public boolean offerLast(E e) { 22.32/7.26 addLast(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the first element of this list, 22.32/7.26 * or returns null if this list is empty. 22.32/7.26 * 22.32/7.26 * @return the first element of this list, or null 22.32/7.26 * if this list is empty 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public E peekFirst() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return getFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves, but does not remove, the last element of this list, 22.32/7.26 * or returns null if this list is empty. 22.32/7.26 * 22.32/7.26 * @return the last element of this list, or null 22.32/7.26 * if this list is empty 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public E peekLast() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return getLast(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the first element of this list, 22.32/7.26 * or returns null if this list is empty. 22.32/7.26 * 22.32/7.26 * @return the first element of this list, or null if 22.32/7.26 * this list is empty 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public E pollFirst() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return removeFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Retrieves and removes the last element of this list, 22.32/7.26 * or returns null if this list is empty. 22.32/7.26 * 22.32/7.26 * @return the last element of this list, or null if 22.32/7.26 * this list is empty 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public E pollLast() { 22.32/7.26 if (size==0) 22.32/7.26 return null; 22.32/7.26 return removeLast(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Pushes an element onto the stack represented by this list. In other 22.32/7.26 * words, inserts the element at the front of this list. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #addFirst}. 22.32/7.26 * 22.32/7.26 * @param e the element to push 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public void push(E e) { 22.32/7.26 addFirst(e); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Pops an element from the stack represented by this list. In other 22.32/7.26 * words, removes and returns the first element of this list. 22.32/7.26 * 22.32/7.26 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.26 * 22.32/7.26 * @return the element at the front of this list (which is the top 22.32/7.26 * of the stack represented by this list) 22.32/7.26 * @throws NoSuchElementException if this list is empty 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public E pop() { 22.32/7.26 return removeFirst(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the first occurrence of the specified element in this 22.32/7.26 * list (when traversing the list from head to tail). If the list 22.32/7.26 * does not contain the element, it is unchanged. 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this list, if present 22.32/7.26 * @return true if the list contained the specified element 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public boolean removeFirstOccurrence(Object o) { 22.32/7.26 return remove(o); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes the last occurrence of the specified element in this 22.32/7.26 * list (when traversing the list from head to tail). If the list 22.32/7.26 * does not contain the element, it is unchanged. 22.32/7.26 * 22.32/7.26 * @param o element to be removed from this list, if present 22.32/7.26 * @return true if the list contained the specified element 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public boolean removeLastOccurrence(Object o) { 22.32/7.26 if (o==null) { 22.32/7.26 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.26 if (e.element==null) { 22.32/7.26 remove(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 } else { 22.32/7.26 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.26 if (o.equals(e.element)) { 22.32/7.26 remove(e); 22.32/7.26 return true; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 } 22.32/7.26 return false; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns a list-iterator of the elements in this list (in proper 22.32/7.26 * sequence), starting at the specified position in the list. 22.32/7.26 * Obeys the general contract of List.listIterator(int).

22.32/7.26 * 22.32/7.26 * The list-iterator is fail-fast: if the list is structurally 22.32/7.26 * modified at any time after the Iterator is created, in any way except 22.32/7.26 * through the list-iterator's own remove or add 22.32/7.26 * methods, the list-iterator will throw a 22.32/7.26 * ConcurrentModificationException. Thus, in the face of 22.32/7.26 * concurrent modification, the iterator fails quickly and cleanly, rather 22.32/7.26 * than risking arbitrary, non-deterministic behavior at an undetermined 22.32/7.26 * time in the future. 22.32/7.26 * 22.32/7.26 * @param index index of the first element to be returned from the 22.32/7.26 * list-iterator (by a call to next) 22.32/7.26 * @return a ListIterator of the elements in this list (in proper 22.32/7.26 * sequence), starting at the specified position in the list 22.32/7.26 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.26 * @see List#listIterator(int) 22.32/7.26 */ 22.32/7.26 public ListIterator listIterator(int index) { 22.32/7.26 return new ListItr(index); 22.32/7.26 } 22.32/7.26 22.32/7.26 private class ListItr implements ListIterator { 22.32/7.26 private Entry lastReturned = header; 22.32/7.26 private Entry next; 22.32/7.26 private int nextIndex; 22.32/7.26 private int expectedModCount = modCount; 22.32/7.26 22.32/7.26 ListItr(int index) { 22.32/7.26 if (index < 0 || index > size) 22.32/7.26 throw new IndexOutOfBoundsException(); 22.32/7.26 if (index < (size >> 1)) { 22.32/7.26 next = header.next; 22.32/7.26 for (nextIndex=0; nextIndexindex; nextIndex--) 22.32/7.26 next = next.previous; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 public boolean hasNext() { 22.32/7.26 return nextIndex != size; 22.32/7.26 } 22.32/7.26 22.32/7.26 public E next() { 22.32/7.26 checkForComodification(); 22.32/7.26 if (nextIndex == size) 22.32/7.26 throw new NoSuchElementException(); 22.32/7.26 22.32/7.26 lastReturned = next; 22.32/7.26 next = next.next; 22.32/7.26 nextIndex++; 22.32/7.26 return lastReturned.element; 22.32/7.26 } 22.32/7.26 22.32/7.26 public boolean hasPrevious() { 22.32/7.26 return nextIndex != 0; 22.32/7.26 } 22.32/7.26 22.32/7.26 public E previous() { 22.32/7.26 if (nextIndex == 0) 22.32/7.26 throw new NoSuchElementException(); 22.32/7.26 22.32/7.26 lastReturned = next = next.previous; 22.32/7.26 nextIndex--; 22.32/7.26 checkForComodification(); 22.32/7.26 return lastReturned.element; 22.32/7.26 } 22.32/7.26 22.32/7.26 public int nextIndex() { 22.32/7.26 return nextIndex; 22.32/7.26 } 22.32/7.26 22.32/7.26 public int previousIndex() { 22.32/7.26 return nextIndex-1; 22.32/7.26 } 22.32/7.26 22.32/7.26 public void remove() { 22.32/7.26 checkForComodification(); 22.32/7.26 Entry lastNext = lastReturned.next; 22.32/7.26 try { 22.32/7.26 LinkedList.this.remove(lastReturned); 22.32/7.26 } catch (NoSuchElementException e) { 22.32/7.26 throw new IllegalStateException(); 22.32/7.26 } 22.32/7.26 if (next==lastReturned) 22.32/7.26 next = lastNext; 22.32/7.26 else 22.32/7.26 nextIndex--; 22.32/7.26 lastReturned = header; 22.32/7.26 expectedModCount++; 22.32/7.26 } 22.32/7.26 22.32/7.26 public void set(E e) { 22.32/7.26 if (lastReturned == header) 22.32/7.26 throw new IllegalStateException(); 22.32/7.26 checkForComodification(); 22.32/7.26 lastReturned.element = e; 22.32/7.26 } 22.32/7.26 22.32/7.26 public void add(E e) { 22.32/7.26 checkForComodification(); 22.32/7.26 lastReturned = header; 22.32/7.26 addBefore(e, next); 22.32/7.26 nextIndex++; 22.32/7.26 expectedModCount++; 22.32/7.26 } 22.32/7.26 22.32/7.26 final void checkForComodification() { 22.32/7.26 if (modCount != expectedModCount) 22.32/7.26 throw new ConcurrentModificationException(); 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 private static class Entry { 22.32/7.26 E element; 22.32/7.26 Entry next; 22.32/7.26 Entry previous; 22.32/7.26 22.32/7.26 Entry(E element, Entry next, Entry previous) { 22.32/7.26 this.element = element; 22.32/7.26 this.next = next; 22.32/7.26 this.previous = previous; 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 private Entry addBefore(E e, Entry entry) { 22.32/7.26 Entry newEntry = new Entry(e, entry, entry.previous); 22.32/7.26 newEntry.previous.next = newEntry; 22.32/7.26 newEntry.next.previous = newEntry; 22.32/7.26 size++; 22.32/7.26 modCount++; 22.32/7.26 return newEntry; 22.32/7.26 } 22.32/7.26 22.32/7.26 private E remove(Entry e) { 22.32/7.26 if (e == header) 22.32/7.26 throw new NoSuchElementException(); 22.32/7.26 22.32/7.26 E result = e.element; 22.32/7.26 e.previous.next = e.next; 22.32/7.26 e.next.previous = e.previous; 22.32/7.26 e.next = e.previous = null; 22.32/7.26 e.element = null; 22.32/7.26 size--; 22.32/7.26 modCount++; 22.32/7.26 return result; 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * @since 1.6 22.32/7.26 */ 22.32/7.26 public Iterator descendingIterator() { 22.32/7.26 return new DescendingIterator(); 22.32/7.26 } 22.32/7.26 22.32/7.26 /** Adapter to provide descending iterators via ListItr.previous */ 22.32/7.26 private class DescendingIterator implements Iterator { 22.32/7.26 final ListItr itr = new ListItr(size()); 22.32/7.26 public boolean hasNext() { 22.32/7.26 return itr.hasPrevious(); 22.32/7.26 } 22.32/7.26 public E next() { 22.32/7.26 return itr.previous(); 22.32/7.26 } 22.32/7.26 public void remove() { 22.32/7.26 itr.remove(); 22.32/7.26 } 22.32/7.26 } 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns an array containing all of the elements in this list 22.32/7.26 * in proper sequence (from first to last element). 22.32/7.26 * 22.32/7.26 *

The returned array will be "safe" in that no references to it are 22.32/7.26 * maintained by this list. (In other words, this method must allocate 22.32/7.26 * a new array). The caller is thus free to modify the returned array. 22.32/7.26 * 22.32/7.26 *

This method acts as bridge between array-based and collection-based 22.32/7.26 * APIs. 22.32/7.26 * 22.32/7.26 * @return an array containing all of the elements in this list 22.32/7.26 * in proper sequence 22.32/7.26 */ 22.32/7.26 public Object[] toArray() { 22.32/7.26 Object[] result = new Object[size]; 22.32/7.26 int i = 0; 22.32/7.26 for (Entry e = header.next; e != header; e = e.next) 22.32/7.26 result[i++] = e.element; 22.32/7.26 return result; 22.32/7.26 } 22.32/7.26 22.32/7.26 private static final long serialVersionUID = 876323262645176354L; 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * An iterator for lists that allows the programmer 22.32/7.26 * to traverse the list in either direction, modify 22.32/7.26 * the list during iteration, and obtain the iterator's 22.32/7.26 * current position in the list. A {@code ListIterator} 22.32/7.26 * has no current element; its cursor position always 22.32/7.26 * lies between the element that would be returned by a call 22.32/7.26 * to {@code previous()} and the element that would be 22.32/7.26 * returned by a call to {@code next()}. 22.32/7.26 * An iterator for a list of length {@code n} has {@code n+1} possible 22.32/7.26 * cursor positions, as illustrated by the carets ({@code ^}) below: 22.32/7.26 *

22.32/7.26	 *                      Element(0)   Element(1)   Element(2)   ... Element(n-1)
22.32/7.26	 * cursor positions:  ^            ^            ^            ^                  ^
22.32/7.26	 * 
22.32/7.26 * Note that the {@link #remove} and {@link #set(Object)} methods are 22.32/7.26 * not defined in terms of the cursor position; they are defined to 22.32/7.26 * operate on the last element returned by a call to {@link #next} or 22.32/7.26 * {@link #previous()}. 22.32/7.26 * 22.32/7.26 *

This interface is a member of the 22.32/7.26 * 22.32/7.26 * Java Collections Framework. 22.32/7.26 * 22.32/7.26 * @author Josh Bloch 22.32/7.26 * @see Collection 22.32/7.26 * @see List 22.32/7.26 * @see Iterator 22.32/7.26 * @see Enumeration 22.32/7.26 * @see List#listIterator() 22.32/7.26 * @since 1.2 22.32/7.26 */ 22.32/7.26 public interface ListIterator extends Iterator { 22.32/7.26 // Query Operations 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns {@code true} if this list iterator has more elements when 22.32/7.26 * traversing the list in the forward direction. (In other words, 22.32/7.26 * returns {@code true} if {@link #next} would return an element rather 22.32/7.26 * than throwing an exception.) 22.32/7.26 * 22.32/7.26 * @return {@code true} if the list iterator has more elements when 22.32/7.26 * traversing the list in the forward direction 22.32/7.26 */ 22.32/7.26 boolean hasNext(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the next element in the list and advances the cursor position. 22.32/7.26 * This method may be called repeatedly to iterate through the list, 22.32/7.26 * or intermixed with calls to {@link #previous} to go back and forth. 22.32/7.26 * (Note that alternating calls to {@code next} and {@code previous} 22.32/7.26 * will return the same element repeatedly.) 22.32/7.26 * 22.32/7.26 * @return the next element in the list 22.32/7.26 * @throws NoSuchElementException if the iteration has no next element 22.32/7.26 */ 22.32/7.26 E next(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns {@code true} if this list iterator has more elements when 22.32/7.26 * traversing the list in the reverse direction. (In other words, 22.32/7.26 * returns {@code true} if {@link #previous} would return an element 22.32/7.26 * rather than throwing an exception.) 22.32/7.26 * 22.32/7.26 * @return {@code true} if the list iterator has more elements when 22.32/7.26 * traversing the list in the reverse direction 22.32/7.26 */ 22.32/7.26 boolean hasPrevious(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the previous element in the list and moves the cursor 22.32/7.26 * position backwards. This method may be called repeatedly to 22.32/7.26 * iterate through the list backwards, or intermixed with calls to 22.32/7.26 * {@link #next} to go back and forth. (Note that alternating calls 22.32/7.26 * to {@code next} and {@code previous} will return the same 22.32/7.26 * element repeatedly.) 22.32/7.26 * 22.32/7.26 * @return the previous element in the list 22.32/7.26 * @throws NoSuchElementException if the iteration has no previous 22.32/7.26 * element 22.32/7.26 */ 22.32/7.26 E previous(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the index of the element that would be returned by a 22.32/7.26 * subsequent call to {@link #next}. (Returns list size if the list 22.32/7.26 * iterator is at the end of the list.) 22.32/7.26 * 22.32/7.26 * @return the index of the element that would be returned by a 22.32/7.26 * subsequent call to {@code next}, or list size if the list 22.32/7.26 * iterator is at the end of the list 22.32/7.26 */ 22.32/7.26 int nextIndex(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Returns the index of the element that would be returned by a 22.32/7.26 * subsequent call to {@link #previous}. (Returns -1 if the list 22.32/7.26 * iterator is at the beginning of the list.) 22.32/7.26 * 22.32/7.26 * @return the index of the element that would be returned by a 22.32/7.26 * subsequent call to {@code previous}, or -1 if the list 22.32/7.26 * iterator is at the beginning of the list 22.32/7.26 */ 22.32/7.26 int previousIndex(); 22.32/7.26 22.32/7.26 22.32/7.26 // Modification Operations 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Removes from the list the last element that was returned by {@link 22.32/7.26 * #next} or {@link #previous} (optional operation). This call can 22.32/7.26 * only be made once per call to {@code next} or {@code previous}. 22.32/7.26 * It can be made only if {@link #add} has not been 22.32/7.26 * called after the last call to {@code next} or {@code previous}. 22.32/7.26 * 22.32/7.26 * @throws UnsupportedOperationException if the {@code remove} 22.32/7.26 * operation is not supported by this list iterator 22.32/7.26 * @throws IllegalStateException if neither {@code next} nor 22.32/7.26 * {@code previous} have been called, or {@code remove} or 22.32/7.26 * {@code add} have been called after the last call to 22.32/7.26 * {@code next} or {@code previous} 22.32/7.26 */ 22.32/7.26 void remove(); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Replaces the last element returned by {@link #next} or 22.32/7.26 * {@link #previous} with the specified element (optional operation). 22.32/7.26 * This call can be made only if neither {@link #remove} nor {@link 22.32/7.26 * #add} have been called after the last call to {@code next} or 22.32/7.26 * {@code previous}. 22.32/7.26 * 22.32/7.26 * @param e the element with which to replace the last element returned by 22.32/7.26 * {@code next} or {@code previous} 22.32/7.26 * @throws UnsupportedOperationException if the {@code set} operation 22.32/7.26 * is not supported by this list iterator 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this list 22.32/7.26 * @throws IllegalArgumentException if some aspect of the specified 22.32/7.26 * element prevents it from being added to this list 22.32/7.26 * @throws IllegalStateException if neither {@code next} nor 22.32/7.26 * {@code previous} have been called, or {@code remove} or 22.32/7.26 * {@code add} have been called after the last call to 22.32/7.26 * {@code next} or {@code previous} 22.32/7.26 */ 22.32/7.26 void set(E e); 22.32/7.26 22.32/7.26 /** 22.32/7.26 * Inserts the specified element into the list (optional operation). 22.32/7.26 * The element is inserted immediately before the next element that 22.32/7.26 * would be returned by {@link #next}, if any, and after the next 22.32/7.26 * element that would be returned by {@link #previous}, if any. (If the 22.32/7.26 * list contains no elements, the new element becomes the sole element 22.32/7.26 * on the list.) The new element is inserted before the implicit 22.32/7.26 * cursor: a subsequent call to {@code next} would be unaffected, and a 22.32/7.26 * subsequent call to {@code previous} would return the new element. 22.32/7.26 * (This call increases by one the value that would be returned by a 22.32/7.26 * call to {@code nextIndex} or {@code previousIndex}.) 22.32/7.26 * 22.32/7.26 * @param e the element to insert 22.32/7.26 * @throws UnsupportedOperationException if the {@code add} method is 22.32/7.26 * not supported by this list iterator 22.32/7.26 * @throws ClassCastException if the class of the specified element 22.32/7.26 * prevents it from being added to this list 22.32/7.26 * @throws IllegalArgumentException if some aspect of this element 22.32/7.26 * prevents it from being added to this list 22.32/7.26 */ 22.32/7.26 void add(E e); 22.32/7.26 } 22.32/7.26 22.32/7.26 22.32/7.26 /* 22.32/7.26 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.26 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.26 * 22.32/7.26 * This code is free software; you can redistribute it and/or modify it 22.32/7.26 * under the terms of the GNU General Public License version 2 only, as 22.32/7.26 * published by the Free Software Foundation. Sun designates this 22.32/7.26 * particular file as subject to the "Classpath" exception as provided 22.32/7.26 * by Sun in the LICENSE file that accompanied this code. 22.32/7.26 * 22.32/7.26 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.26 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.26 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.26 * accompanied this code). 22.32/7.26 * 22.32/7.26 * You should have received a copy of the GNU General Public License version 22.32/7.26 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.26 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.26 * 22.32/7.26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.26 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.26 * have any questions. 22.32/7.26 */ 22.32/7.26 22.32/7.26 package javaUtilEx; 22.32/7.26 22.32/7.26 /** 22.32/7.26 * An ordered collection (also known as a sequence). The user of this 22.32/7.26 * interface has precise control over where in the list each element is 22.32/7.26 * inserted. The user can access elements by their integer index (position in 22.32/7.26 * the list), and search for elements in the list.

22.32/7.26 * 22.32/7.26 * Unlike sets, lists typically allow duplicate elements. More formally, 22.32/7.26 * lists typically allow pairs of elements e1 and e2 22.32/7.26 * such that e1.equals(e2), and they typically allow multiple 22.32/7.26 * null elements if they allow null elements at all. It is not inconceivable 22.32/7.26 * that someone might wish to implement a list that prohibits duplicates, by 22.32/7.26 * throwing runtime exceptions when the user attempts to insert them, but we 22.32/7.26 * expect this usage to be rare.

22.32/7.26 * 22.32/7.26 * The List interface places additional stipulations, beyond those 22.32/7.26 * specified in the Collection interface, on the contracts of the 22.32/7.26 * iterator, add, remove, equals, and 22.32/7.26 * hashCode methods. Declarations for other inherited methods are 22.32/7.26 * also included here for convenience.

22.32/7.26 * 22.32/7.26 * The List interface provides four methods for positional (indexed) 22.32/7.26 * access to list elements. Lists (like Java arrays) are zero based. Note 22.32/7.26 * that these operations may execute in time proportional to the index value 22.32/7.26 * for some implementations (the LinkedList class, for 22.32/7.26 * example). Thus, iterating over the elements in a list is typically 22.32/7.26 * preferable to indexing through it if the caller does not know the 22.32/7.26 * implementation.

22.32/7.26 * 22.32/7.26 * The List interface provides a special iterator, called a 22.32/7.26 * ListIterator, that allows element insertion and replacement, and 22.32/7.26 * bidirectional access in addition to the normal operations that the 22.32/7.26 * Iterator interface provides. A method is provided to obtain a 22.32/7.26 * list iterator that starts at a specified position in the list.

22.32/7.26 * 22.32/7.26 * The List interface provides two methods to search for a specified 22.32/7.26 * object. From a performance standpoint, these methods should be used with 22.32/7.27 * caution. In many implementations they will perform costly linear 22.32/7.27 * searches.

22.32/7.27 * 22.32/7.27 * The List interface provides two methods to efficiently insert and 22.32/7.27 * remove multiple elements at an arbitrary point in the list.

22.32/7.27 * 22.32/7.27 * Note: While it is permissible for lists to contain themselves as elements, 22.32/7.27 * extreme caution is advised: the equals and hashCode 22.32/7.27 * methods are no longer well defined on such a list. 22.32/7.27 * 22.32/7.27 *

Some list implementations have restrictions on the elements that 22.32/7.27 * they may contain. For example, some implementations prohibit null elements, 22.32/7.27 * and some have restrictions on the types of their elements. Attempting to 22.32/7.27 * add an ineligible element throws an unchecked exception, typically 22.32/7.27 * NullPointerException or ClassCastException. Attempting 22.32/7.27 * to query the presence of an ineligible element may throw an exception, 22.32/7.27 * or it may simply return false; some implementations will exhibit the former 22.32/7.27 * behavior and some will exhibit the latter. More generally, attempting an 22.32/7.27 * operation on an ineligible element whose completion would not result in 22.32/7.27 * the insertion of an ineligible element into the list may throw an 22.32/7.27 * exception or it may succeed, at the option of the implementation. 22.32/7.27 * Such exceptions are marked as "optional" in the specification for this 22.32/7.27 * interface. 22.32/7.27 * 22.32/7.27 *

This interface is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @author Josh Bloch 22.32/7.27 * @author Neal Gafter 22.32/7.27 * @see Collection 22.32/7.27 * @see Set 22.32/7.27 * @see ArrayList 22.32/7.27 * @see LinkedList 22.32/7.27 * @see Vector 22.32/7.27 * @see Arrays#asList(Object[]) 22.32/7.27 * @see Collections#nCopies(int, Object) 22.32/7.27 * @see Collections#EMPTY_LIST 22.32/7.27 * @see AbstractList 22.32/7.27 * @see AbstractSequentialList 22.32/7.27 * @since 1.2 22.32/7.27 */ 22.32/7.27 22.32/7.27 public interface List extends Collection { 22.32/7.27 // Query Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the number of elements in this list. If this list contains 22.32/7.27 * more than Integer.MAX_VALUE elements, returns 22.32/7.27 * Integer.MAX_VALUE. 22.32/7.27 * 22.32/7.27 * @return the number of elements in this list 22.32/7.27 */ 22.32/7.27 int size(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns true if this list contains no elements. 22.32/7.27 * 22.32/7.27 * @return true if this list contains no elements 22.32/7.27 */ 22.32/7.27 boolean isEmpty(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns true if this list contains the specified element. 22.32/7.27 * More formally, returns true if and only if this list contains 22.32/7.27 * at least one element e such that 22.32/7.27 * (o==null ? e==null : o.equals(e)). 22.32/7.27 * 22.32/7.27 * @param o element whose presence in this list is to be tested 22.32/7.27 * @return true if this list contains the specified element 22.32/7.27 * @throws ClassCastException if the type of the specified element 22.32/7.27 * is incompatible with this list (optional) 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements (optional) 22.32/7.27 */ 22.32/7.27 boolean contains(Object o); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns an iterator over the elements in this list in proper sequence. 22.32/7.27 * 22.32/7.27 * @return an iterator over the elements in this list in proper sequence 22.32/7.27 */ 22.32/7.27 Iterator iterator(); 22.32/7.27 22.32/7.27 // Modification Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Appends the specified element to the end of this list (optional 22.32/7.27 * operation). 22.32/7.27 * 22.32/7.27 *

Lists that support this operation may place limitations on what 22.32/7.27 * elements may be added to this list. In particular, some 22.32/7.27 * lists will refuse to add null elements, and others will impose 22.32/7.27 * restrictions on the type of elements that may be added. List 22.32/7.27 * classes should clearly specify in their documentation any restrictions 22.32/7.27 * on what elements may be added. 22.32/7.27 * 22.32/7.27 * @param e element to be appended to this list 22.32/7.27 * @return true (as specified by {@link Collection#add}) 22.32/7.27 * @throws UnsupportedOperationException if the add operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of this element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 */ 22.32/7.27 boolean add(E e); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes the first occurrence of the specified element from this list, 22.32/7.27 * if it is present (optional operation). If this list does not contain 22.32/7.27 * the element, it is unchanged. More formally, removes the element with 22.32/7.27 * the lowest index i such that 22.32/7.27 * (o==null ? get(i)==null : o.equals(get(i))) 22.32/7.27 * (if such an element exists). Returns true if this list 22.32/7.27 * contained the specified element (or equivalently, if this list changed 22.32/7.27 * as a result of the call). 22.32/7.27 * 22.32/7.27 * @param o element to be removed from this list, if present 22.32/7.27 * @return true if this list contained the specified element 22.32/7.27 * @throws ClassCastException if the type of the specified element 22.32/7.27 * is incompatible with this list (optional) 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements (optional) 22.32/7.27 * @throws UnsupportedOperationException if the remove operation 22.32/7.27 * is not supported by this list 22.32/7.27 */ 22.32/7.27 boolean remove(Object o); 22.32/7.27 22.32/7.27 22.32/7.27 // Bulk Modification Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns true if this list contains all of the elements of the 22.32/7.27 * specified collection. 22.32/7.27 * 22.32/7.27 * @param c collection to be checked for containment in this list 22.32/7.27 * @return true if this list contains all of the elements of the 22.32/7.27 * specified collection 22.32/7.27 * @throws ClassCastException if the types of one or more elements 22.32/7.27 * in the specified collection are incompatible with this 22.32/7.27 * list (optional) 22.32/7.27 * @throws NullPointerException if the specified collection contains one 22.32/7.27 * or more null elements and this list does not permit null 22.32/7.27 * elements (optional), or if the specified collection is null 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 boolean containsAll(Collection c); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Appends all of the elements in the specified collection to the end of 22.32/7.27 * this list, in the order that they are returned by the specified 22.32/7.27 * collection's iterator (optional operation). The behavior of this 22.32/7.27 * operation is undefined if the specified collection is modified while 22.32/7.27 * the operation is in progress. (Note that this will occur if the 22.32/7.27 * specified collection is this list, and it's nonempty.) 22.32/7.27 * 22.32/7.27 * @param c collection containing elements to be added to this list 22.32/7.27 * @return true if this list changed as a result of the call 22.32/7.27 * @throws UnsupportedOperationException if the addAll operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of an element of the specified 22.32/7.27 * collection prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified collection contains one 22.32/7.27 * or more null elements and this list does not permit null 22.32/7.27 * elements, or if the specified collection is null 22.32/7.27 * @throws IllegalArgumentException if some property of an element of the 22.32/7.27 * specified collection prevents it from being added to this list 22.32/7.27 * @see #add(Object) 22.32/7.27 */ 22.32/7.27 boolean addAll(Collection c); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Inserts all of the elements in the specified collection into this 22.32/7.27 * list at the specified position (optional operation). Shifts the 22.32/7.27 * element currently at that position (if any) and any subsequent 22.32/7.27 * elements to the right (increases their indices). The new elements 22.32/7.27 * will appear in this list in the order that they are returned by the 22.32/7.27 * specified collection's iterator. The behavior of this operation is 22.32/7.27 * undefined if the specified collection is modified while the 22.32/7.27 * operation is in progress. (Note that this will occur if the specified 22.32/7.27 * collection is this list, and it's nonempty.) 22.32/7.27 * 22.32/7.27 * @param index index at which to insert the first element from the 22.32/7.27 * specified collection 22.32/7.27 * @param c collection containing elements to be added to this list 22.32/7.27 * @return true if this list changed as a result of the call 22.32/7.27 * @throws UnsupportedOperationException if the addAll operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of an element of the specified 22.32/7.27 * collection prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified collection contains one 22.32/7.27 * or more null elements and this list does not permit null 22.32/7.27 * elements, or if the specified collection is null 22.32/7.27 * @throws IllegalArgumentException if some property of an element of the 22.32/7.27 * specified collection prevents it from being added to this list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * (index < 0 || index > size()) 22.32/7.27 */ 22.32/7.27 boolean addAll(int index, Collection c); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes from this list all of its elements that are contained in the 22.32/7.27 * specified collection (optional operation). 22.32/7.27 * 22.32/7.27 * @param c collection containing elements to be removed from this list 22.32/7.27 * @return true if this list changed as a result of the call 22.32/7.27 * @throws UnsupportedOperationException if the removeAll operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of an element of this list 22.32/7.27 * is incompatible with the specified collection (optional) 22.32/7.27 * @throws NullPointerException if this list contains a null element and the 22.32/7.27 * specified collection does not permit null elements (optional), 22.32/7.27 * or if the specified collection is null 22.32/7.27 * @see #remove(Object) 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 boolean removeAll(Collection c); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Retains only the elements in this list that are contained in the 22.32/7.27 * specified collection (optional operation). In other words, removes 22.32/7.27 * from this list all of its elements that are not contained in the 22.32/7.27 * specified collection. 22.32/7.27 * 22.32/7.27 * @param c collection containing elements to be retained in this list 22.32/7.27 * @return true if this list changed as a result of the call 22.32/7.27 * @throws UnsupportedOperationException if the retainAll operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of an element of this list 22.32/7.27 * is incompatible with the specified collection (optional) 22.32/7.27 * @throws NullPointerException if this list contains a null element and the 22.32/7.27 * specified collection does not permit null elements (optional), 22.32/7.27 * or if the specified collection is null 22.32/7.27 * @see #remove(Object) 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 boolean retainAll(Collection c); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes all of the elements from this list (optional operation). 22.32/7.27 * The list will be empty after this call returns. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException if the clear operation 22.32/7.27 * is not supported by this list 22.32/7.27 */ 22.32/7.27 void clear(); 22.32/7.27 22.32/7.27 22.32/7.27 // Comparison and hashing 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Compares the specified object with this list for equality. Returns 22.32/7.27 * true if and only if the specified object is also a list, both 22.32/7.27 * lists have the same size, and all corresponding pairs of elements in 22.32/7.27 * the two lists are equal. (Two elements e1 and 22.32/7.27 * e2 are equal if (e1==null ? e2==null : 22.32/7.27 * e1.equals(e2)).) In other words, two lists are defined to be 22.32/7.27 * equal if they contain the same elements in the same order. This 22.32/7.27 * definition ensures that the equals method works properly across 22.32/7.27 * different implementations of the List interface. 22.32/7.27 * 22.32/7.27 * @param o the object to be compared for equality with this list 22.32/7.27 * @return true if the specified object is equal to this list 22.32/7.27 */ 22.32/7.27 boolean equals(Object o); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the hash code value for this list. The hash code of a list 22.32/7.27 * is defined to be the result of the following calculation: 22.32/7.27 *

22.32/7.27	     *  int hashCode = 1;
22.32/7.27	     *  for (E e : list)
22.32/7.27	     *      hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
22.32/7.27	     * 
22.32/7.27 * This ensures that list1.equals(list2) implies that 22.32/7.27 * list1.hashCode()==list2.hashCode() for any two lists, 22.32/7.27 * list1 and list2, as required by the general 22.32/7.27 * contract of {@link Object#hashCode}. 22.32/7.27 * 22.32/7.27 * @return the hash code value for this list 22.32/7.27 * @see Object#equals(Object) 22.32/7.27 * @see #equals(Object) 22.32/7.27 */ 22.32/7.27 int hashCode(); 22.32/7.27 22.32/7.27 22.32/7.27 // Positional Access Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the element at the specified position in this list. 22.32/7.27 * 22.32/7.27 * @param index index of the element to return 22.32/7.27 * @return the element at the specified position in this list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * (index < 0 || index >= size()) 22.32/7.27 */ 22.32/7.27 E get(int index); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Replaces the element at the specified position in this list with the 22.32/7.27 * specified element (optional operation). 22.32/7.27 * 22.32/7.27 * @param index index of the element to replace 22.32/7.27 * @param element element to be stored at the specified position 22.32/7.27 * @return the element previously at the specified position 22.32/7.27 * @throws UnsupportedOperationException if the set operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified element is null and 22.32/7.27 * this list does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of the specified 22.32/7.27 * element prevents it from being added to this list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * (index < 0 || index >= size()) 22.32/7.27 */ 22.32/7.27 E set(int index, E element); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Inserts the specified element at the specified position in this list 22.32/7.27 * (optional operation). Shifts the element currently at that position 22.32/7.27 * (if any) and any subsequent elements to the right (adds one to their 22.32/7.27 * indices). 22.32/7.27 * 22.32/7.27 * @param index index at which the specified element is to be inserted 22.32/7.27 * @param element element to be inserted 22.32/7.27 * @throws UnsupportedOperationException if the add operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified element is null and 22.32/7.27 * this list does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of the specified 22.32/7.27 * element prevents it from being added to this list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * (index < 0 || index > size()) 22.32/7.27 */ 22.32/7.27 void add(int index, E element); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes the element at the specified position in this list (optional 22.32/7.27 * operation). Shifts any subsequent elements to the left (subtracts one 22.32/7.27 * from their indices). Returns the element that was removed from the 22.32/7.27 * list. 22.32/7.27 * 22.32/7.27 * @param index the index of the element to be removed 22.32/7.27 * @return the element previously at the specified position 22.32/7.27 * @throws UnsupportedOperationException if the remove operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * (index < 0 || index >= size()) 22.32/7.27 */ 22.32/7.27 E remove(int index); 22.32/7.27 22.32/7.27 22.32/7.27 // Search Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the index of the first occurrence of the specified element 22.32/7.27 * in this list, or -1 if this list does not contain the element. 22.32/7.27 * More formally, returns the lowest index i such that 22.32/7.27 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.27 * or -1 if there is no such index. 22.32/7.27 * 22.32/7.27 * @param o element to search for 22.32/7.27 * @return the index of the first occurrence of the specified element in 22.32/7.27 * this list, or -1 if this list does not contain the element 22.32/7.27 * @throws ClassCastException if the type of the specified element 22.32/7.27 * is incompatible with this list (optional) 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements (optional) 22.32/7.27 */ 22.32/7.27 int indexOf(Object o); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the index of the last occurrence of the specified element 22.32/7.27 * in this list, or -1 if this list does not contain the element. 22.32/7.27 * More formally, returns the highest index i such that 22.32/7.27 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.27 * or -1 if there is no such index. 22.32/7.27 * 22.32/7.27 * @param o element to search for 22.32/7.27 * @return the index of the last occurrence of the specified element in 22.32/7.27 * this list, or -1 if this list does not contain the element 22.32/7.27 * @throws ClassCastException if the type of the specified element 22.32/7.27 * is incompatible with this list (optional) 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements (optional) 22.32/7.27 */ 22.32/7.27 int lastIndexOf(Object o); 22.32/7.27 22.32/7.27 22.32/7.27 // List Iterators 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns a list iterator over the elements in this list (in proper 22.32/7.27 * sequence). 22.32/7.27 * 22.32/7.27 * @return a list iterator over the elements in this list (in proper 22.32/7.27 * sequence) 22.32/7.27 */ 22.32/7.27 ListIterator listIterator(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns a list iterator over the elements in this list (in proper 22.32/7.27 * sequence), starting at the specified position in the list. 22.32/7.27 * The specified index indicates the first element that would be 22.32/7.27 * returned by an initial call to {@link ListIterator#next next}. 22.32/7.27 * An initial call to {@link ListIterator#previous previous} would 22.32/7.27 * return the element with the specified index minus one. 22.32/7.27 * 22.32/7.27 * @param index index of the first element to be returned from the 22.32/7.27 * list iterator (by a call to {@link ListIterator#next next}) 22.32/7.27 * @return a list iterator over the elements in this list (in proper 22.32/7.27 * sequence), starting at the specified position in the list 22.32/7.27 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.27 * ({@code index < 0 || index > size()}) 22.32/7.27 */ 22.32/7.27 ListIterator listIterator(int index); 22.32/7.27 22.32/7.27 // View 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns a view of the portion of this list between the specified 22.32/7.27 * fromIndex, inclusive, and toIndex, exclusive. (If 22.32/7.27 * fromIndex and toIndex are equal, the returned list is 22.32/7.27 * empty.) The returned list is backed by this list, so non-structural 22.32/7.27 * changes in the returned list are reflected in this list, and vice-versa. 22.32/7.27 * The returned list supports all of the optional list operations supported 22.32/7.27 * by this list.

22.32/7.27 * 22.32/7.27 * This method eliminates the need for explicit range operations (of 22.32/7.27 * the sort that commonly exist for arrays). Any operation that expects 22.32/7.27 * a list can be used as a range operation by passing a subList view 22.32/7.27 * instead of a whole list. For example, the following idiom 22.32/7.27 * removes a range of elements from a list: 22.32/7.27 *

22.32/7.27	     *      list.subList(from, to).clear();
22.32/7.27	     * 
22.32/7.27 * Similar idioms may be constructed for indexOf and 22.32/7.27 * lastIndexOf, and all of the algorithms in the 22.32/7.27 * Collections class can be applied to a subList.

22.32/7.27 * 22.32/7.27 * The semantics of the list returned by this method become undefined if 22.32/7.27 * the backing list (i.e., this list) is structurally modified in 22.32/7.27 * any way other than via the returned list. (Structural modifications are 22.32/7.27 * those that change the size of this list, or otherwise perturb it in such 22.32/7.27 * a fashion that iterations in progress may yield incorrect results.) 22.32/7.27 * 22.32/7.27 * @param fromIndex low endpoint (inclusive) of the subList 22.32/7.27 * @param toIndex high endpoint (exclusive) of the subList 22.32/7.27 * @return a view of the specified range within this list 22.32/7.27 * @throws IndexOutOfBoundsException for an illegal endpoint index value 22.32/7.27 * (fromIndex < 0 || toIndex > size || 22.32/7.27 * fromIndex > toIndex) 22.32/7.27 */ 22.32/7.27 List subList(int fromIndex, int toIndex); 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Thrown by the nextElement method of an 22.32/7.27 * Enumeration to indicate that there are no more 22.32/7.27 * elements in the enumeration. 22.32/7.27 * 22.32/7.27 * @author unascribed 22.32/7.27 * @see java.util.Enumeration 22.32/7.27 * @see java.util.Enumeration#nextElement() 22.32/7.27 * @since JDK1.0 22.32/7.27 */ 22.32/7.27 public 22.32/7.27 class NoSuchElementException extends RuntimeException { 22.32/7.27 /** 22.32/7.27 * Constructs a NoSuchElementException with null 22.32/7.27 * as its error message string. 22.32/7.27 */ 22.32/7.27 public NoSuchElementException() { 22.32/7.27 super(); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Constructs a NoSuchElementException, saving a reference 22.32/7.27 * to the error message string s for later retrieval by the 22.32/7.27 * getMessage method. 22.32/7.27 * 22.32/7.27 * @param s the detail message. 22.32/7.27 */ 22.32/7.27 public NoSuchElementException(String s) { 22.32/7.27 super(s); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 /* 22.32/7.27 * This file is available under and governed by the GNU General Public 22.32/7.27 * License version 2 only, as published by the Free Software Foundation. 22.32/7.27 * However, the following notice accompanied the original version of this 22.32/7.27 * file: 22.32/7.27 * 22.32/7.27 * Written by Doug Lea with assistance from members of JCP JSR-166 22.32/7.27 * Expert Group and released to the public domain, as explained at 22.32/7.27 * http://creativecommons.org/licenses/publicdomain 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * A collection designed for holding elements prior to processing. 22.32/7.27 * Besides basic {@link java.util.Collection Collection} operations, 22.32/7.27 * queues provide additional insertion, extraction, and inspection 22.32/7.27 * operations. Each of these methods exists in two forms: one throws 22.32/7.27 * an exception if the operation fails, the other returns a special 22.32/7.27 * value (either null or false, depending on the 22.32/7.27 * operation). The latter form of the insert operation is designed 22.32/7.27 * specifically for use with capacity-restricted Queue 22.32/7.27 * implementations; in most implementations, insert operations cannot 22.32/7.27 * fail. 22.32/7.27 * 22.32/7.27 *

22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 * 22.32/7.27 *
Throws exceptionReturns special value
Insert{@link #add add(e)}{@link #offer offer(e)}
Remove{@link #remove remove()}{@link #poll poll()}
Examine{@link #element element()}{@link #peek peek()}
22.32/7.27 * 22.32/7.27 *

Queues typically, but do not necessarily, order elements in a 22.32/7.27 * FIFO (first-in-first-out) manner. Among the exceptions are 22.32/7.27 * priority queues, which order elements according to a supplied 22.32/7.27 * comparator, or the elements' natural ordering, and LIFO queues (or 22.32/7.27 * stacks) which order the elements LIFO (last-in-first-out). 22.32/7.27 * Whatever the ordering used, the head of the queue is that 22.32/7.27 * element which would be removed by a call to {@link #remove() } or 22.32/7.27 * {@link #poll()}. In a FIFO queue, all new elements are inserted at 22.32/7.27 * the tail of the queue. Other kinds of queues may use 22.32/7.27 * different placement rules. Every Queue implementation 22.32/7.27 * must specify its ordering properties. 22.32/7.27 * 22.32/7.27 *

The {@link #offer offer} method inserts an element if possible, 22.32/7.27 * otherwise returning false. This differs from the {@link 22.32/7.27 * java.util.Collection#add Collection.add} method, which can fail to 22.32/7.27 * add an element only by throwing an unchecked exception. The 22.32/7.27 * offer method is designed for use when failure is a normal, 22.32/7.27 * rather than exceptional occurrence, for example, in fixed-capacity 22.32/7.27 * (or "bounded") queues. 22.32/7.27 * 22.32/7.27 *

The {@link #remove()} and {@link #poll()} methods remove and 22.32/7.27 * return the head of the queue. 22.32/7.27 * Exactly which element is removed from the queue is a 22.32/7.27 * function of the queue's ordering policy, which differs from 22.32/7.27 * implementation to implementation. The remove() and 22.32/7.27 * poll() methods differ only in their behavior when the 22.32/7.27 * queue is empty: the remove() method throws an exception, 22.32/7.27 * while the poll() method returns null. 22.32/7.27 * 22.32/7.27 *

The {@link #element()} and {@link #peek()} methods return, but do 22.32/7.27 * not remove, the head of the queue. 22.32/7.27 * 22.32/7.27 *

The Queue interface does not define the blocking queue 22.32/7.27 * methods, which are common in concurrent programming. These methods, 22.32/7.27 * which wait for elements to appear or for space to become available, are 22.32/7.27 * defined in the {@link java.util.concurrent.BlockingQueue} interface, which 22.32/7.27 * extends this interface. 22.32/7.27 * 22.32/7.27 *

Queue implementations generally do not allow insertion 22.32/7.27 * of null elements, although some implementations, such as 22.32/7.27 * {@link LinkedList}, do not prohibit insertion of null. 22.32/7.27 * Even in the implementations that permit it, null should 22.32/7.27 * not be inserted into a Queue, as null is also 22.32/7.27 * used as a special return value by the poll method to 22.32/7.27 * indicate that the queue contains no elements. 22.32/7.27 * 22.32/7.27 *

Queue implementations generally do not define 22.32/7.27 * element-based versions of methods equals and 22.32/7.27 * hashCode but instead inherit the identity based versions 22.32/7.27 * from class Object, because element-based equality is not 22.32/7.27 * always well-defined for queues with the same elements but different 22.32/7.27 * ordering properties. 22.32/7.27 * 22.32/7.27 * 22.32/7.27 *

This interface is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @see java.util.Collection 22.32/7.27 * @see LinkedList 22.32/7.27 * @see PriorityQueue 22.32/7.27 * @see java.util.concurrent.LinkedBlockingQueue 22.32/7.27 * @see java.util.concurrent.BlockingQueue 22.32/7.27 * @see java.util.concurrent.ArrayBlockingQueue 22.32/7.27 * @see java.util.concurrent.LinkedBlockingQueue 22.32/7.27 * @see java.util.concurrent.PriorityBlockingQueue 22.32/7.27 * @since 1.5 22.32/7.27 * @author Doug Lea 22.32/7.27 * @param the type of elements held in this collection 22.32/7.27 */ 22.32/7.27 public interface Queue extends Collection { 22.32/7.27 /** 22.32/7.27 * Inserts the specified element into this queue if it is possible to do so 22.32/7.27 * immediately without violating capacity restrictions, returning 22.32/7.27 * true upon success and throwing an IllegalStateException 22.32/7.27 * if no space is currently available. 22.32/7.27 * 22.32/7.27 * @param e the element to add 22.32/7.27 * @return true (as specified by {@link Collection#add}) 22.32/7.27 * @throws IllegalStateException if the element cannot be added at this 22.32/7.27 * time due to capacity restrictions 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this queue 22.32/7.27 * @throws NullPointerException if the specified element is null and 22.32/7.27 * this queue does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of this element 22.32/7.27 * prevents it from being added to this queue 22.32/7.27 */ 22.32/7.27 boolean add(E e); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Inserts the specified element into this queue if it is possible to do 22.32/7.27 * so immediately without violating capacity restrictions. 22.32/7.27 * When using a capacity-restricted queue, this method is generally 22.32/7.27 * preferable to {@link #add}, which can fail to insert an element only 22.32/7.27 * by throwing an exception. 22.32/7.27 * 22.32/7.27 * @param e the element to add 22.32/7.27 * @return true if the element was added to this queue, else 22.32/7.27 * false 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this queue 22.32/7.27 * @throws NullPointerException if the specified element is null and 22.32/7.27 * this queue does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of this element 22.32/7.27 * prevents it from being added to this queue 22.32/7.27 */ 22.32/7.27 boolean offer(E e); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Retrieves and removes the head of this queue. This method differs 22.32/7.27 * from {@link #poll poll} only in that it throws an exception if this 22.32/7.27 * queue is empty. 22.32/7.27 * 22.32/7.27 * @return the head of this queue 22.32/7.27 * @throws NoSuchElementException if this queue is empty 22.32/7.27 */ 22.32/7.27 E remove(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Retrieves and removes the head of this queue, 22.32/7.27 * or returns null if this queue is empty. 22.32/7.27 * 22.32/7.27 * @return the head of this queue, or null if this queue is empty 22.32/7.27 */ 22.32/7.27 E poll(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Retrieves, but does not remove, the head of this queue. This method 22.32/7.27 * differs from {@link #peek peek} only in that it throws an exception 22.32/7.27 * if this queue is empty. 22.32/7.27 * 22.32/7.27 * @return the head of this queue 22.32/7.27 * @throws NoSuchElementException if this queue is empty 22.32/7.27 */ 22.32/7.27 E element(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Retrieves, but does not remove, the head of this queue, 22.32/7.27 * or returns null if this queue is empty. 22.32/7.27 * 22.32/7.27 * @return the head of this queue, or null if this queue is empty 22.32/7.27 */ 22.32/7.27 E peek(); 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Marker interface used by List implementations to indicate that 22.32/7.27 * they support fast (generally constant time) random access. The primary 22.32/7.27 * purpose of this interface is to allow generic algorithms to alter their 22.32/7.27 * behavior to provide good performance when applied to either random or 22.32/7.27 * sequential access lists. 22.32/7.27 * 22.32/7.27 *

The best algorithms for manipulating random access lists (such as 22.32/7.27 * ArrayList) can produce quadratic behavior when applied to 22.32/7.27 * sequential access lists (such as LinkedList). Generic list 22.32/7.27 * algorithms are encouraged to check whether the given list is an 22.32/7.27 * instanceof this interface before applying an algorithm that would 22.32/7.27 * provide poor performance if it were applied to a sequential access list, 22.32/7.27 * and to alter their behavior if necessary to guarantee acceptable 22.32/7.27 * performance. 22.32/7.27 * 22.32/7.27 *

It is recognized that the distinction between random and sequential 22.32/7.27 * access is often fuzzy. For example, some List implementations 22.32/7.27 * provide asymptotically linear access times if they get huge, but constant 22.32/7.27 * access times in practice. Such a List implementation 22.32/7.27 * should generally implement this interface. As a rule of thumb, a 22.32/7.27 * List implementation should implement this interface if, 22.32/7.27 * for typical instances of the class, this loop: 22.32/7.27 *

22.32/7.27	 *     for (int i=0, n=list.size(); i < n; i++)
22.32/7.27	 *         list.get(i);
22.32/7.27	 * 
22.32/7.27 * runs faster than this loop: 22.32/7.27 *
22.32/7.27	 *     for (Iterator i=list.iterator(); i.hasNext(); )
22.32/7.27	 *         i.next();
22.32/7.27	 * 
22.32/7.27 * 22.32/7.27 *

This interface is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @since 1.4 22.32/7.27 */ 22.32/7.27 public interface RandomAccess { 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 public class Random { 22.32/7.27 static String[] args; 22.32/7.27 static int index = 0; 22.32/7.27 22.32/7.27 public static int random() { 22.32/7.27 String string = args[index]; 22.32/7.27 index++; 22.32/7.27 return string.length(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Thrown to indicate that the requested operation is not supported.

22.32/7.27 * 22.32/7.27 * This class is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @author Josh Bloch 22.32/7.27 * @since 1.2 22.32/7.27 */ 22.32/7.27 public class UnsupportedOperationException extends RuntimeException { 22.32/7.27 /** 22.32/7.27 * Constructs an UnsupportedOperationException with no detail message. 22.32/7.27 */ 22.32/7.27 public UnsupportedOperationException() { 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Constructs an UnsupportedOperationException with the specified 22.32/7.27 * detail message. 22.32/7.27 * 22.32/7.27 * @param message the detail message 22.32/7.27 */ 22.32/7.27 public UnsupportedOperationException(String message) { 22.32/7.27 super(message); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Constructs a new exception with the specified detail message and 22.32/7.27 * cause. 22.32/7.27 * 22.32/7.27 *

Note that the detail message associated with cause is 22.32/7.27 * not automatically incorporated in this exception's detail 22.32/7.27 * message. 22.32/7.27 * 22.32/7.27 * @param message the detail message (which is saved for later retrieval 22.32/7.27 * by the {@link Throwable#getMessage()} method). 22.32/7.27 * @param cause the cause (which is saved for later retrieval by the 22.32/7.27 * {@link Throwable#getCause()} method). (A null value 22.32/7.27 * is permitted, and indicates that the cause is nonexistent or 22.32/7.27 * unknown.) 22.32/7.27 * @since 1.5 22.32/7.27 */ 22.32/7.27 public UnsupportedOperationException(String message, Throwable cause) { 22.32/7.27 super(message, cause); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Constructs a new exception with the specified cause and a detail 22.32/7.27 * message of (cause==null ? null : cause.toString()) (which 22.32/7.27 * typically contains the class and detail message of cause). 22.32/7.27 * This constructor is useful for exceptions that are little more than 22.32/7.27 * wrappers for other throwables (for example, {@link 22.32/7.27 * java.security.PrivilegedActionException}). 22.32/7.27 * 22.32/7.27 * @param cause the cause (which is saved for later retrieval by the 22.32/7.27 * {@link Throwable#getCause()} method). (A null value is 22.32/7.27 * permitted, and indicates that the cause is nonexistent or 22.32/7.27 * unknown.) 22.32/7.27 * @since 1.5 22.32/7.27 */ 22.32/7.27 public UnsupportedOperationException(Throwable cause) { 22.32/7.27 super(cause); 22.32/7.27 } 22.32/7.27 22.32/7.27 static final long serialVersionUID = -1242599979055084673L; 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 22.32/7.27 ---------------------------------------- 22.32/7.27 22.32/7.27 (1) BareJBCToJBCProof (EQUIVALENT) 22.32/7.27 initialized classpath 22.32/7.27 ---------------------------------------- 22.32/7.27 22.32/7.27 (2) 22.32/7.27 Obligation: 22.32/7.27 need to prove termination of the following program: 22.32/7.27 /* 22.32/7.27 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * This class provides a skeletal implementation of the Collection 22.32/7.27 * interface, to minimize the effort required to implement this interface.

22.32/7.27 * 22.32/7.27 * To implement an unmodifiable collection, the programmer needs only to 22.32/7.27 * extend this class and provide implementations for the iterator and 22.32/7.27 * size methods. (The iterator returned by the iterator 22.32/7.27 * method must implement hasNext and next.)

22.32/7.27 * 22.32/7.27 * To implement a modifiable collection, the programmer must additionally 22.32/7.27 * override this class's add method (which otherwise throws an 22.32/7.27 * UnsupportedOperationException), and the iterator returned by the 22.32/7.27 * iterator method must additionally implement its remove 22.32/7.27 * method.

22.32/7.27 * 22.32/7.27 * The programmer should generally provide a void (no argument) and 22.32/7.27 * Collection constructor, as per the recommendation in the 22.32/7.27 * Collection interface specification.

22.32/7.27 * 22.32/7.27 * The documentation for each non-abstract method in this class describes its 22.32/7.27 * implementation in detail. Each of these methods may be overridden if 22.32/7.27 * the collection being implemented admits a more efficient implementation.

22.32/7.27 * 22.32/7.27 * This class is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @author Josh Bloch 22.32/7.27 * @author Neal Gafter 22.32/7.27 * @see Collection 22.32/7.27 * @since 1.2 22.32/7.27 */ 22.32/7.27 22.32/7.27 public abstract class AbstractCollection implements Collection { 22.32/7.27 /** 22.32/7.27 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.27 * implicit.) 22.32/7.27 */ 22.32/7.27 protected AbstractCollection() { 22.32/7.27 } 22.32/7.27 22.32/7.27 // Query Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns an iterator over the elements contained in this collection. 22.32/7.27 * 22.32/7.27 * @return an iterator over the elements contained in this collection 22.32/7.27 */ 22.32/7.27 public abstract Iterator iterator(); 22.32/7.27 22.32/7.27 public abstract int size(); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation returns size() == 0. 22.32/7.27 */ 22.32/7.27 public boolean isEmpty() { 22.32/7.27 return size() == 0; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over the elements in the collection, 22.32/7.27 * checking each element in turn for equality with the specified element. 22.32/7.27 * 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public boolean contains(Object o) { 22.32/7.27 Iterator e = iterator(); 22.32/7.27 if (o==null) { 22.32/7.27 while (e.hasNext()) 22.32/7.27 if (e.next()==null) 22.32/7.27 return true; 22.32/7.27 } else { 22.32/7.27 while (e.hasNext()) 22.32/7.27 if (o.equals(e.next())) 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 return false; 22.32/7.27 } 22.32/7.27 22.32/7.27 // Modification Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation always throws an 22.32/7.27 * UnsupportedOperationException. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.27 * @throws IllegalStateException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public boolean add(E e) { 22.32/7.27 throw new UnsupportedOperationException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over the collection looking for the 22.32/7.27 * specified element. If it finds the element, it removes the element 22.32/7.27 * from the collection using the iterator's remove method. 22.32/7.27 * 22.32/7.27 *

Note that this implementation throws an 22.32/7.27 * UnsupportedOperationException if the iterator returned by this 22.32/7.27 * collection's iterator method does not implement the remove 22.32/7.27 * method and this collection contains the specified object. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public boolean remove(Object o) { 22.32/7.27 Iterator e = iterator(); 22.32/7.27 if (o==null) { 22.32/7.27 while (e.hasNext()) { 22.32/7.27 if (e.next()==null) { 22.32/7.27 e.remove(); 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 } else { 22.32/7.27 while (e.hasNext()) { 22.32/7.27 if (o.equals(e.next())) { 22.32/7.27 e.remove(); 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 } 22.32/7.27 return false; 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 // Bulk Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over the specified collection, 22.32/7.27 * checking each element returned by the iterator in turn to see 22.32/7.27 * if it's contained in this collection. If all elements are so 22.32/7.27 * contained true is returned, otherwise false. 22.32/7.27 * 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 public boolean containsAll(Collection c) { 22.32/7.27 Iterator e = c.iterator(); 22.32/7.27 while (e.hasNext()) 22.32/7.27 if (!contains(e.next())) 22.32/7.27 return false; 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over the specified collection, and adds 22.32/7.27 * each object returned by the iterator to this collection, in turn. 22.32/7.27 * 22.32/7.27 *

Note that this implementation will throw an 22.32/7.27 * UnsupportedOperationException unless add is 22.32/7.27 * overridden (assuming the specified collection is non-empty). 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.27 * @throws IllegalStateException {@inheritDoc} 22.32/7.27 * 22.32/7.27 * @see #add(Object) 22.32/7.27 */ 22.32/7.27 public boolean addAll(Collection c) { 22.32/7.27 boolean modified = false; 22.32/7.27 Iterator e = c.iterator(); 22.32/7.27 while (e.hasNext()) { 22.32/7.27 if (add(e.next())) 22.32/7.27 modified = true; 22.32/7.27 } 22.32/7.27 return modified; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over this collection, checking each 22.32/7.27 * element returned by the iterator in turn to see if it's contained 22.32/7.27 * in the specified collection. If it's so contained, it's removed from 22.32/7.27 * this collection with the iterator's remove method. 22.32/7.27 * 22.32/7.27 *

Note that this implementation will throw an 22.32/7.27 * UnsupportedOperationException if the iterator returned by the 22.32/7.27 * iterator method does not implement the remove method 22.32/7.27 * and this collection contains one or more elements in common with the 22.32/7.27 * specified collection. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * 22.32/7.27 * @see #remove(Object) 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 public boolean removeAll(Collection c) { 22.32/7.27 boolean modified = false; 22.32/7.27 Iterator e = iterator(); 22.32/7.27 while (e.hasNext()) { 22.32/7.27 if (c.contains(e.next())) { 22.32/7.27 e.remove(); 22.32/7.27 modified = true; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 return modified; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over this collection, checking each 22.32/7.27 * element returned by the iterator in turn to see if it's contained 22.32/7.27 * in the specified collection. If it's not so contained, it's removed 22.32/7.27 * from this collection with the iterator's remove method. 22.32/7.27 * 22.32/7.27 *

Note that this implementation will throw an 22.32/7.27 * UnsupportedOperationException if the iterator returned by the 22.32/7.27 * iterator method does not implement the remove method 22.32/7.27 * and this collection contains one or more elements not present in the 22.32/7.27 * specified collection. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * 22.32/7.27 * @see #remove(Object) 22.32/7.27 * @see #contains(Object) 22.32/7.27 */ 22.32/7.27 public boolean retainAll(Collection c) { 22.32/7.27 boolean modified = false; 22.32/7.27 Iterator e = iterator(); 22.32/7.27 while (e.hasNext()) { 22.32/7.27 if (!c.contains(e.next())) { 22.32/7.27 e.remove(); 22.32/7.27 modified = true; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 return modified; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation iterates over this collection, removing each 22.32/7.27 * element using the Iterator.remove operation. Most 22.32/7.27 * implementations will probably choose to override this method for 22.32/7.27 * efficiency. 22.32/7.27 * 22.32/7.27 *

Note that this implementation will throw an 22.32/7.27 * UnsupportedOperationException if the iterator returned by this 22.32/7.27 * collection's iterator method does not implement the 22.32/7.27 * remove method and this collection is non-empty. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public void clear() { 22.32/7.27 Iterator e = iterator(); 22.32/7.27 while (e.hasNext()) { 22.32/7.27 e.next(); 22.32/7.27 e.remove(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 // String conversion 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns a string representation of this collection. The string 22.32/7.27 * representation consists of a list of the collection's elements in the 22.32/7.27 * order they are returned by its iterator, enclosed in square brackets 22.32/7.27 * ("[]"). Adjacent elements are separated by the characters 22.32/7.27 * ", " (comma and space). Elements are converted to strings as 22.32/7.27 * by {@link String#valueOf(Object)}. 22.32/7.27 * 22.32/7.27 * @return a string representation of this collection 22.32/7.27 */ 22.32/7.27 public String toString() { 22.32/7.27 Iterator i = iterator(); 22.32/7.27 if (! i.hasNext()) 22.32/7.27 return "[]"; 22.32/7.27 22.32/7.27 String sb = ""; 22.32/7.27 sb = sb + "["; 22.32/7.27 for (;;) { 22.32/7.27 E e = i.next(); 22.32/7.27 sb = sb + (e == this ? "(this Collection)" : e); 22.32/7.27 if (! i.hasNext()) { 22.32/7.27 sb = sb + "]"; 22.32/7.27 return sb; 22.32/7.27 } 22.32/7.27 sb = sb + ", "; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * This class provides a skeletal implementation of the {@link List} 22.32/7.27 * interface to minimize the effort required to implement this interface 22.32/7.27 * backed by a "random access" data store (such as an array). For sequential 22.32/7.27 * access data (such as a linked list), {@link AbstractSequentialList} should 22.32/7.27 * be used in preference to this class. 22.32/7.27 * 22.32/7.27 *

To implement an unmodifiable list, the programmer needs only to extend 22.32/7.27 * this class and provide implementations for the {@link #get(int)} and 22.32/7.27 * {@link List#size() size()} methods. 22.32/7.27 * 22.32/7.27 *

To implement a modifiable list, the programmer must additionally 22.32/7.27 * override the {@link #set(int, Object) set(int, E)} method (which otherwise 22.32/7.27 * throws an {@code UnsupportedOperationException}). If the list is 22.32/7.27 * variable-size the programmer must additionally override the 22.32/7.27 * {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods. 22.32/7.27 * 22.32/7.27 *

The programmer should generally provide a void (no argument) and collection 22.32/7.27 * constructor, as per the recommendation in the {@link Collection} interface 22.32/7.27 * specification. 22.32/7.27 * 22.32/7.27 *

Unlike the other abstract collection implementations, the programmer does 22.32/7.27 * not have to provide an iterator implementation; the iterator and 22.32/7.27 * list iterator are implemented by this class, on top of the "random access" 22.32/7.27 * methods: 22.32/7.27 * {@link #get(int)}, 22.32/7.27 * {@link #set(int, Object) set(int, E)}, 22.32/7.27 * {@link #add(int, Object) add(int, E)} and 22.32/7.27 * {@link #remove(int)}. 22.32/7.27 * 22.32/7.27 *

The documentation for each non-abstract method in this class describes its 22.32/7.27 * implementation in detail. Each of these methods may be overridden if the 22.32/7.27 * collection being implemented admits a more efficient implementation. 22.32/7.27 * 22.32/7.27 *

This class is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @author Josh Bloch 22.32/7.27 * @author Neal Gafter 22.32/7.27 * @since 1.2 22.32/7.27 */ 22.32/7.27 22.32/7.27 public abstract class AbstractList extends AbstractCollection implements List { 22.32/7.27 /** 22.32/7.27 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.27 * implicit.) 22.32/7.27 */ 22.32/7.27 protected AbstractList() { 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Appends the specified element to the end of this list (optional 22.32/7.27 * operation). 22.32/7.27 * 22.32/7.27 *

Lists that support this operation may place limitations on what 22.32/7.27 * elements may be added to this list. In particular, some 22.32/7.27 * lists will refuse to add null elements, and others will impose 22.32/7.27 * restrictions on the type of elements that may be added. List 22.32/7.27 * classes should clearly specify in their documentation any restrictions 22.32/7.27 * on what elements may be added. 22.32/7.27 * 22.32/7.27 *

This implementation calls {@code add(size(), e)}. 22.32/7.27 * 22.32/7.27 *

Note that this implementation throws an 22.32/7.27 * {@code UnsupportedOperationException} unless 22.32/7.27 * {@link #add(int, Object) add(int, E)} is overridden. 22.32/7.27 * 22.32/7.27 * @param e element to be appended to this list 22.32/7.27 * @return {@code true} (as specified by {@link Collection#add}) 22.32/7.27 * @throws UnsupportedOperationException if the {@code add} operation 22.32/7.27 * is not supported by this list 22.32/7.27 * @throws ClassCastException if the class of the specified element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 * @throws NullPointerException if the specified element is null and this 22.32/7.27 * list does not permit null elements 22.32/7.27 * @throws IllegalArgumentException if some property of this element 22.32/7.27 * prevents it from being added to this list 22.32/7.27 */ 22.32/7.27 public boolean add(E e) { 22.32/7.27 add(size(), e); 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 abstract public E get(int index); 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation always throws an 22.32/7.27 * {@code UnsupportedOperationException}. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public E set(int index, E element) { 22.32/7.27 throw new UnsupportedOperationException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation always throws an 22.32/7.27 * {@code UnsupportedOperationException}. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public void add(int index, E element) { 22.32/7.27 throw new UnsupportedOperationException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation always throws an 22.32/7.27 * {@code UnsupportedOperationException}. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public E remove(int index) { 22.32/7.27 throw new UnsupportedOperationException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 // Search Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation first gets a list iterator (with 22.32/7.27 * {@code listIterator()}). Then, it iterates over the list until the 22.32/7.27 * specified element is found or the end of the list is reached. 22.32/7.27 * 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public int indexOf(Object o) { 22.32/7.27 ListIterator e = listIterator(); 22.32/7.27 if (o==null) { 22.32/7.27 while (e.hasNext()) 22.32/7.27 if (e.next()==null) 22.32/7.27 return e.previousIndex(); 22.32/7.27 } else { 22.32/7.27 while (e.hasNext()) 22.32/7.27 if (o.equals(e.next())) 22.32/7.27 return e.previousIndex(); 22.32/7.27 } 22.32/7.27 return -1; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation first gets a list iterator that points to the end 22.32/7.27 * of the list (with {@code listIterator(size())}). Then, it iterates 22.32/7.27 * backwards over the list until the specified element is found, or the 22.32/7.27 * beginning of the list is reached. 22.32/7.27 * 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public int lastIndexOf(Object o) { 22.32/7.27 ListIterator e = listIterator(size()); 22.32/7.27 if (o==null) { 22.32/7.27 while (e.hasPrevious()) 22.32/7.27 if (e.previous()==null) 22.32/7.27 return e.nextIndex(); 22.32/7.27 } else { 22.32/7.27 while (e.hasPrevious()) 22.32/7.27 if (o.equals(e.previous())) 22.32/7.27 return e.nextIndex(); 22.32/7.27 } 22.32/7.27 return -1; 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 // Bulk Operations 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes all of the elements from this list (optional operation). 22.32/7.27 * The list will be empty after this call returns. 22.32/7.27 * 22.32/7.27 *

This implementation calls {@code removeRange(0, size())}. 22.32/7.27 * 22.32/7.27 *

Note that this implementation throws an 22.32/7.27 * {@code UnsupportedOperationException} unless {@code remove(int 22.32/7.27 * index)} or {@code removeRange(int fromIndex, int toIndex)} is 22.32/7.27 * overridden. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException if the {@code clear} operation 22.32/7.27 * is not supported by this list 22.32/7.27 */ 22.32/7.27 public void clear() { 22.32/7.27 removeRange(0, size()); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation gets an iterator over the specified collection 22.32/7.27 * and iterates over it, inserting the elements obtained from the 22.32/7.27 * iterator into this list at the appropriate position, one at a time, 22.32/7.27 * using {@code add(int, E)}. 22.32/7.27 * Many implementations will override this method for efficiency. 22.32/7.27 * 22.32/7.27 *

Note that this implementation throws an 22.32/7.27 * {@code UnsupportedOperationException} unless 22.32/7.27 * {@link #add(int, Object) add(int, E)} is overridden. 22.32/7.27 * 22.32/7.27 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.27 * @throws ClassCastException {@inheritDoc} 22.32/7.27 * @throws NullPointerException {@inheritDoc} 22.32/7.27 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public boolean addAll(int index, Collection c) { 22.32/7.27 rangeCheckForAdd(index); 22.32/7.27 boolean modified = false; 22.32/7.27 Iterator e = c.iterator(); 22.32/7.27 while (e.hasNext()) { 22.32/7.27 add(index++, e.next()); 22.32/7.27 modified = true; 22.32/7.27 } 22.32/7.27 return modified; 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 // Iterators 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns an iterator over the elements in this list in proper sequence. 22.32/7.27 * 22.32/7.27 *

This implementation returns a straightforward implementation of the 22.32/7.27 * iterator interface, relying on the backing list's {@code size()}, 22.32/7.27 * {@code get(int)}, and {@code remove(int)} methods. 22.32/7.27 * 22.32/7.27 *

Note that the iterator returned by this method will throw an 22.32/7.27 * {@link UnsupportedOperationException} in response to its 22.32/7.27 * {@code remove} method unless the list's {@code remove(int)} method is 22.32/7.27 * overridden. 22.32/7.27 * 22.32/7.27 *

This implementation can be made to throw runtime exceptions in the 22.32/7.27 * face of concurrent modification, as described in the specification 22.32/7.27 * for the (protected) {@link #modCount} field. 22.32/7.27 * 22.32/7.27 * @return an iterator over the elements in this list in proper sequence 22.32/7.27 */ 22.32/7.27 public Iterator iterator() { 22.32/7.27 return new Itr(); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation returns {@code listIterator(0)}. 22.32/7.27 * 22.32/7.27 * @see #listIterator(int) 22.32/7.27 */ 22.32/7.27 public ListIterator listIterator() { 22.32/7.27 return listIterator(0); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation returns a straightforward implementation of the 22.32/7.27 * {@code ListIterator} interface that extends the implementation of the 22.32/7.27 * {@code Iterator} interface returned by the {@code iterator()} method. 22.32/7.27 * The {@code ListIterator} implementation relies on the backing list's 22.32/7.27 * {@code get(int)}, {@code set(int, E)}, {@code add(int, E)} 22.32/7.27 * and {@code remove(int)} methods. 22.32/7.27 * 22.32/7.27 *

Note that the list iterator returned by this implementation will 22.32/7.27 * throw an {@link UnsupportedOperationException} in response to its 22.32/7.27 * {@code remove}, {@code set} and {@code add} methods unless the 22.32/7.27 * list's {@code remove(int)}, {@code set(int, E)}, and 22.32/7.27 * {@code add(int, E)} methods are overridden. 22.32/7.27 * 22.32/7.27 *

This implementation can be made to throw runtime exceptions in the 22.32/7.27 * face of concurrent modification, as described in the specification for 22.32/7.27 * the (protected) {@link #modCount} field. 22.32/7.27 * 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public ListIterator listIterator(final int index) { 22.32/7.27 rangeCheckForAdd(index); 22.32/7.27 22.32/7.27 return new ListItr(index); 22.32/7.27 } 22.32/7.27 22.32/7.27 private class Itr implements Iterator { 22.32/7.27 /** 22.32/7.27 * Index of element to be returned by subsequent call to next. 22.32/7.27 */ 22.32/7.27 int cursor = 0; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Index of element returned by most recent call to next or 22.32/7.27 * previous. Reset to -1 if this element is deleted by a call 22.32/7.27 * to remove. 22.32/7.27 */ 22.32/7.27 int lastRet = -1; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * The modCount value that the iterator believes that the backing 22.32/7.27 * List should have. If this expectation is violated, the iterator 22.32/7.27 * has detected concurrent modification. 22.32/7.27 */ 22.32/7.27 int expectedModCount = modCount; 22.32/7.27 22.32/7.27 public boolean hasNext() { 22.32/7.27 return cursor != size(); 22.32/7.27 } 22.32/7.27 22.32/7.27 public E next() { 22.32/7.27 checkForComodification(); 22.32/7.27 try { 22.32/7.27 int i = cursor; 22.32/7.27 E next = get(i); 22.32/7.27 lastRet = i; 22.32/7.27 cursor = i + 1; 22.32/7.27 return next; 22.32/7.27 } catch (IndexOutOfBoundsException e) { 22.32/7.27 checkForComodification(); 22.32/7.27 throw new NoSuchElementException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 public void remove() { 22.32/7.27 if (lastRet < 0) 22.32/7.27 throw new IllegalStateException(); 22.32/7.27 checkForComodification(); 22.32/7.27 22.32/7.27 try { 22.32/7.27 AbstractList.this.remove(lastRet); 22.32/7.27 if (lastRet < cursor) 22.32/7.27 cursor--; 22.32/7.27 lastRet = -1; 22.32/7.27 expectedModCount = modCount; 22.32/7.27 } catch (IndexOutOfBoundsException e) { 22.32/7.27 throw new ConcurrentModificationException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 final void checkForComodification() { 22.32/7.27 if (modCount != expectedModCount) 22.32/7.27 throw new ConcurrentModificationException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 private class ListItr extends Itr implements ListIterator { 22.32/7.27 ListItr(int index) { 22.32/7.27 cursor = index; 22.32/7.27 } 22.32/7.27 22.32/7.27 public boolean hasPrevious() { 22.32/7.27 return cursor != 0; 22.32/7.27 } 22.32/7.27 22.32/7.27 public E previous() { 22.32/7.27 checkForComodification(); 22.32/7.27 try { 22.32/7.27 int i = cursor - 1; 22.32/7.27 E previous = get(i); 22.32/7.27 lastRet = cursor = i; 22.32/7.27 return previous; 22.32/7.27 } catch (IndexOutOfBoundsException e) { 22.32/7.27 checkForComodification(); 22.32/7.27 throw new NoSuchElementException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 public int nextIndex() { 22.32/7.27 return cursor; 22.32/7.27 } 22.32/7.27 22.32/7.27 public int previousIndex() { 22.32/7.27 return cursor-1; 22.32/7.27 } 22.32/7.27 22.32/7.27 public void set(E e) { 22.32/7.27 if (lastRet < 0) 22.32/7.27 throw new IllegalStateException(); 22.32/7.27 checkForComodification(); 22.32/7.27 22.32/7.27 try { 22.32/7.27 AbstractList.this.set(lastRet, e); 22.32/7.27 expectedModCount = modCount; 22.32/7.27 } catch (IndexOutOfBoundsException ex) { 22.32/7.27 throw new ConcurrentModificationException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 public void add(E e) { 22.32/7.27 checkForComodification(); 22.32/7.27 22.32/7.27 try { 22.32/7.27 int i = cursor; 22.32/7.27 AbstractList.this.add(i, e); 22.32/7.27 lastRet = -1; 22.32/7.27 cursor = i + 1; 22.32/7.27 expectedModCount = modCount; 22.32/7.27 } catch (IndexOutOfBoundsException ex) { 22.32/7.27 throw new ConcurrentModificationException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * {@inheritDoc} 22.32/7.27 * 22.32/7.27 *

This implementation returns a list that subclasses 22.32/7.27 * {@code AbstractList}. The subclass stores, in private fields, the 22.32/7.27 * offset of the subList within the backing list, the size of the subList 22.32/7.27 * (which can change over its lifetime), and the expected 22.32/7.27 * {@code modCount} value of the backing list. There are two variants 22.32/7.27 * of the subclass, one of which implements {@code RandomAccess}. 22.32/7.27 * If this list implements {@code RandomAccess} the returned list will 22.32/7.27 * be an instance of the subclass that implements {@code RandomAccess}. 22.32/7.27 * 22.32/7.27 *

The subclass's {@code set(int, E)}, {@code get(int)}, 22.32/7.27 * {@code add(int, E)}, {@code remove(int)}, {@code addAll(int, 22.32/7.27 * Collection)} and {@code removeRange(int, int)} methods all 22.32/7.27 * delegate to the corresponding methods on the backing abstract list, 22.32/7.27 * after bounds-checking the index and adjusting for the offset. The 22.32/7.27 * {@code addAll(Collection c)} method merely returns {@code addAll(size, 22.32/7.27 * c)}. 22.32/7.27 * 22.32/7.27 *

The {@code listIterator(int)} method returns a "wrapper object" 22.32/7.27 * over a list iterator on the backing list, which is created with the 22.32/7.27 * corresponding method on the backing list. The {@code iterator} method 22.32/7.27 * merely returns {@code listIterator()}, and the {@code size} method 22.32/7.27 * merely returns the subclass's {@code size} field. 22.32/7.27 * 22.32/7.27 *

All methods first check to see if the actual {@code modCount} of 22.32/7.27 * the backing list is equal to its expected value, and throw a 22.32/7.27 * {@code ConcurrentModificationException} if it is not. 22.32/7.27 * 22.32/7.27 * @throws IndexOutOfBoundsException if an endpoint index value is out of range 22.32/7.27 * {@code (fromIndex < 0 || toIndex > size)} 22.32/7.27 * @throws IllegalArgumentException if the endpoint indices are out of order 22.32/7.27 * {@code (fromIndex > toIndex)} 22.32/7.27 */ 22.32/7.27 public List subList(int fromIndex, int toIndex) { 22.32/7.27 return (this instanceof RandomAccess ? 22.32/7.27 new RandomAccessSubList(this, fromIndex, toIndex) : 22.32/7.27 new SubList(this, fromIndex, toIndex)); 22.32/7.27 } 22.32/7.27 22.32/7.27 // Comparison and hashing 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Compares the specified object with this list for equality. Returns 22.32/7.27 * {@code true} if and only if the specified object is also a list, both 22.32/7.27 * lists have the same size, and all corresponding pairs of elements in 22.32/7.27 * the two lists are equal. (Two elements {@code e1} and 22.32/7.27 * {@code e2} are equal if {@code (e1==null ? e2==null : 22.32/7.27 * e1.equals(e2))}.) In other words, two lists are defined to be 22.32/7.27 * equal if they contain the same elements in the same order.

22.32/7.27 * 22.32/7.27 * This implementation first checks if the specified object is this 22.32/7.27 * list. If so, it returns {@code true}; if not, it checks if the 22.32/7.27 * specified object is a list. If not, it returns {@code false}; if so, 22.32/7.27 * it iterates over both lists, comparing corresponding pairs of elements. 22.32/7.27 * If any comparison returns {@code false}, this method returns 22.32/7.27 * {@code false}. If either iterator runs out of elements before the 22.32/7.27 * other it returns {@code false} (as the lists are of unequal length); 22.32/7.27 * otherwise it returns {@code true} when the iterations complete. 22.32/7.27 * 22.32/7.27 * @param o the object to be compared for equality with this list 22.32/7.27 * @return {@code true} if the specified object is equal to this list 22.32/7.27 */ 22.32/7.27 public boolean equals(Object o) { 22.32/7.27 if (o == this) 22.32/7.27 return true; 22.32/7.27 if (!(o instanceof List)) 22.32/7.27 return false; 22.32/7.27 22.32/7.27 ListIterator e1 = listIterator(); 22.32/7.27 ListIterator e2 = ((List) o).listIterator(); 22.32/7.27 while(e1.hasNext() && e2.hasNext()) { 22.32/7.27 E o1 = e1.next(); 22.32/7.27 Object o2 = e2.next(); 22.32/7.27 if (!(o1==null ? o2==null : o1.equals(o2))) 22.32/7.27 return false; 22.32/7.27 } 22.32/7.27 return !(e1.hasNext() || e2.hasNext()); 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the hash code value for this list. 22.32/7.27 * 22.32/7.27 *

This implementation uses exactly the code that is used to define the 22.32/7.27 * list hash function in the documentation for the {@link List#hashCode} 22.32/7.27 * method. 22.32/7.27 * 22.32/7.27 * @return the hash code value for this list 22.32/7.27 */ 22.32/7.27 public int hashCode() { 22.32/7.27 int hashCode = 1; 22.32/7.27 Iterator it = this.iterator(); 22.32/7.27 while (it.hasNext()) { 22.32/7.27 E e = it.next(); 22.32/7.27 hashCode = 31*hashCode + (e==null ? 0 : e.hashCode()); 22.32/7.27 } 22.32/7.27 return hashCode; 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Removes from this list all of the elements whose index is between 22.32/7.27 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. 22.32/7.27 * Shifts any succeeding elements to the left (reduces their index). 22.32/7.27 * This call shortens the list by {@code (toIndex - fromIndex)} elements. 22.32/7.27 * (If {@code toIndex==fromIndex}, this operation has no effect.) 22.32/7.27 * 22.32/7.27 *

This method is called by the {@code clear} operation on this list 22.32/7.27 * and its subLists. Overriding this method to take advantage of 22.32/7.27 * the internals of the list implementation can substantially 22.32/7.27 * improve the performance of the {@code clear} operation on this list 22.32/7.27 * and its subLists. 22.32/7.27 * 22.32/7.27 *

This implementation gets a list iterator positioned before 22.32/7.27 * {@code fromIndex}, and repeatedly calls {@code ListIterator.next} 22.32/7.27 * followed by {@code ListIterator.remove} until the entire range has 22.32/7.27 * been removed. Note: if {@code ListIterator.remove} requires linear 22.32/7.27 * time, this implementation requires quadratic time. 22.32/7.27 * 22.32/7.27 * @param fromIndex index of first element to be removed 22.32/7.27 * @param toIndex index after last element to be removed 22.32/7.27 */ 22.32/7.27 protected void removeRange(int fromIndex, int toIndex) { 22.32/7.27 ListIterator it = listIterator(fromIndex); 22.32/7.27 for (int i=0, n=toIndex-fromIndex; istructurally modified. 22.32/7.27 * Structural modifications are those that change the size of the 22.32/7.27 * list, or otherwise perturb it in such a fashion that iterations in 22.32/7.27 * progress may yield incorrect results. 22.32/7.27 * 22.32/7.27 *

This field is used by the iterator and list iterator implementation 22.32/7.27 * returned by the {@code iterator} and {@code listIterator} methods. 22.32/7.27 * If the value of this field changes unexpectedly, the iterator (or list 22.32/7.27 * iterator) will throw a {@code ConcurrentModificationException} in 22.32/7.27 * response to the {@code next}, {@code remove}, {@code previous}, 22.32/7.27 * {@code set} or {@code add} operations. This provides 22.32/7.27 * fail-fast behavior, rather than non-deterministic behavior in 22.32/7.27 * the face of concurrent modification during iteration. 22.32/7.27 * 22.32/7.27 *

Use of this field by subclasses is optional. If a subclass 22.32/7.27 * wishes to provide fail-fast iterators (and list iterators), then it 22.32/7.27 * merely has to increment this field in its {@code add(int, E)} and 22.32/7.27 * {@code remove(int)} methods (and any other methods that it overrides 22.32/7.27 * that result in structural modifications to the list). A single call to 22.32/7.27 * {@code add(int, E)} or {@code remove(int)} must add no more than 22.32/7.27 * one to this field, or the iterators (and list iterators) will throw 22.32/7.27 * bogus {@code ConcurrentModificationExceptions}. If an implementation 22.32/7.27 * does not wish to provide fail-fast iterators, this field may be 22.32/7.27 * ignored. 22.32/7.27 */ 22.32/7.27 protected transient int modCount = 0; 22.32/7.27 22.32/7.27 private void rangeCheckForAdd(int index) { 22.32/7.27 if (index < 0 || index > size()) 22.32/7.27 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.27 } 22.32/7.27 22.32/7.27 private String outOfBoundsMsg(int index) { 22.32/7.27 return ""; 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 class SubList extends AbstractList { 22.32/7.27 private final AbstractList l; 22.32/7.27 private final int offset; 22.32/7.27 private int size; 22.32/7.27 22.32/7.27 SubList(AbstractList list, int fromIndex, int toIndex) { 22.32/7.27 if (fromIndex < 0) 22.32/7.27 throw new IndexOutOfBoundsException(); 22.32/7.27 if (toIndex > list.size()) 22.32/7.27 throw new IndexOutOfBoundsException(); 22.32/7.27 if (fromIndex > toIndex) 22.32/7.27 throw new IllegalArgumentException(); 22.32/7.27 l = list; 22.32/7.27 offset = fromIndex; 22.32/7.27 size = toIndex - fromIndex; 22.32/7.27 this.modCount = l.modCount; 22.32/7.27 } 22.32/7.27 22.32/7.27 public E set(int index, E element) { 22.32/7.27 rangeCheck(index); 22.32/7.27 checkForComodification(); 22.32/7.27 return l.set(index+offset, element); 22.32/7.27 } 22.32/7.27 22.32/7.27 public E get(int index) { 22.32/7.27 rangeCheck(index); 22.32/7.27 checkForComodification(); 22.32/7.27 return l.get(index+offset); 22.32/7.27 } 22.32/7.27 22.32/7.27 public int size() { 22.32/7.27 checkForComodification(); 22.32/7.27 return size; 22.32/7.27 } 22.32/7.27 22.32/7.27 public void add(int index, E element) { 22.32/7.27 rangeCheckForAdd(index); 22.32/7.27 checkForComodification(); 22.32/7.27 l.add(index+offset, element); 22.32/7.27 this.modCount = l.modCount; 22.32/7.27 size++; 22.32/7.27 } 22.32/7.27 22.32/7.27 public E remove(int index) { 22.32/7.27 rangeCheck(index); 22.32/7.27 checkForComodification(); 22.32/7.27 E result = l.remove(index+offset); 22.32/7.27 this.modCount = l.modCount; 22.32/7.27 size--; 22.32/7.27 return result; 22.32/7.27 } 22.32/7.27 22.32/7.27 protected void removeRange(int fromIndex, int toIndex) { 22.32/7.27 checkForComodification(); 22.32/7.27 l.removeRange(fromIndex+offset, toIndex+offset); 22.32/7.27 this.modCount = l.modCount; 22.32/7.27 size -= (toIndex-fromIndex); 22.32/7.27 } 22.32/7.27 22.32/7.27 public boolean addAll(Collection c) { 22.32/7.27 return addAll(size, c); 22.32/7.27 } 22.32/7.27 22.32/7.27 public boolean addAll(int index, Collection c) { 22.32/7.27 rangeCheckForAdd(index); 22.32/7.27 int cSize = c.size(); 22.32/7.27 if (cSize==0) 22.32/7.27 return false; 22.32/7.27 22.32/7.27 checkForComodification(); 22.32/7.27 l.addAll(offset+index, c); 22.32/7.27 this.modCount = l.modCount; 22.32/7.27 size += cSize; 22.32/7.27 return true; 22.32/7.27 } 22.32/7.27 22.32/7.27 public Iterator iterator() { 22.32/7.27 return listIterator(); 22.32/7.27 } 22.32/7.27 22.32/7.27 public ListIterator listIterator(final int index) { 22.32/7.27 checkForComodification(); 22.32/7.27 rangeCheckForAdd(index); 22.32/7.27 22.32/7.27 return new ListIterator() { 22.32/7.27 private final ListIterator i = l.listIterator(index+offset); 22.32/7.27 22.32/7.27 public boolean hasNext() { 22.32/7.27 return nextIndex() < size; 22.32/7.27 } 22.32/7.27 22.32/7.27 public E next() { 22.32/7.27 if (hasNext()) 22.32/7.27 return i.next(); 22.32/7.27 else 22.32/7.27 throw new NoSuchElementException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 public boolean hasPrevious() { 22.32/7.27 return previousIndex() >= 0; 22.32/7.27 } 22.32/7.27 22.32/7.27 public E previous() { 22.32/7.27 if (hasPrevious()) 22.32/7.27 return i.previous(); 22.32/7.27 else 22.32/7.27 throw new NoSuchElementException(); 22.32/7.27 } 22.32/7.27 22.32/7.27 public int nextIndex() { 22.32/7.27 return i.nextIndex() - offset; 22.32/7.27 } 22.32/7.27 22.32/7.27 public int previousIndex() { 22.32/7.27 return i.previousIndex() - offset; 22.32/7.27 } 22.32/7.27 22.32/7.27 public void remove() { 22.32/7.27 i.remove(); 22.32/7.27 SubList.this.modCount = l.modCount; 22.32/7.27 size--; 22.32/7.27 } 22.32/7.27 22.32/7.27 public void set(E e) { 22.32/7.27 i.set(e); 22.32/7.27 } 22.32/7.27 22.32/7.27 public void add(E e) { 22.32/7.27 i.add(e); 22.32/7.27 SubList.this.modCount = l.modCount; 22.32/7.27 size++; 22.32/7.27 } 22.32/7.27 }; 22.32/7.27 } 22.32/7.27 22.32/7.27 public List subList(int fromIndex, int toIndex) { 22.32/7.27 return new SubList(this, fromIndex, toIndex); 22.32/7.27 } 22.32/7.27 22.32/7.27 private void rangeCheck(int index) { 22.32/7.27 if (index < 0 || index >= size) 22.32/7.27 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.27 } 22.32/7.27 22.32/7.27 private void rangeCheckForAdd(int index) { 22.32/7.27 if (index < 0 || index > size) 22.32/7.27 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 22.32/7.27 } 22.32/7.27 22.32/7.27 private String outOfBoundsMsg(int index) { 22.32/7.27 return ""; 22.32/7.27 } 22.32/7.27 22.32/7.27 private void checkForComodification() { 22.32/7.27 if (this.modCount != l.modCount) 22.32/7.27 throw new ConcurrentModificationException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 class RandomAccessSubList extends SubList implements RandomAccess { 22.32/7.27 RandomAccessSubList(AbstractList list, int fromIndex, int toIndex) { 22.32/7.27 super(list, fromIndex, toIndex); 22.32/7.27 } 22.32/7.27 22.32/7.27 public List subList(int fromIndex, int toIndex) { 22.32/7.27 return new RandomAccessSubList(this, fromIndex, toIndex); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 22.32/7.27 /* 22.32/7.27 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.27 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.27 * 22.32/7.27 * This code is free software; you can redistribute it and/or modify it 22.32/7.27 * under the terms of the GNU General Public License version 2 only, as 22.32/7.27 * published by the Free Software Foundation. Sun designates this 22.32/7.27 * particular file as subject to the "Classpath" exception as provided 22.32/7.27 * by Sun in the LICENSE file that accompanied this code. 22.32/7.27 * 22.32/7.27 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.27 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.27 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.27 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.27 * accompanied this code). 22.32/7.27 * 22.32/7.27 * You should have received a copy of the GNU General Public License version 22.32/7.27 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.27 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.27 * 22.32/7.27 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.27 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.27 * have any questions. 22.32/7.27 */ 22.32/7.27 22.32/7.27 package javaUtilEx; 22.32/7.27 22.32/7.27 /** 22.32/7.27 * This class provides a skeletal implementation of the List 22.32/7.27 * interface to minimize the effort required to implement this interface 22.32/7.27 * backed by a "sequential access" data store (such as a linked list). For 22.32/7.27 * random access data (such as an array), AbstractList should be used 22.32/7.27 * in preference to this class.

22.32/7.27 * 22.32/7.27 * This class is the opposite of the AbstractList class in the sense 22.32/7.27 * that it implements the "random access" methods (get(int index), 22.32/7.27 * set(int index, E element), add(int index, E element) and 22.32/7.27 * remove(int index)) on top of the list's list iterator, instead of 22.32/7.27 * the other way around.

22.32/7.27 * 22.32/7.27 * To implement a list the programmer needs only to extend this class and 22.32/7.27 * provide implementations for the listIterator and size 22.32/7.27 * methods. For an unmodifiable list, the programmer need only implement the 22.32/7.27 * list iterator's hasNext, next, hasPrevious, 22.32/7.27 * previous and index methods.

22.32/7.27 * 22.32/7.27 * For a modifiable list the programmer should additionally implement the list 22.32/7.27 * iterator's set method. For a variable-size list the programmer 22.32/7.27 * should additionally implement the list iterator's remove and 22.32/7.27 * add methods.

22.32/7.27 * 22.32/7.27 * The programmer should generally provide a void (no argument) and collection 22.32/7.27 * constructor, as per the recommendation in the Collection interface 22.32/7.27 * specification.

22.32/7.27 * 22.32/7.27 * This class is a member of the 22.32/7.27 * 22.32/7.27 * Java Collections Framework. 22.32/7.27 * 22.32/7.27 * @author Josh Bloch 22.32/7.27 * @author Neal Gafter 22.32/7.27 * @see Collection 22.32/7.27 * @see List 22.32/7.27 * @see AbstractList 22.32/7.27 * @see AbstractCollection 22.32/7.27 * @since 1.2 22.32/7.27 */ 22.32/7.27 22.32/7.27 public abstract class AbstractSequentialList extends AbstractList { 22.32/7.27 /** 22.32/7.27 * Sole constructor. (For invocation by subclass constructors, typically 22.32/7.27 * implicit.) 22.32/7.27 */ 22.32/7.27 protected AbstractSequentialList() { 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Returns the element at the specified position in this list. 22.32/7.27 * 22.32/7.27 *

This implementation first gets a list iterator pointing to the 22.32/7.27 * indexed element (with listIterator(index)). Then, it gets 22.32/7.27 * the element using ListIterator.next and returns it. 22.32/7.27 * 22.32/7.27 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.27 */ 22.32/7.27 public E get(int index) { 22.32/7.27 try { 22.32/7.27 return listIterator(index).next(); 22.32/7.27 } catch (NoSuchElementException exc) { 22.32/7.27 throw new IndexOutOfBoundsException(); 22.32/7.27 } 22.32/7.27 } 22.32/7.27 22.32/7.27 /** 22.32/7.27 * Replaces the element at the specified position in this list with the 22.32/7.27 * specified element (optional operation). 22.32/7.28 * 22.32/7.28 *

This implementation first gets a list iterator pointing to the 22.32/7.28 * indexed element (with listIterator(index)). Then, it gets 22.32/7.28 * the current element using ListIterator.next and replaces it 22.32/7.28 * with ListIterator.set. 22.32/7.28 * 22.32/7.28 *

Note that this implementation will throw an 22.32/7.28 * UnsupportedOperationException if the list iterator does not 22.32/7.28 * implement the set operation. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.28 * @throws ClassCastException {@inheritDoc} 22.32/7.28 * @throws NullPointerException {@inheritDoc} 22.32/7.28 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public E set(int index, E element) { 22.32/7.28 try { 22.32/7.28 ListIterator e = listIterator(index); 22.32/7.28 E oldVal = e.next(); 22.32/7.28 e.set(element); 22.32/7.28 return oldVal; 22.32/7.28 } catch (NoSuchElementException exc) { 22.32/7.28 throw new IndexOutOfBoundsException(); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the specified position in this list 22.32/7.28 * (optional operation). Shifts the element currently at that position 22.32/7.28 * (if any) and any subsequent elements to the right (adds one to their 22.32/7.28 * indices). 22.32/7.28 * 22.32/7.28 *

This implementation first gets a list iterator pointing to the 22.32/7.28 * indexed element (with listIterator(index)). Then, it 22.32/7.28 * inserts the specified element with ListIterator.add. 22.32/7.28 * 22.32/7.28 *

Note that this implementation will throw an 22.32/7.28 * UnsupportedOperationException if the list iterator does not 22.32/7.28 * implement the add operation. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.28 * @throws ClassCastException {@inheritDoc} 22.32/7.28 * @throws NullPointerException {@inheritDoc} 22.32/7.28 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public void add(int index, E element) { 22.32/7.28 try { 22.32/7.28 listIterator(index).add(element); 22.32/7.28 } catch (NoSuchElementException exc) { 22.32/7.28 throw new IndexOutOfBoundsException(); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the element at the specified position in this list (optional 22.32/7.28 * operation). Shifts any subsequent elements to the left (subtracts one 22.32/7.28 * from their indices). Returns the element that was removed from the 22.32/7.28 * list. 22.32/7.28 * 22.32/7.28 *

This implementation first gets a list iterator pointing to the 22.32/7.28 * indexed element (with listIterator(index)). Then, it removes 22.32/7.28 * the element with ListIterator.remove. 22.32/7.28 * 22.32/7.28 *

Note that this implementation will throw an 22.32/7.28 * UnsupportedOperationException if the list iterator does not 22.32/7.28 * implement the remove operation. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public E remove(int index) { 22.32/7.28 try { 22.32/7.28 ListIterator e = listIterator(index); 22.32/7.28 E outCast = e.next(); 22.32/7.28 e.remove(); 22.32/7.28 return outCast; 22.32/7.28 } catch (NoSuchElementException exc) { 22.32/7.28 throw new IndexOutOfBoundsException(); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 // Bulk Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts all of the elements in the specified collection into this 22.32/7.28 * list at the specified position (optional operation). Shifts the 22.32/7.28 * element currently at that position (if any) and any subsequent 22.32/7.28 * elements to the right (increases their indices). The new elements 22.32/7.28 * will appear in this list in the order that they are returned by the 22.32/7.28 * specified collection's iterator. The behavior of this operation is 22.32/7.28 * undefined if the specified collection is modified while the 22.32/7.28 * operation is in progress. (Note that this will occur if the specified 22.32/7.28 * collection is this list, and it's nonempty.) 22.32/7.28 * 22.32/7.28 *

This implementation gets an iterator over the specified collection and 22.32/7.28 * a list iterator over this list pointing to the indexed element (with 22.32/7.28 * listIterator(index)). Then, it iterates over the specified 22.32/7.28 * collection, inserting the elements obtained from the iterator into this 22.32/7.28 * list, one at a time, using ListIterator.add followed by 22.32/7.28 * ListIterator.next (to skip over the added element). 22.32/7.28 * 22.32/7.28 *

Note that this implementation will throw an 22.32/7.28 * UnsupportedOperationException if the list iterator returned by 22.32/7.28 * the listIterator method does not implement the add 22.32/7.28 * operation. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException {@inheritDoc} 22.32/7.28 * @throws ClassCastException {@inheritDoc} 22.32/7.28 * @throws NullPointerException {@inheritDoc} 22.32/7.28 * @throws IllegalArgumentException {@inheritDoc} 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public boolean addAll(int index, Collection c) { 22.32/7.28 try { 22.32/7.28 boolean modified = false; 22.32/7.28 ListIterator e1 = listIterator(index); 22.32/7.28 Iterator e2 = c.iterator(); 22.32/7.28 while (e2.hasNext()) { 22.32/7.28 e1.add(e2.next()); 22.32/7.28 modified = true; 22.32/7.28 } 22.32/7.28 return modified; 22.32/7.28 } catch (NoSuchElementException exc) { 22.32/7.28 throw new IndexOutOfBoundsException(); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 // Iterators 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns an iterator over the elements in this list (in proper 22.32/7.28 * sequence).

22.32/7.28 * 22.32/7.28 * This implementation merely returns a list iterator over the list. 22.32/7.28 * 22.32/7.28 * @return an iterator over the elements in this list (in proper sequence) 22.32/7.28 */ 22.32/7.28 public Iterator iterator() { 22.32/7.28 return listIterator(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns a list iterator over the elements in this list (in proper 22.32/7.28 * sequence). 22.32/7.28 * 22.32/7.28 * @param index index of first element to be returned from the list 22.32/7.28 * iterator (by a call to the next method) 22.32/7.28 * @return a list iterator over the elements in this list (in proper 22.32/7.28 * sequence) 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public abstract ListIterator listIterator(int index); 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * The root interface in the collection hierarchy. A collection 22.32/7.28 * represents a group of objects, known as its elements. Some 22.32/7.28 * collections allow duplicate elements and others do not. Some are ordered 22.32/7.28 * and others unordered. The JDK does not provide any direct 22.32/7.28 * implementations of this interface: it provides implementations of more 22.32/7.28 * specific subinterfaces like Set and List. This interface 22.32/7.28 * is typically used to pass collections around and manipulate them where 22.32/7.28 * maximum generality is desired. 22.32/7.28 * 22.32/7.28 *

Bags or multisets (unordered collections that may contain 22.32/7.28 * duplicate elements) should implement this interface directly. 22.32/7.28 * 22.32/7.28 *

All general-purpose Collection implementation classes (which 22.32/7.28 * typically implement Collection indirectly through one of its 22.32/7.28 * subinterfaces) should provide two "standard" constructors: a void (no 22.32/7.28 * arguments) constructor, which creates an empty collection, and a 22.32/7.28 * constructor with a single argument of type Collection, which 22.32/7.28 * creates a new collection with the same elements as its argument. In 22.32/7.28 * effect, the latter constructor allows the user to copy any collection, 22.32/7.28 * producing an equivalent collection of the desired implementation type. 22.32/7.28 * There is no way to enforce this convention (as interfaces cannot contain 22.32/7.28 * constructors) but all of the general-purpose Collection 22.32/7.28 * implementations in the Java platform libraries comply. 22.32/7.28 * 22.32/7.28 *

The "destructive" methods contained in this interface, that is, the 22.32/7.28 * methods that modify the collection on which they operate, are specified to 22.32/7.28 * throw UnsupportedOperationException if this collection does not 22.32/7.28 * support the operation. If this is the case, these methods may, but are not 22.32/7.28 * required to, throw an UnsupportedOperationException if the 22.32/7.28 * invocation would have no effect on the collection. For example, invoking 22.32/7.28 * the {@link #addAll(Collection)} method on an unmodifiable collection may, 22.32/7.28 * but is not required to, throw the exception if the collection to be added 22.32/7.28 * is empty. 22.32/7.28 * 22.32/7.28 *

Some collection implementations have restrictions on the elements that 22.32/7.28 * they may contain. For example, some implementations prohibit null elements, 22.32/7.28 * and some have restrictions on the types of their elements. Attempting to 22.32/7.28 * add an ineligible element throws an unchecked exception, typically 22.32/7.28 * NullPointerException or ClassCastException. Attempting 22.32/7.28 * to query the presence of an ineligible element may throw an exception, 22.32/7.28 * or it may simply return false; some implementations will exhibit the former 22.32/7.28 * behavior and some will exhibit the latter. More generally, attempting an 22.32/7.28 * operation on an ineligible element whose completion would not result in 22.32/7.28 * the insertion of an ineligible element into the collection may throw an 22.32/7.28 * exception or it may succeed, at the option of the implementation. 22.32/7.28 * Such exceptions are marked as "optional" in the specification for this 22.32/7.28 * interface. 22.32/7.28 * 22.32/7.28 *

It is up to each collection to determine its own synchronization 22.32/7.28 * policy. In the absence of a stronger guarantee by the 22.32/7.28 * implementation, undefined behavior may result from the invocation 22.32/7.28 * of any method on a collection that is being mutated by another 22.32/7.28 * thread; this includes direct invocations, passing the collection to 22.32/7.28 * a method that might perform invocations, and using an existing 22.32/7.28 * iterator to examine the collection. 22.32/7.28 * 22.32/7.28 *

Many methods in Collections Framework interfaces are defined in 22.32/7.28 * terms of the {@link Object#equals(Object) equals} method. For example, 22.32/7.28 * the specification for the {@link #contains(Object) contains(Object o)} 22.32/7.28 * method says: "returns true if and only if this collection 22.32/7.28 * contains at least one element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e))." This specification should 22.32/7.28 * not be construed to imply that invoking Collection.contains 22.32/7.28 * with a non-null argument o will cause o.equals(e) to be 22.32/7.28 * invoked for any element e. Implementations are free to implement 22.32/7.28 * optimizations whereby the equals invocation is avoided, for 22.32/7.28 * example, by first comparing the hash codes of the two elements. (The 22.32/7.28 * {@link Object#hashCode()} specification guarantees that two objects with 22.32/7.28 * unequal hash codes cannot be equal.) More generally, implementations of 22.32/7.28 * the various Collections Framework interfaces are free to take advantage of 22.32/7.28 * the specified behavior of underlying {@link Object} methods wherever the 22.32/7.28 * implementor deems it appropriate. 22.32/7.28 * 22.32/7.28 *

This interface is a member of the 22.32/7.28 * 22.32/7.28 * Java Collections Framework. 22.32/7.28 * 22.32/7.28 * @author Josh Bloch 22.32/7.28 * @author Neal Gafter 22.32/7.28 * @see Set 22.32/7.28 * @see List 22.32/7.28 * @see Map 22.32/7.28 * @see SortedSet 22.32/7.28 * @see SortedMap 22.32/7.28 * @see HashSet 22.32/7.28 * @see TreeSet 22.32/7.28 * @see ArrayList 22.32/7.28 * @see LinkedList 22.32/7.28 * @see Vector 22.32/7.28 * @see Collections 22.32/7.28 * @see Arrays 22.32/7.28 * @see AbstractCollection 22.32/7.28 * @since 1.2 22.32/7.28 */ 22.32/7.28 22.32/7.28 public interface Collection { 22.32/7.28 // Query Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the number of elements in this collection. If this collection 22.32/7.28 * contains more than Integer.MAX_VALUE elements, returns 22.32/7.28 * Integer.MAX_VALUE. 22.32/7.28 * 22.32/7.28 * @return the number of elements in this collection 22.32/7.28 */ 22.32/7.28 int size(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns true if this collection contains no elements. 22.32/7.28 * 22.32/7.28 * @return true if this collection contains no elements 22.32/7.28 */ 22.32/7.28 boolean isEmpty(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns true if this collection contains the specified element. 22.32/7.28 * More formally, returns true if and only if this collection 22.32/7.28 * contains at least one element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)). 22.32/7.28 * 22.32/7.28 * @param o element whose presence in this collection is to be tested 22.32/7.28 * @return true if this collection contains the specified 22.32/7.28 * element 22.32/7.28 * @throws ClassCastException if the type of the specified element 22.32/7.28 * is incompatible with this collection (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * collection does not permit null elements (optional) 22.32/7.28 */ 22.32/7.28 boolean contains(Object o); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns an iterator over the elements in this collection. There are no 22.32/7.28 * guarantees concerning the order in which the elements are returned 22.32/7.28 * (unless this collection is an instance of some class that provides a 22.32/7.28 * guarantee). 22.32/7.28 * 22.32/7.28 * @return an Iterator over the elements in this collection 22.32/7.28 */ 22.32/7.28 Iterator iterator(); 22.32/7.28 22.32/7.28 // Modification Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Ensures that this collection contains the specified element (optional 22.32/7.28 * operation). Returns true if this collection changed as a 22.32/7.28 * result of the call. (Returns false if this collection does 22.32/7.28 * not permit duplicates and already contains the specified element.)

22.32/7.28 * 22.32/7.28 * Collections that support this operation may place limitations on what 22.32/7.28 * elements may be added to this collection. In particular, some 22.32/7.28 * collections will refuse to add null elements, and others will 22.32/7.28 * impose restrictions on the type of elements that may be added. 22.32/7.28 * Collection classes should clearly specify in their documentation any 22.32/7.28 * restrictions on what elements may be added.

22.32/7.28 * 22.32/7.28 * If a collection refuses to add a particular element for any reason 22.32/7.28 * other than that it already contains the element, it must throw 22.32/7.28 * an exception (rather than returning false). This preserves 22.32/7.28 * the invariant that a collection always contains the specified element 22.32/7.28 * after this call returns. 22.32/7.28 * 22.32/7.28 * @param e element whose presence in this collection is to be ensured 22.32/7.28 * @return true if this collection changed as a result of the 22.32/7.28 * call 22.32/7.28 * @throws UnsupportedOperationException if the add operation 22.32/7.28 * is not supported by this collection 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this collection 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * collection does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the element 22.32/7.28 * prevents it from being added to this collection 22.32/7.28 * @throws IllegalStateException if the element cannot be added at this 22.32/7.28 * time due to insertion restrictions 22.32/7.28 */ 22.32/7.28 boolean add(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes a single instance of the specified element from this 22.32/7.28 * collection, if it is present (optional operation). More formally, 22.32/7.28 * removes an element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)), if 22.32/7.28 * this collection contains one or more such elements. Returns 22.32/7.28 * true if this collection contained the specified element (or 22.32/7.28 * equivalently, if this collection changed as a result of the call). 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this collection, if present 22.32/7.28 * @return true if an element was removed as a result of this call 22.32/7.28 * @throws ClassCastException if the type of the specified element 22.32/7.28 * is incompatible with this collection (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * collection does not permit null elements (optional) 22.32/7.28 * @throws UnsupportedOperationException if the remove operation 22.32/7.28 * is not supported by this collection 22.32/7.28 */ 22.32/7.28 boolean remove(Object o); 22.32/7.28 22.32/7.28 22.32/7.28 // Bulk Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns true if this collection contains all of the elements 22.32/7.28 * in the specified collection. 22.32/7.28 * 22.32/7.28 * @param c collection to be checked for containment in this collection 22.32/7.28 * @return true if this collection contains all of the elements 22.32/7.28 * in the specified collection 22.32/7.28 * @throws ClassCastException if the types of one or more elements 22.32/7.28 * in the specified collection are incompatible with this 22.32/7.28 * collection (optional) 22.32/7.28 * @throws NullPointerException if the specified collection contains one 22.32/7.28 * or more null elements and this collection does not permit null 22.32/7.28 * elements (optional), or if the specified collection is null 22.32/7.28 * @see #contains(Object) 22.32/7.28 */ 22.32/7.28 boolean containsAll(Collection c); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Adds all of the elements in the specified collection to this collection 22.32/7.28 * (optional operation). The behavior of this operation is undefined if 22.32/7.28 * the specified collection is modified while the operation is in progress. 22.32/7.28 * (This implies that the behavior of this call is undefined if the 22.32/7.28 * specified collection is this collection, and this collection is 22.32/7.28 * nonempty.) 22.32/7.28 * 22.32/7.28 * @param c collection containing elements to be added to this collection 22.32/7.28 * @return true if this collection changed as a result of the call 22.32/7.28 * @throws UnsupportedOperationException if the addAll operation 22.32/7.28 * is not supported by this collection 22.32/7.28 * @throws ClassCastException if the class of an element of the specified 22.32/7.28 * collection prevents it from being added to this collection 22.32/7.28 * @throws NullPointerException if the specified collection contains a 22.32/7.28 * null element and this collection does not permit null elements, 22.32/7.28 * or if the specified collection is null 22.32/7.28 * @throws IllegalArgumentException if some property of an element of the 22.32/7.28 * specified collection prevents it from being added to this 22.32/7.28 * collection 22.32/7.28 * @throws IllegalStateException if not all the elements can be added at 22.32/7.28 * this time due to insertion restrictions 22.32/7.28 * @see #add(Object) 22.32/7.28 */ 22.32/7.28 boolean addAll(Collection c); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes all of this collection's elements that are also contained in the 22.32/7.28 * specified collection (optional operation). After this call returns, 22.32/7.28 * this collection will contain no elements in common with the specified 22.32/7.28 * collection. 22.32/7.28 * 22.32/7.28 * @param c collection containing elements to be removed from this collection 22.32/7.28 * @return true if this collection changed as a result of the 22.32/7.28 * call 22.32/7.28 * @throws UnsupportedOperationException if the removeAll method 22.32/7.28 * is not supported by this collection 22.32/7.28 * @throws ClassCastException if the types of one or more elements 22.32/7.28 * in this collection are incompatible with the specified 22.32/7.28 * collection (optional) 22.32/7.28 * @throws NullPointerException if this collection contains one or more 22.32/7.28 * null elements and the specified collection does not support 22.32/7.28 * null elements (optional), or if the specified collection is null 22.32/7.28 * @see #remove(Object) 22.32/7.28 * @see #contains(Object) 22.32/7.28 */ 22.32/7.28 boolean removeAll(Collection c); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retains only the elements in this collection that are contained in the 22.32/7.28 * specified collection (optional operation). In other words, removes from 22.32/7.28 * this collection all of its elements that are not contained in the 22.32/7.28 * specified collection. 22.32/7.28 * 22.32/7.28 * @param c collection containing elements to be retained in this collection 22.32/7.28 * @return true if this collection changed as a result of the call 22.32/7.28 * @throws UnsupportedOperationException if the retainAll operation 22.32/7.28 * is not supported by this collection 22.32/7.28 * @throws ClassCastException if the types of one or more elements 22.32/7.28 * in this collection are incompatible with the specified 22.32/7.28 * collection (optional) 22.32/7.28 * @throws NullPointerException if this collection contains one or more 22.32/7.28 * null elements and the specified collection does not permit null 22.32/7.28 * elements (optional), or if the specified collection is null 22.32/7.28 * @see #remove(Object) 22.32/7.28 * @see #contains(Object) 22.32/7.28 */ 22.32/7.28 boolean retainAll(Collection c); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes all of the elements from this collection (optional operation). 22.32/7.28 * The collection will be empty after this method returns. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException if the clear operation 22.32/7.28 * is not supported by this collection 22.32/7.28 */ 22.32/7.28 void clear(); 22.32/7.28 22.32/7.28 22.32/7.28 // Comparison and hashing 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Compares the specified object with this collection for equality.

22.32/7.28 * 22.32/7.28 * While the Collection interface adds no stipulations to the 22.32/7.28 * general contract for the Object.equals, programmers who 22.32/7.28 * implement the Collection interface "directly" (in other words, 22.32/7.28 * create a class that is a Collection but is not a Set 22.32/7.28 * or a List) must exercise care if they choose to override the 22.32/7.28 * Object.equals. It is not necessary to do so, and the simplest 22.32/7.28 * course of action is to rely on Object's implementation, but 22.32/7.28 * the implementor may wish to implement a "value comparison" in place of 22.32/7.28 * the default "reference comparison." (The List and 22.32/7.28 * Set interfaces mandate such value comparisons.)

22.32/7.28 * 22.32/7.28 * The general contract for the Object.equals method states that 22.32/7.28 * equals must be symmetric (in other words, a.equals(b) if and 22.32/7.28 * only if b.equals(a)). The contracts for List.equals 22.32/7.28 * and Set.equals state that lists are only equal to other lists, 22.32/7.28 * and sets to other sets. Thus, a custom equals method for a 22.32/7.28 * collection class that implements neither the List nor 22.32/7.28 * Set interface must return false when this collection 22.32/7.28 * is compared to any list or set. (By the same logic, it is not possible 22.32/7.28 * to write a class that correctly implements both the Set and 22.32/7.28 * List interfaces.) 22.32/7.28 * 22.32/7.28 * @param o object to be compared for equality with this collection 22.32/7.28 * @return true if the specified object is equal to this 22.32/7.28 * collection 22.32/7.28 * 22.32/7.28 * @see Object#equals(Object) 22.32/7.28 * @see Set#equals(Object) 22.32/7.28 * @see List#equals(Object) 22.32/7.28 */ 22.32/7.28 boolean equals(Object o); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the hash code value for this collection. While the 22.32/7.28 * Collection interface adds no stipulations to the general 22.32/7.28 * contract for the Object.hashCode method, programmers should 22.32/7.28 * take note that any class that overrides the Object.equals 22.32/7.28 * method must also override the Object.hashCode method in order 22.32/7.28 * to satisfy the general contract for the Object.hashCodemethod. 22.32/7.28 * In particular, c1.equals(c2) implies that 22.32/7.28 * c1.hashCode()==c2.hashCode(). 22.32/7.28 * 22.32/7.28 * @return the hash code value for this collection 22.32/7.28 * 22.32/7.28 * @see Object#hashCode() 22.32/7.28 * @see Object#equals(Object) 22.32/7.28 */ 22.32/7.28 int hashCode(); 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * This exception may be thrown by methods that have detected concurrent 22.32/7.28 * modification of an object when such modification is not permissible. 22.32/7.28 *

22.32/7.28 * For example, it is not generally permissible for one thread to modify a Collection 22.32/7.28 * while another thread is iterating over it. In general, the results of the 22.32/7.28 * iteration are undefined under these circumstances. Some Iterator 22.32/7.28 * implementations (including those of all the general purpose collection implementations 22.32/7.28 * provided by the JRE) may choose to throw this exception if this behavior is 22.32/7.28 * detected. Iterators that do this are known as fail-fast iterators, 22.32/7.28 * as they fail quickly and cleanly, rather that risking arbitrary, 22.32/7.28 * non-deterministic behavior at an undetermined time in the future. 22.32/7.28 *

22.32/7.28 * Note that this exception does not always indicate that an object has 22.32/7.28 * been concurrently modified by a different thread. If a single 22.32/7.28 * thread issues a sequence of method invocations that violates the 22.32/7.28 * contract of an object, the object may throw this exception. For 22.32/7.28 * example, if a thread modifies a collection directly while it is 22.32/7.28 * iterating over the collection with a fail-fast iterator, the iterator 22.32/7.28 * will throw this exception. 22.32/7.28 * 22.32/7.28 *

Note that fail-fast behavior cannot be guaranteed as it is, generally 22.32/7.28 * speaking, impossible to make any hard guarantees in the presence of 22.32/7.28 * unsynchronized concurrent modification. Fail-fast operations 22.32/7.28 * throw ConcurrentModificationException on a best-effort basis. 22.32/7.28 * Therefore, it would be wrong to write a program that depended on this 22.32/7.28 * exception for its correctness: ConcurrentModificationException 22.32/7.28 * should be used only to detect bugs. 22.32/7.28 * 22.32/7.28 * @author Josh Bloch 22.32/7.28 * @see Collection 22.32/7.28 * @see Iterator 22.32/7.28 * @see ListIterator 22.32/7.28 * @see Vector 22.32/7.28 * @see LinkedList 22.32/7.28 * @see HashSet 22.32/7.28 * @see Hashtable 22.32/7.28 * @see TreeMap 22.32/7.28 * @see AbstractList 22.32/7.28 * @since 1.2 22.32/7.28 */ 22.32/7.28 public class ConcurrentModificationException extends RuntimeException { 22.32/7.28 /** 22.32/7.28 * Constructs a ConcurrentModificationException with no 22.32/7.28 * detail message. 22.32/7.28 */ 22.32/7.28 public ConcurrentModificationException() { 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a ConcurrentModificationException with the 22.32/7.28 * specified detail message. 22.32/7.28 * 22.32/7.28 * @param message the detail message pertaining to this exception. 22.32/7.28 */ 22.32/7.28 public ConcurrentModificationException(String message) { 22.32/7.28 super(message); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 /* 22.32/7.28 * This file is available under and governed by the GNU General Public 22.32/7.28 * License version 2 only, as published by the Free Software Foundation. 22.32/7.28 * However, the following notice accompanied the original version of this 22.32/7.28 * file: 22.32/7.28 * 22.32/7.28 * Written by Doug Lea and Josh Bloch with assistance from members of 22.32/7.28 * JCP JSR-166 Expert Group and released to the public domain, as explained 22.32/7.28 * at http://creativecommons.org/licenses/publicdomain 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * A linear collection that supports element insertion and removal at 22.32/7.28 * both ends. The name deque is short for "double ended queue" 22.32/7.28 * and is usually pronounced "deck". Most Deque 22.32/7.28 * implementations place no fixed limits on the number of elements 22.32/7.28 * they may contain, but this interface supports capacity-restricted 22.32/7.28 * deques as well as those with no fixed size limit. 22.32/7.28 * 22.32/7.28 *

This interface defines methods to access the elements at both 22.32/7.28 * ends of the deque. Methods are provided to insert, remove, and 22.32/7.28 * examine the element. Each of these methods exists in two forms: 22.32/7.28 * one throws an exception if the operation fails, the other returns a 22.32/7.28 * special value (either null or false, depending on 22.32/7.28 * the operation). The latter form of the insert operation is 22.32/7.28 * designed specifically for use with capacity-restricted 22.32/7.28 * Deque implementations; in most implementations, insert 22.32/7.28 * operations cannot fail. 22.32/7.28 * 22.32/7.28 *

The twelve methods described above are summarized in the 22.32/7.28 * following table: 22.32/7.28 * 22.32/7.28 *

22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 *
First Element (Head) Last Element (Tail)
Throws exceptionSpecial valueThrows exceptionSpecial value
Insert{@link #addFirst addFirst(e)}{@link #offerFirst offerFirst(e)}{@link #addLast addLast(e)}{@link #offerLast offerLast(e)}
Remove{@link #removeFirst removeFirst()}{@link #pollFirst pollFirst()}{@link #removeLast removeLast()}{@link #pollLast pollLast()}
Examine{@link #getFirst getFirst()}{@link #peekFirst peekFirst()}{@link #getLast getLast()}{@link #peekLast peekLast()}
22.32/7.28 * 22.32/7.28 *

This interface extends the {@link Queue} interface. When a deque is 22.32/7.28 * used as a queue, FIFO (First-In-First-Out) behavior results. Elements are 22.32/7.28 * added at the end of the deque and removed from the beginning. The methods 22.32/7.28 * inherited from the Queue interface are precisely equivalent to 22.32/7.28 * Deque methods as indicated in the following table: 22.32/7.28 * 22.32/7.28 *

22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 *
Queue Method Equivalent Deque Method
{@link java.util.Queue#add add(e)}{@link #addLast addLast(e)}
{@link java.util.Queue#offer offer(e)}{@link #offerLast offerLast(e)}
{@link java.util.Queue#remove remove()}{@link #removeFirst removeFirst()}
{@link java.util.Queue#poll poll()}{@link #pollFirst pollFirst()}
{@link java.util.Queue#element element()}{@link #getFirst getFirst()}
{@link java.util.Queue#peek peek()}{@link #peek peekFirst()}
22.32/7.28 * 22.32/7.28 *

Deques can also be used as LIFO (Last-In-First-Out) stacks. This 22.32/7.28 * interface should be used in preference to the legacy {@link Stack} class. 22.32/7.28 * When a deque is used as a stack, elements are pushed and popped from the 22.32/7.28 * beginning of the deque. Stack methods are precisely equivalent to 22.32/7.28 * Deque methods as indicated in the table below: 22.32/7.28 * 22.32/7.28 *

22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 * 22.32/7.28 *
Stack Method Equivalent Deque Method
{@link #push push(e)}{@link #addFirst addFirst(e)}
{@link #pop pop()}{@link #removeFirst removeFirst()}
{@link #peek peek()}{@link #peekFirst peekFirst()}
22.32/7.28 * 22.32/7.28 *

Note that the {@link #peek peek} method works equally well when 22.32/7.28 * a deque is used as a queue or a stack; in either case, elements are 22.32/7.28 * drawn from the beginning of the deque. 22.32/7.28 * 22.32/7.28 *

This interface provides two methods to remove interior 22.32/7.28 * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and 22.32/7.28 * {@link #removeLastOccurrence removeLastOccurrence}. 22.32/7.28 * 22.32/7.28 *

Unlike the {@link List} interface, this interface does not 22.32/7.28 * provide support for indexed access to elements. 22.32/7.28 * 22.32/7.28 *

While Deque implementations are not strictly required 22.32/7.28 * to prohibit the insertion of null elements, they are strongly 22.32/7.28 * encouraged to do so. Users of any Deque implementations 22.32/7.28 * that do allow null elements are strongly encouraged not to 22.32/7.28 * take advantage of the ability to insert nulls. This is so because 22.32/7.28 * null is used as a special return value by various methods 22.32/7.28 * to indicated that the deque is empty. 22.32/7.28 * 22.32/7.28 *

Deque implementations generally do not define 22.32/7.28 * element-based versions of the equals and hashCode 22.32/7.28 * methods, but instead inherit the identity-based versions from class 22.32/7.28 * Object. 22.32/7.28 * 22.32/7.28 *

This interface is a member of the Java Collections 22.32/7.28 * Framework. 22.32/7.28 * 22.32/7.28 * @author Doug Lea 22.32/7.28 * @author Josh Bloch 22.32/7.28 * @since 1.6 22.32/7.28 * @param the type of elements held in this collection 22.32/7.28 */ 22.32/7.28 22.32/7.28 public interface Deque extends Queue { 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the front of this deque if it is 22.32/7.28 * possible to do so immediately without violating capacity restrictions. 22.32/7.28 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.28 * use method {@link #offerFirst}. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @throws IllegalStateException if the element cannot be added at this 22.32/7.28 * time due to capacity restrictions 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 void addFirst(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the end of this deque if it is 22.32/7.28 * possible to do so immediately without violating capacity restrictions. 22.32/7.28 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.28 * use method {@link #offerLast}. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #add}. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @throws IllegalStateException if the element cannot be added at this 22.32/7.28 * time due to capacity restrictions 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 void addLast(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the front of this deque unless it would 22.32/7.28 * violate capacity restrictions. When using a capacity-restricted deque, 22.32/7.28 * this method is generally preferable to the {@link #addFirst} method, 22.32/7.28 * which can fail to insert an element only by throwing an exception. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @return true if the element was added to this deque, else 22.32/7.28 * false 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 boolean offerFirst(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the end of this deque unless it would 22.32/7.28 * violate capacity restrictions. When using a capacity-restricted deque, 22.32/7.28 * this method is generally preferable to the {@link #addLast} method, 22.32/7.28 * which can fail to insert an element only by throwing an exception. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @return true if the element was added to this deque, else 22.32/7.28 * false 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 boolean offerLast(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the first element of this deque. This method 22.32/7.28 * differs from {@link #pollFirst pollFirst} only in that it throws an 22.32/7.28 * exception if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the head of this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E removeFirst(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the last element of this deque. This method 22.32/7.28 * differs from {@link #pollLast pollLast} only in that it throws an 22.32/7.28 * exception if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the tail of this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E removeLast(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the first element of this deque, 22.32/7.28 * or returns null if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the head of this deque, or null if this deque is empty 22.32/7.28 */ 22.32/7.28 E pollFirst(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the last element of this deque, 22.32/7.28 * or returns null if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the tail of this deque, or null if this deque is empty 22.32/7.28 */ 22.32/7.28 E pollLast(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the first element of this deque. 22.32/7.28 * 22.32/7.28 * This method differs from {@link #peekFirst peekFirst} only in that it 22.32/7.28 * throws an exception if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the head of this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E getFirst(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the last element of this deque. 22.32/7.28 * This method differs from {@link #peekLast peekLast} only in that it 22.32/7.28 * throws an exception if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the tail of this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E getLast(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the first element of this deque, 22.32/7.28 * or returns null if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the head of this deque, or null if this deque is empty 22.32/7.28 */ 22.32/7.28 E peekFirst(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the last element of this deque, 22.32/7.28 * or returns null if this deque is empty. 22.32/7.28 * 22.32/7.28 * @return the tail of this deque, or null if this deque is empty 22.32/7.28 */ 22.32/7.28 E peekLast(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the first occurrence of the specified element from this deque. 22.32/7.28 * If the deque does not contain the element, it is unchanged. 22.32/7.28 * More formally, removes the first element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)) 22.32/7.28 * (if such an element exists). 22.32/7.28 * Returns true if this deque contained the specified element 22.32/7.28 * (or equivalently, if this deque changed as a result of the call). 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this deque, if present 22.32/7.28 * @return true if an element was removed as a result of this call 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * is incompatible with this deque (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements (optional) 22.32/7.28 */ 22.32/7.28 boolean removeFirstOccurrence(Object o); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the last occurrence of the specified element from this deque. 22.32/7.28 * If the deque does not contain the element, it is unchanged. 22.32/7.28 * More formally, removes the last element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)) 22.32/7.28 * (if such an element exists). 22.32/7.28 * Returns true if this deque contained the specified element 22.32/7.28 * (or equivalently, if this deque changed as a result of the call). 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this deque, if present 22.32/7.28 * @return true if an element was removed as a result of this call 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * is incompatible with this deque (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements (optional) 22.32/7.28 */ 22.32/7.28 boolean removeLastOccurrence(Object o); 22.32/7.28 22.32/7.28 // *** Queue methods *** 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element into the queue represented by this deque 22.32/7.28 * (in other words, at the tail of this deque) if it is possible to do so 22.32/7.28 * immediately without violating capacity restrictions, returning 22.32/7.28 * true upon success and throwing an 22.32/7.28 * IllegalStateException if no space is currently available. 22.32/7.28 * When using a capacity-restricted deque, it is generally preferable to 22.32/7.28 * use {@link #offer(Object) offer}. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #addLast}. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @return true (as specified by {@link Collection#add}) 22.32/7.28 * @throws IllegalStateException if the element cannot be added at this 22.32/7.28 * time due to capacity restrictions 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 boolean add(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element into the queue represented by this deque 22.32/7.28 * (in other words, at the tail of this deque) if it is possible to do so 22.32/7.28 * immediately without violating capacity restrictions, returning 22.32/7.28 * true upon success and false if no space is currently 22.32/7.28 * available. When using a capacity-restricted deque, this method is 22.32/7.28 * generally preferable to the {@link #add} method, which can fail to 22.32/7.28 * insert an element only by throwing an exception. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #offerLast}. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @return true if the element was added to this deque, else 22.32/7.28 * false 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 boolean offer(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the head of the queue represented by this deque 22.32/7.28 * (in other words, the first element of this deque). 22.32/7.28 * This method differs from {@link #poll poll} only in that it throws an 22.32/7.28 * exception if this deque is empty. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.28 * 22.32/7.28 * @return the head of the queue represented by this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E remove(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the head of the queue represented by this deque 22.32/7.28 * (in other words, the first element of this deque), or returns 22.32/7.28 * null if this deque is empty. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #pollFirst()}. 22.32/7.28 * 22.32/7.28 * @return the first element of this deque, or null if 22.32/7.28 * this deque is empty 22.32/7.28 */ 22.32/7.28 E poll(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the head of the queue represented by 22.32/7.28 * this deque (in other words, the first element of this deque). 22.32/7.28 * This method differs from {@link #peek peek} only in that it throws an 22.32/7.28 * exception if this deque is empty. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #getFirst()}. 22.32/7.28 * 22.32/7.28 * @return the head of the queue represented by this deque 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E element(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the head of the queue represented by 22.32/7.28 * this deque (in other words, the first element of this deque), or 22.32/7.28 * returns null if this deque is empty. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #peekFirst()}. 22.32/7.28 * 22.32/7.28 * @return the head of the queue represented by this deque, or 22.32/7.28 * null if this deque is empty 22.32/7.28 */ 22.32/7.28 E peek(); 22.32/7.28 22.32/7.28 22.32/7.28 // *** Stack methods *** 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Pushes an element onto the stack represented by this deque (in other 22.32/7.28 * words, at the head of this deque) if it is possible to do so 22.32/7.28 * immediately without violating capacity restrictions, returning 22.32/7.28 * true upon success and throwing an 22.32/7.28 * IllegalStateException if no space is currently available. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #addFirst}. 22.32/7.28 * 22.32/7.28 * @param e the element to push 22.32/7.28 * @throws IllegalStateException if the element cannot be added at this 22.32/7.28 * time due to capacity restrictions 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * prevents it from being added to this deque 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements 22.32/7.28 * @throws IllegalArgumentException if some property of the specified 22.32/7.28 * element prevents it from being added to this deque 22.32/7.28 */ 22.32/7.28 void push(E e); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Pops an element from the stack represented by this deque. In other 22.32/7.28 * words, removes and returns the first element of this deque. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.28 * 22.32/7.28 * @return the element at the front of this deque (which is the top 22.32/7.28 * of the stack represented by this deque) 22.32/7.28 * @throws NoSuchElementException if this deque is empty 22.32/7.28 */ 22.32/7.28 E pop(); 22.32/7.28 22.32/7.28 22.32/7.28 // *** Collection methods *** 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the first occurrence of the specified element from this deque. 22.32/7.28 * If the deque does not contain the element, it is unchanged. 22.32/7.28 * More formally, removes the first element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)) 22.32/7.28 * (if such an element exists). 22.32/7.28 * Returns true if this deque contained the specified element 22.32/7.28 * (or equivalently, if this deque changed as a result of the call). 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #removeFirstOccurrence}. 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this deque, if present 22.32/7.28 * @return true if an element was removed as a result of this call 22.32/7.28 * @throws ClassCastException if the class of the specified element 22.32/7.28 * is incompatible with this deque (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements (optional) 22.32/7.28 */ 22.32/7.28 boolean remove(Object o); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns true if this deque contains the specified element. 22.32/7.28 * More formally, returns true if and only if this deque contains 22.32/7.28 * at least one element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)). 22.32/7.28 * 22.32/7.28 * @param o element whose presence in this deque is to be tested 22.32/7.28 * @return true if this deque contains the specified element 22.32/7.28 * @throws ClassCastException if the type of the specified element 22.32/7.28 * is incompatible with this deque (optional) 22.32/7.28 * @throws NullPointerException if the specified element is null and this 22.32/7.28 * deque does not permit null elements (optional) 22.32/7.28 */ 22.32/7.28 boolean contains(Object o); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the number of elements in this deque. 22.32/7.28 * 22.32/7.28 * @return the number of elements in this deque 22.32/7.28 */ 22.32/7.28 public int size(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns an iterator over the elements in this deque in proper sequence. 22.32/7.28 * The elements will be returned in order from first (head) to last (tail). 22.32/7.28 * 22.32/7.28 * @return an iterator over the elements in this deque in proper sequence 22.32/7.28 */ 22.32/7.28 Iterator iterator(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns an iterator over the elements in this deque in reverse 22.32/7.28 * sequential order. The elements will be returned in order from 22.32/7.28 * last (tail) to first (head). 22.32/7.28 * 22.32/7.28 * @return an iterator over the elements in this deque in reverse 22.32/7.28 * sequence 22.32/7.28 */ 22.32/7.28 Iterator descendingIterator(); 22.32/7.28 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Thrown to indicate that a method has been passed an illegal or 22.32/7.28 * inappropriate argument. 22.32/7.28 * 22.32/7.28 * @author unascribed 22.32/7.28 * @see java.lang.Thread#setPriority(int) 22.32/7.28 * @since JDK1.0 22.32/7.28 */ 22.32/7.28 public 22.32/7.28 class IllegalArgumentException extends RuntimeException { 22.32/7.28 /** 22.32/7.28 * Constructs an IllegalArgumentException with no 22.32/7.28 * detail message. 22.32/7.28 */ 22.32/7.28 public IllegalArgumentException() { 22.32/7.28 super(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs an IllegalArgumentException with the 22.32/7.28 * specified detail message. 22.32/7.28 * 22.32/7.28 * @param s the detail message. 22.32/7.28 */ 22.32/7.28 public IllegalArgumentException(String s) { 22.32/7.28 super(s); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a new exception with the specified detail message and 22.32/7.28 * cause. 22.32/7.28 * 22.32/7.28 *

Note that the detail message associated with cause is 22.32/7.28 * not automatically incorporated in this exception's detail 22.32/7.28 * message. 22.32/7.28 * 22.32/7.28 * @param message the detail message (which is saved for later retrieval 22.32/7.28 * by the {@link Throwable#getMessage()} method). 22.32/7.28 * @param cause the cause (which is saved for later retrieval by the 22.32/7.28 * {@link Throwable#getCause()} method). (A null value 22.32/7.28 * is permitted, and indicates that the cause is nonexistent or 22.32/7.28 * unknown.) 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public IllegalArgumentException(String message, Throwable cause) { 22.32/7.28 super(message, cause); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a new exception with the specified cause and a detail 22.32/7.28 * message of (cause==null ? null : cause.toString()) (which 22.32/7.28 * typically contains the class and detail message of cause). 22.32/7.28 * This constructor is useful for exceptions that are little more than 22.32/7.28 * wrappers for other throwables (for example, {@link 22.32/7.28 * java.security.PrivilegedActionException}). 22.32/7.28 * 22.32/7.28 * @param cause the cause (which is saved for later retrieval by the 22.32/7.28 * {@link Throwable#getCause()} method). (A null value is 22.32/7.28 * permitted, and indicates that the cause is nonexistent or 22.32/7.28 * unknown.) 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public IllegalArgumentException(Throwable cause) { 22.32/7.28 super(cause); 22.32/7.28 } 22.32/7.28 22.32/7.28 private static final long serialVersionUID = -5365630128856068164L; 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Signals that a method has been invoked at an illegal or 22.32/7.28 * inappropriate time. In other words, the Java environment or 22.32/7.28 * Java application is not in an appropriate state for the requested 22.32/7.28 * operation. 22.32/7.28 * 22.32/7.28 * @author Jonni Kanerva 22.32/7.28 * @since JDK1.1 22.32/7.28 */ 22.32/7.28 public 22.32/7.28 class IllegalStateException extends RuntimeException { 22.32/7.28 /** 22.32/7.28 * Constructs an IllegalStateException with no detail message. 22.32/7.28 * A detail message is a String that describes this particular exception. 22.32/7.28 */ 22.32/7.28 public IllegalStateException() { 22.32/7.28 super(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs an IllegalStateException with the specified detail 22.32/7.28 * message. A detail message is a String that describes this particular 22.32/7.28 * exception. 22.32/7.28 * 22.32/7.28 * @param s the String that contains a detailed message 22.32/7.28 */ 22.32/7.28 public IllegalStateException(String s) { 22.32/7.28 super(s); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a new exception with the specified detail message and 22.32/7.28 * cause. 22.32/7.28 * 22.32/7.28 *

Note that the detail message associated with cause is 22.32/7.28 * not automatically incorporated in this exception's detail 22.32/7.28 * message. 22.32/7.28 * 22.32/7.28 * @param message the detail message (which is saved for later retrieval 22.32/7.28 * by the {@link Throwable#getMessage()} method). 22.32/7.28 * @param cause the cause (which is saved for later retrieval by the 22.32/7.28 * {@link Throwable#getCause()} method). (A null value 22.32/7.28 * is permitted, and indicates that the cause is nonexistent or 22.32/7.28 * unknown.) 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public IllegalStateException(String message, Throwable cause) { 22.32/7.28 super(message, cause); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a new exception with the specified cause and a detail 22.32/7.28 * message of (cause==null ? null : cause.toString()) (which 22.32/7.28 * typically contains the class and detail message of cause). 22.32/7.28 * This constructor is useful for exceptions that are little more than 22.32/7.28 * wrappers for other throwables (for example, {@link 22.32/7.28 * java.security.PrivilegedActionException}). 22.32/7.28 * 22.32/7.28 * @param cause the cause (which is saved for later retrieval by the 22.32/7.28 * {@link Throwable#getCause()} method). (A null value is 22.32/7.28 * permitted, and indicates that the cause is nonexistent or 22.32/7.28 * unknown.) 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public IllegalStateException(Throwable cause) { 22.32/7.28 super(cause); 22.32/7.28 } 22.32/7.28 22.32/7.28 static final long serialVersionUID = -1848914673093119416L; 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * An iterator over a collection. {@code Iterator} takes the place of 22.32/7.28 * {@link Enumeration} in the Java Collections Framework. Iterators 22.32/7.28 * differ from enumerations in two ways: 22.32/7.28 * 22.32/7.28 *

22.32/7.28 * 22.32/7.28 *

This interface is a member of the 22.32/7.28 * 22.32/7.28 * Java Collections Framework. 22.32/7.28 * 22.32/7.28 * @author Josh Bloch 22.32/7.28 * @see Collection 22.32/7.28 * @see ListIterator 22.32/7.28 * @see Iterable 22.32/7.28 * @since 1.2 22.32/7.28 */ 22.32/7.28 public interface Iterator { 22.32/7.28 /** 22.32/7.28 * Returns {@code true} if the iteration has more elements. 22.32/7.28 * (In other words, returns {@code true} if {@link #next} would 22.32/7.28 * return an element rather than throwing an exception.) 22.32/7.28 * 22.32/7.28 * @return {@code true} if the iteration has more elements 22.32/7.28 */ 22.32/7.28 boolean hasNext(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the next element in the iteration. 22.32/7.28 * 22.32/7.28 * @return the next element in the iteration 22.32/7.28 * @throws NoSuchElementException if the iteration has no more elements 22.32/7.28 */ 22.32/7.28 E next(); 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes from the underlying collection the last element returned 22.32/7.28 * by this iterator (optional operation). This method can be called 22.32/7.28 * only once per call to {@link #next}. The behavior of an iterator 22.32/7.28 * is unspecified if the underlying collection is modified while the 22.32/7.28 * iteration is in progress in any way other than by calling this 22.32/7.28 * method. 22.32/7.28 * 22.32/7.28 * @throws UnsupportedOperationException if the {@code remove} 22.32/7.28 * operation is not supported by this iterator 22.32/7.28 * 22.32/7.28 * @throws IllegalStateException if the {@code next} method has not 22.32/7.28 * yet been called, or the {@code remove} method has already 22.32/7.28 * been called after the last call to the {@code next} 22.32/7.28 * method 22.32/7.28 */ 22.32/7.28 void remove(); 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 public class juLinkedListCreateListIteratorLoop { 22.32/7.28 public static void main(String[] args) { 22.32/7.28 Random.args = args; 22.32/7.28 22.32/7.28 LinkedList l = createList(Random.random()); 22.32/7.28 ListIterator it = l.listIterator(); 22.32/7.28 while (it.hasNext()) { 22.32/7.28 it.next(); 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 public static LinkedList createList(int n) { 22.32/7.28 LinkedList l = new LinkedList(); 22.32/7.28 while (n > 0) { 22.32/7.28 l.addLast(new Content(Random.random())); 22.32/7.28 n--; 22.32/7.28 } 22.32/7.28 return l; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 final class Content { 22.32/7.28 int val; 22.32/7.28 22.32/7.28 public Content(int v) { 22.32/7.28 this.val = v; 22.32/7.28 } 22.32/7.28 22.32/7.28 public int hashCode() { 22.32/7.28 return val^31; 22.32/7.28 } 22.32/7.28 22.32/7.28 public boolean equals(Object o) { 22.32/7.28 if (o instanceof Content) { 22.32/7.28 return this.val == ((Content) o).val; 22.32/7.28 } 22.32/7.28 return false; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 /* 22.32/7.28 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.28 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.28 * 22.32/7.28 * This code is free software; you can redistribute it and/or modify it 22.32/7.28 * under the terms of the GNU General Public License version 2 only, as 22.32/7.28 * published by the Free Software Foundation. Sun designates this 22.32/7.28 * particular file as subject to the "Classpath" exception as provided 22.32/7.28 * by Sun in the LICENSE file that accompanied this code. 22.32/7.28 * 22.32/7.28 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.28 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.28 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.28 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.28 * accompanied this code). 22.32/7.28 * 22.32/7.28 * You should have received a copy of the GNU General Public License version 22.32/7.28 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.28 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.28 * 22.32/7.28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.28 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.28 * have any questions. 22.32/7.28 */ 22.32/7.28 22.32/7.28 package javaUtilEx; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Linked list implementation of the List interface. Implements all 22.32/7.28 * optional list operations, and permits all elements (including 22.32/7.28 * null). In addition to implementing the List interface, 22.32/7.28 * the LinkedList class provides uniformly named methods to 22.32/7.28 * get, remove and insert an element at the 22.32/7.28 * beginning and end of the list. These operations allow linked lists to be 22.32/7.28 * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque 22.32/7.28 * double-ended queue}.

22.32/7.28 * 22.32/7.28 * The class implements the Deque interface, providing 22.32/7.28 * first-in-first-out queue operations for add, 22.32/7.28 * poll, along with other stack and deque operations.

22.32/7.28 * 22.32/7.28 * All of the operations perform as could be expected for a doubly-linked 22.32/7.28 * list. Operations that index into the list will traverse the list from 22.32/7.28 * the beginning or the end, whichever is closer to the specified index.

22.32/7.28 * 22.32/7.28 *

Note that this implementation is not synchronized. 22.32/7.28 * If multiple threads access a linked list concurrently, and at least 22.32/7.28 * one of the threads modifies the list structurally, it must be 22.32/7.28 * synchronized externally. (A structural modification is any operation 22.32/7.28 * that adds or deletes one or more elements; merely setting the value of 22.32/7.28 * an element is not a structural modification.) This is typically 22.32/7.28 * accomplished by synchronizing on some object that naturally 22.32/7.28 * encapsulates the list. 22.32/7.28 * 22.32/7.28 * If no such object exists, the list should be "wrapped" using the 22.32/7.28 * {@link Collections#synchronizedList Collections.synchronizedList} 22.32/7.28 * method. This is best done at creation time, to prevent accidental 22.32/7.28 * unsynchronized access to the list:

22.32/7.28	 *   List list = Collections.synchronizedList(new LinkedList(...));
22.32/7.28 * 22.32/7.28 *

The iterators returned by this class's iterator and 22.32/7.28 * listIterator methods are fail-fast: if the list is 22.32/7.28 * structurally modified at any time after the iterator is created, in 22.32/7.28 * any way except through the Iterator's own remove or 22.32/7.28 * add methods, the iterator will throw a {@link 22.32/7.28 * ConcurrentModificationException}. Thus, in the face of concurrent 22.32/7.28 * modification, the iterator fails quickly and cleanly, rather than 22.32/7.28 * risking arbitrary, non-deterministic behavior at an undetermined 22.32/7.28 * time in the future. 22.32/7.28 * 22.32/7.28 *

Note that the fail-fast behavior of an iterator cannot be guaranteed 22.32/7.28 * as it is, generally speaking, impossible to make any hard guarantees in the 22.32/7.28 * presence of unsynchronized concurrent modification. Fail-fast iterators 22.32/7.28 * throw ConcurrentModificationException on a best-effort basis. 22.32/7.28 * Therefore, it would be wrong to write a program that depended on this 22.32/7.28 * exception for its correctness: the fail-fast behavior of iterators 22.32/7.28 * should be used only to detect bugs. 22.32/7.28 * 22.32/7.28 *

This class is a member of the 22.32/7.28 * 22.32/7.28 * Java Collections Framework. 22.32/7.28 * 22.32/7.28 * @author Josh Bloch 22.32/7.28 * @see List 22.32/7.28 * @see ArrayList 22.32/7.28 * @see Vector 22.32/7.28 * @since 1.2 22.32/7.28 * @param the type of elements held in this collection 22.32/7.28 */ 22.32/7.28 22.32/7.28 public class LinkedList 22.32/7.28 extends AbstractSequentialList 22.32/7.28 implements List, Deque 22.32/7.28 { 22.32/7.28 private transient Entry header = new Entry(null, null, null); 22.32/7.28 private transient int size = 0; 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs an empty list. 22.32/7.28 */ 22.32/7.28 public LinkedList() { 22.32/7.28 header.next = header.previous = header; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Constructs a list containing the elements of the specified 22.32/7.28 * collection, in the order they are returned by the collection's 22.32/7.28 * iterator. 22.32/7.28 * 22.32/7.28 * @param c the collection whose elements are to be placed into this list 22.32/7.28 * @throws NullPointerException if the specified collection is null 22.32/7.28 */ 22.32/7.28 public LinkedList(Collection c) { 22.32/7.28 this(); 22.32/7.28 addAll(c); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the first element in this list. 22.32/7.28 * 22.32/7.28 * @return the first element in this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 */ 22.32/7.28 public E getFirst() { 22.32/7.28 if (size==0) 22.32/7.28 throw new NoSuchElementException(); 22.32/7.28 22.32/7.28 return header.next.element; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the last element in this list. 22.32/7.28 * 22.32/7.28 * @return the last element in this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 */ 22.32/7.28 public E getLast() { 22.32/7.28 if (size==0) 22.32/7.28 throw new NoSuchElementException(); 22.32/7.28 22.32/7.28 return header.previous.element; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes and returns the first element from this list. 22.32/7.28 * 22.32/7.28 * @return the first element from this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 */ 22.32/7.28 public E removeFirst() { 22.32/7.28 return remove(header.next); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes and returns the last element from this list. 22.32/7.28 * 22.32/7.28 * @return the last element from this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 */ 22.32/7.28 public E removeLast() { 22.32/7.28 return remove(header.previous); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the beginning of this list. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 */ 22.32/7.28 public void addFirst(E e) { 22.32/7.28 addBefore(e, header.next); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Appends the specified element to the end of this list. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #add}. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 */ 22.32/7.28 public void addLast(E e) { 22.32/7.28 addBefore(e, header); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns true if this list contains the specified element. 22.32/7.28 * More formally, returns true if and only if this list contains 22.32/7.28 * at least one element e such that 22.32/7.28 * (o==null ? e==null : o.equals(e)). 22.32/7.28 * 22.32/7.28 * @param o element whose presence in this list is to be tested 22.32/7.28 * @return true if this list contains the specified element 22.32/7.28 */ 22.32/7.28 public boolean contains(Object o) { 22.32/7.28 return indexOf(o) != -1; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the number of elements in this list. 22.32/7.28 * 22.32/7.28 * @return the number of elements in this list 22.32/7.28 */ 22.32/7.28 public int size() { 22.32/7.28 return size; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Appends the specified element to the end of this list. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #addLast}. 22.32/7.28 * 22.32/7.28 * @param e element to be appended to this list 22.32/7.28 * @return true (as specified by {@link Collection#add}) 22.32/7.28 */ 22.32/7.28 public boolean add(E e) { 22.32/7.28 addBefore(e, header); 22.32/7.28 return true; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the first occurrence of the specified element from this list, 22.32/7.28 * if it is present. If this list does not contain the element, it is 22.32/7.28 * unchanged. More formally, removes the element with the lowest index 22.32/7.28 * i such that 22.32/7.28 * (o==null ? get(i)==null : o.equals(get(i))) 22.32/7.28 * (if such an element exists). Returns true if this list 22.32/7.28 * contained the specified element (or equivalently, if this list 22.32/7.28 * changed as a result of the call). 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this list, if present 22.32/7.28 * @return true if this list contained the specified element 22.32/7.28 */ 22.32/7.28 public boolean remove(Object o) { 22.32/7.28 if (o==null) { 22.32/7.28 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.28 if (e.element==null) { 22.32/7.28 remove(e); 22.32/7.28 return true; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 } else { 22.32/7.28 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.28 if (o.equals(e.element)) { 22.32/7.28 remove(e); 22.32/7.28 return true; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 } 22.32/7.28 return false; 22.32/7.28 } 22.32/7.28 /** 22.32/7.28 * Removes all of the elements from this list. 22.32/7.28 */ 22.32/7.28 public void clear() { 22.32/7.28 Entry e = header.next; 22.32/7.28 while (e != header) { 22.32/7.28 Entry next = e.next; 22.32/7.28 e.next = e.previous = null; 22.32/7.28 e.element = null; 22.32/7.28 e = next; 22.32/7.28 } 22.32/7.28 header.next = header.previous = header; 22.32/7.28 size = 0; 22.32/7.28 modCount++; 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 // Positional Access Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the element at the specified position in this list. 22.32/7.28 * 22.32/7.28 * @param index index of the element to return 22.32/7.28 * @return the element at the specified position in this list 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public E get(int index) { 22.32/7.28 return entry(index).element; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Replaces the element at the specified position in this list with the 22.32/7.28 * specified element. 22.32/7.28 * 22.32/7.28 * @param index index of the element to replace 22.32/7.28 * @param element element to be stored at the specified position 22.32/7.28 * @return the element previously at the specified position 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public E set(int index, E element) { 22.32/7.28 Entry e = entry(index); 22.32/7.28 E oldVal = e.element; 22.32/7.28 e.element = element; 22.32/7.28 return oldVal; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the specified position in this list. 22.32/7.28 * Shifts the element currently at that position (if any) and any 22.32/7.28 * subsequent elements to the right (adds one to their indices). 22.32/7.28 * 22.32/7.28 * @param index index at which the specified element is to be inserted 22.32/7.28 * @param element element to be inserted 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public void add(int index, E element) { 22.32/7.28 addBefore(element, (index==size ? header : entry(index))); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the element at the specified position in this list. Shifts any 22.32/7.28 * subsequent elements to the left (subtracts one from their indices). 22.32/7.28 * Returns the element that was removed from the list. 22.32/7.28 * 22.32/7.28 * @param index the index of the element to be removed 22.32/7.28 * @return the element previously at the specified position 22.32/7.28 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.28 */ 22.32/7.28 public E remove(int index) { 22.32/7.28 return remove(entry(index)); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the indexed entry. 22.32/7.28 */ 22.32/7.28 private Entry entry(int index) { 22.32/7.28 if (index < 0 || index >= size) 22.32/7.28 throw new IndexOutOfBoundsException(); 22.32/7.28 Entry e = header; 22.32/7.28 if (index < (size >> 1)) { 22.32/7.28 for (int i = 0; i <= index; i++) 22.32/7.28 e = e.next; 22.32/7.28 } else { 22.32/7.28 for (int i = size; i > index; i--) 22.32/7.28 e = e.previous; 22.32/7.28 } 22.32/7.28 return e; 22.32/7.28 } 22.32/7.28 22.32/7.28 22.32/7.28 // Search Operations 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the index of the first occurrence of the specified element 22.32/7.28 * in this list, or -1 if this list does not contain the element. 22.32/7.28 * More formally, returns the lowest index i such that 22.32/7.28 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.28 * or -1 if there is no such index. 22.32/7.28 * 22.32/7.28 * @param o element to search for 22.32/7.28 * @return the index of the first occurrence of the specified element in 22.32/7.28 * this list, or -1 if this list does not contain the element 22.32/7.28 */ 22.32/7.28 public int indexOf(Object o) { 22.32/7.28 int index = 0; 22.32/7.28 if (o==null) { 22.32/7.28 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.28 if (e.element==null) 22.32/7.28 return index; 22.32/7.28 index++; 22.32/7.28 } 22.32/7.28 } else { 22.32/7.28 for (Entry e = header.next; e != header; e = e.next) { 22.32/7.28 if (o.equals(e.element)) 22.32/7.28 return index; 22.32/7.28 index++; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 return -1; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Returns the index of the last occurrence of the specified element 22.32/7.28 * in this list, or -1 if this list does not contain the element. 22.32/7.28 * More formally, returns the highest index i such that 22.32/7.28 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.28 * or -1 if there is no such index. 22.32/7.28 * 22.32/7.28 * @param o element to search for 22.32/7.28 * @return the index of the last occurrence of the specified element in 22.32/7.28 * this list, or -1 if this list does not contain the element 22.32/7.28 */ 22.32/7.28 public int lastIndexOf(Object o) { 22.32/7.28 int index = size; 22.32/7.28 if (o==null) { 22.32/7.28 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.28 index--; 22.32/7.28 if (e.element==null) 22.32/7.28 return index; 22.32/7.28 } 22.32/7.28 } else { 22.32/7.28 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.28 index--; 22.32/7.28 if (o.equals(e.element)) 22.32/7.28 return index; 22.32/7.28 } 22.32/7.28 } 22.32/7.28 return -1; 22.32/7.28 } 22.32/7.28 22.32/7.28 // Queue operations. 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the head (first element) of this list. 22.32/7.28 * @return the head of this list, or null if this list is empty 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public E peek() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return getFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the head (first element) of this list. 22.32/7.28 * @return the head of this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public E element() { 22.32/7.28 return getFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the head (first element) of this list 22.32/7.28 * @return the head of this list, or null if this list is empty 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public E poll() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return removeFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the head (first element) of this list. 22.32/7.28 * 22.32/7.28 * @return the head of this list 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public E remove() { 22.32/7.28 return removeFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Adds the specified element as the tail (last element) of this list. 22.32/7.28 * 22.32/7.28 * @param e the element to add 22.32/7.28 * @return true (as specified by {@link Queue#offer}) 22.32/7.28 * @since 1.5 22.32/7.28 */ 22.32/7.28 public boolean offer(E e) { 22.32/7.28 return add(e); 22.32/7.28 } 22.32/7.28 22.32/7.28 // Deque operations 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the front of this list. 22.32/7.28 * 22.32/7.28 * @param e the element to insert 22.32/7.28 * @return true (as specified by {@link Deque#offerFirst}) 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public boolean offerFirst(E e) { 22.32/7.28 addFirst(e); 22.32/7.28 return true; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Inserts the specified element at the end of this list. 22.32/7.28 * 22.32/7.28 * @param e the element to insert 22.32/7.28 * @return true (as specified by {@link Deque#offerLast}) 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public boolean offerLast(E e) { 22.32/7.28 addLast(e); 22.32/7.28 return true; 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the first element of this list, 22.32/7.28 * or returns null if this list is empty. 22.32/7.28 * 22.32/7.28 * @return the first element of this list, or null 22.32/7.28 * if this list is empty 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public E peekFirst() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return getFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves, but does not remove, the last element of this list, 22.32/7.28 * or returns null if this list is empty. 22.32/7.28 * 22.32/7.28 * @return the last element of this list, or null 22.32/7.28 * if this list is empty 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public E peekLast() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return getLast(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the first element of this list, 22.32/7.28 * or returns null if this list is empty. 22.32/7.28 * 22.32/7.28 * @return the first element of this list, or null if 22.32/7.28 * this list is empty 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public E pollFirst() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return removeFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Retrieves and removes the last element of this list, 22.32/7.28 * or returns null if this list is empty. 22.32/7.28 * 22.32/7.28 * @return the last element of this list, or null if 22.32/7.28 * this list is empty 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public E pollLast() { 22.32/7.28 if (size==0) 22.32/7.28 return null; 22.32/7.28 return removeLast(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Pushes an element onto the stack represented by this list. In other 22.32/7.28 * words, inserts the element at the front of this list. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #addFirst}. 22.32/7.28 * 22.32/7.28 * @param e the element to push 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public void push(E e) { 22.32/7.28 addFirst(e); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Pops an element from the stack represented by this list. In other 22.32/7.28 * words, removes and returns the first element of this list. 22.32/7.28 * 22.32/7.28 *

This method is equivalent to {@link #removeFirst()}. 22.32/7.28 * 22.32/7.28 * @return the element at the front of this list (which is the top 22.32/7.28 * of the stack represented by this list) 22.32/7.28 * @throws NoSuchElementException if this list is empty 22.32/7.28 * @since 1.6 22.32/7.28 */ 22.32/7.28 public E pop() { 22.32/7.28 return removeFirst(); 22.32/7.28 } 22.32/7.28 22.32/7.28 /** 22.32/7.28 * Removes the first occurrence of the specified element in this 22.32/7.28 * list (when traversing the list from head to tail). If the list 22.32/7.28 * does not contain the element, it is unchanged. 22.32/7.28 * 22.32/7.28 * @param o element to be removed from this list, if present 22.32/7.28 * @return true if the list contained the specified element 22.32/7.29 * @since 1.6 22.32/7.29 */ 22.32/7.29 public boolean removeFirstOccurrence(Object o) { 22.32/7.29 return remove(o); 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes the last occurrence of the specified element in this 22.32/7.29 * list (when traversing the list from head to tail). If the list 22.32/7.29 * does not contain the element, it is unchanged. 22.32/7.29 * 22.32/7.29 * @param o element to be removed from this list, if present 22.32/7.29 * @return true if the list contained the specified element 22.32/7.29 * @since 1.6 22.32/7.29 */ 22.32/7.29 public boolean removeLastOccurrence(Object o) { 22.32/7.29 if (o==null) { 22.32/7.29 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.29 if (e.element==null) { 22.32/7.29 remove(e); 22.32/7.29 return true; 22.32/7.29 } 22.32/7.29 } 22.32/7.29 } else { 22.32/7.29 for (Entry e = header.previous; e != header; e = e.previous) { 22.32/7.29 if (o.equals(e.element)) { 22.32/7.29 remove(e); 22.32/7.29 return true; 22.32/7.29 } 22.32/7.29 } 22.32/7.29 } 22.32/7.29 return false; 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns a list-iterator of the elements in this list (in proper 22.32/7.29 * sequence), starting at the specified position in the list. 22.32/7.29 * Obeys the general contract of List.listIterator(int).

22.32/7.29 * 22.32/7.29 * The list-iterator is fail-fast: if the list is structurally 22.32/7.29 * modified at any time after the Iterator is created, in any way except 22.32/7.29 * through the list-iterator's own remove or add 22.32/7.29 * methods, the list-iterator will throw a 22.32/7.29 * ConcurrentModificationException. Thus, in the face of 22.32/7.29 * concurrent modification, the iterator fails quickly and cleanly, rather 22.32/7.29 * than risking arbitrary, non-deterministic behavior at an undetermined 22.32/7.29 * time in the future. 22.32/7.29 * 22.32/7.29 * @param index index of the first element to be returned from the 22.32/7.29 * list-iterator (by a call to next) 22.32/7.29 * @return a ListIterator of the elements in this list (in proper 22.32/7.29 * sequence), starting at the specified position in the list 22.32/7.29 * @throws IndexOutOfBoundsException {@inheritDoc} 22.32/7.29 * @see List#listIterator(int) 22.32/7.29 */ 22.32/7.29 public ListIterator listIterator(int index) { 22.32/7.29 return new ListItr(index); 22.32/7.29 } 22.32/7.29 22.32/7.29 private class ListItr implements ListIterator { 22.32/7.29 private Entry lastReturned = header; 22.32/7.29 private Entry next; 22.32/7.29 private int nextIndex; 22.32/7.29 private int expectedModCount = modCount; 22.32/7.29 22.32/7.29 ListItr(int index) { 22.32/7.29 if (index < 0 || index > size) 22.32/7.29 throw new IndexOutOfBoundsException(); 22.32/7.29 if (index < (size >> 1)) { 22.32/7.29 next = header.next; 22.32/7.29 for (nextIndex=0; nextIndexindex; nextIndex--) 22.32/7.29 next = next.previous; 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 public boolean hasNext() { 22.32/7.29 return nextIndex != size; 22.32/7.29 } 22.32/7.29 22.32/7.29 public E next() { 22.32/7.29 checkForComodification(); 22.32/7.29 if (nextIndex == size) 22.32/7.29 throw new NoSuchElementException(); 22.32/7.29 22.32/7.29 lastReturned = next; 22.32/7.29 next = next.next; 22.32/7.29 nextIndex++; 22.32/7.29 return lastReturned.element; 22.32/7.29 } 22.32/7.29 22.32/7.29 public boolean hasPrevious() { 22.32/7.29 return nextIndex != 0; 22.32/7.29 } 22.32/7.29 22.32/7.29 public E previous() { 22.32/7.29 if (nextIndex == 0) 22.32/7.29 throw new NoSuchElementException(); 22.32/7.29 22.32/7.29 lastReturned = next = next.previous; 22.32/7.29 nextIndex--; 22.32/7.29 checkForComodification(); 22.32/7.29 return lastReturned.element; 22.32/7.29 } 22.32/7.29 22.32/7.29 public int nextIndex() { 22.32/7.29 return nextIndex; 22.32/7.29 } 22.32/7.29 22.32/7.29 public int previousIndex() { 22.32/7.29 return nextIndex-1; 22.32/7.29 } 22.32/7.29 22.32/7.29 public void remove() { 22.32/7.29 checkForComodification(); 22.32/7.29 Entry lastNext = lastReturned.next; 22.32/7.29 try { 22.32/7.29 LinkedList.this.remove(lastReturned); 22.32/7.29 } catch (NoSuchElementException e) { 22.32/7.29 throw new IllegalStateException(); 22.32/7.29 } 22.32/7.29 if (next==lastReturned) 22.32/7.29 next = lastNext; 22.32/7.29 else 22.32/7.29 nextIndex--; 22.32/7.29 lastReturned = header; 22.32/7.29 expectedModCount++; 22.32/7.29 } 22.32/7.29 22.32/7.29 public void set(E e) { 22.32/7.29 if (lastReturned == header) 22.32/7.29 throw new IllegalStateException(); 22.32/7.29 checkForComodification(); 22.32/7.29 lastReturned.element = e; 22.32/7.29 } 22.32/7.29 22.32/7.29 public void add(E e) { 22.32/7.29 checkForComodification(); 22.32/7.29 lastReturned = header; 22.32/7.29 addBefore(e, next); 22.32/7.29 nextIndex++; 22.32/7.29 expectedModCount++; 22.32/7.29 } 22.32/7.29 22.32/7.29 final void checkForComodification() { 22.32/7.29 if (modCount != expectedModCount) 22.32/7.29 throw new ConcurrentModificationException(); 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 private static class Entry { 22.32/7.29 E element; 22.32/7.29 Entry next; 22.32/7.29 Entry previous; 22.32/7.29 22.32/7.29 Entry(E element, Entry next, Entry previous) { 22.32/7.29 this.element = element; 22.32/7.29 this.next = next; 22.32/7.29 this.previous = previous; 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 private Entry addBefore(E e, Entry entry) { 22.32/7.29 Entry newEntry = new Entry(e, entry, entry.previous); 22.32/7.29 newEntry.previous.next = newEntry; 22.32/7.29 newEntry.next.previous = newEntry; 22.32/7.29 size++; 22.32/7.29 modCount++; 22.32/7.29 return newEntry; 22.32/7.29 } 22.32/7.29 22.32/7.29 private E remove(Entry e) { 22.32/7.29 if (e == header) 22.32/7.29 throw new NoSuchElementException(); 22.32/7.29 22.32/7.29 E result = e.element; 22.32/7.29 e.previous.next = e.next; 22.32/7.29 e.next.previous = e.previous; 22.32/7.29 e.next = e.previous = null; 22.32/7.29 e.element = null; 22.32/7.29 size--; 22.32/7.29 modCount++; 22.32/7.29 return result; 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * @since 1.6 22.32/7.29 */ 22.32/7.29 public Iterator descendingIterator() { 22.32/7.29 return new DescendingIterator(); 22.32/7.29 } 22.32/7.29 22.32/7.29 /** Adapter to provide descending iterators via ListItr.previous */ 22.32/7.29 private class DescendingIterator implements Iterator { 22.32/7.29 final ListItr itr = new ListItr(size()); 22.32/7.29 public boolean hasNext() { 22.32/7.29 return itr.hasPrevious(); 22.32/7.29 } 22.32/7.29 public E next() { 22.32/7.29 return itr.previous(); 22.32/7.29 } 22.32/7.29 public void remove() { 22.32/7.29 itr.remove(); 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns an array containing all of the elements in this list 22.32/7.29 * in proper sequence (from first to last element). 22.32/7.29 * 22.32/7.29 *

The returned array will be "safe" in that no references to it are 22.32/7.29 * maintained by this list. (In other words, this method must allocate 22.32/7.29 * a new array). The caller is thus free to modify the returned array. 22.32/7.29 * 22.32/7.29 *

This method acts as bridge between array-based and collection-based 22.32/7.29 * APIs. 22.32/7.29 * 22.32/7.29 * @return an array containing all of the elements in this list 22.32/7.29 * in proper sequence 22.32/7.29 */ 22.32/7.29 public Object[] toArray() { 22.32/7.29 Object[] result = new Object[size]; 22.32/7.29 int i = 0; 22.32/7.29 for (Entry e = header.next; e != header; e = e.next) 22.32/7.29 result[i++] = e.element; 22.32/7.29 return result; 22.32/7.29 } 22.32/7.29 22.32/7.29 private static final long serialVersionUID = 876323262645176354L; 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * An iterator for lists that allows the programmer 22.32/7.29 * to traverse the list in either direction, modify 22.32/7.29 * the list during iteration, and obtain the iterator's 22.32/7.29 * current position in the list. A {@code ListIterator} 22.32/7.29 * has no current element; its cursor position always 22.32/7.29 * lies between the element that would be returned by a call 22.32/7.29 * to {@code previous()} and the element that would be 22.32/7.29 * returned by a call to {@code next()}. 22.32/7.29 * An iterator for a list of length {@code n} has {@code n+1} possible 22.32/7.29 * cursor positions, as illustrated by the carets ({@code ^}) below: 22.32/7.29 *

22.32/7.29	 *                      Element(0)   Element(1)   Element(2)   ... Element(n-1)
22.32/7.29	 * cursor positions:  ^            ^            ^            ^                  ^
22.32/7.29	 * 
22.32/7.29 * Note that the {@link #remove} and {@link #set(Object)} methods are 22.32/7.29 * not defined in terms of the cursor position; they are defined to 22.32/7.29 * operate on the last element returned by a call to {@link #next} or 22.32/7.29 * {@link #previous()}. 22.32/7.29 * 22.32/7.29 *

This interface is a member of the 22.32/7.29 * 22.32/7.29 * Java Collections Framework. 22.32/7.29 * 22.32/7.29 * @author Josh Bloch 22.32/7.29 * @see Collection 22.32/7.29 * @see List 22.32/7.29 * @see Iterator 22.32/7.29 * @see Enumeration 22.32/7.29 * @see List#listIterator() 22.32/7.29 * @since 1.2 22.32/7.29 */ 22.32/7.29 public interface ListIterator extends Iterator { 22.32/7.29 // Query Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns {@code true} if this list iterator has more elements when 22.32/7.29 * traversing the list in the forward direction. (In other words, 22.32/7.29 * returns {@code true} if {@link #next} would return an element rather 22.32/7.29 * than throwing an exception.) 22.32/7.29 * 22.32/7.29 * @return {@code true} if the list iterator has more elements when 22.32/7.29 * traversing the list in the forward direction 22.32/7.29 */ 22.32/7.29 boolean hasNext(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the next element in the list and advances the cursor position. 22.32/7.29 * This method may be called repeatedly to iterate through the list, 22.32/7.29 * or intermixed with calls to {@link #previous} to go back and forth. 22.32/7.29 * (Note that alternating calls to {@code next} and {@code previous} 22.32/7.29 * will return the same element repeatedly.) 22.32/7.29 * 22.32/7.29 * @return the next element in the list 22.32/7.29 * @throws NoSuchElementException if the iteration has no next element 22.32/7.29 */ 22.32/7.29 E next(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns {@code true} if this list iterator has more elements when 22.32/7.29 * traversing the list in the reverse direction. (In other words, 22.32/7.29 * returns {@code true} if {@link #previous} would return an element 22.32/7.29 * rather than throwing an exception.) 22.32/7.29 * 22.32/7.29 * @return {@code true} if the list iterator has more elements when 22.32/7.29 * traversing the list in the reverse direction 22.32/7.29 */ 22.32/7.29 boolean hasPrevious(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the previous element in the list and moves the cursor 22.32/7.29 * position backwards. This method may be called repeatedly to 22.32/7.29 * iterate through the list backwards, or intermixed with calls to 22.32/7.29 * {@link #next} to go back and forth. (Note that alternating calls 22.32/7.29 * to {@code next} and {@code previous} will return the same 22.32/7.29 * element repeatedly.) 22.32/7.29 * 22.32/7.29 * @return the previous element in the list 22.32/7.29 * @throws NoSuchElementException if the iteration has no previous 22.32/7.29 * element 22.32/7.29 */ 22.32/7.29 E previous(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the index of the element that would be returned by a 22.32/7.29 * subsequent call to {@link #next}. (Returns list size if the list 22.32/7.29 * iterator is at the end of the list.) 22.32/7.29 * 22.32/7.29 * @return the index of the element that would be returned by a 22.32/7.29 * subsequent call to {@code next}, or list size if the list 22.32/7.29 * iterator is at the end of the list 22.32/7.29 */ 22.32/7.29 int nextIndex(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the index of the element that would be returned by a 22.32/7.29 * subsequent call to {@link #previous}. (Returns -1 if the list 22.32/7.29 * iterator is at the beginning of the list.) 22.32/7.29 * 22.32/7.29 * @return the index of the element that would be returned by a 22.32/7.29 * subsequent call to {@code previous}, or -1 if the list 22.32/7.29 * iterator is at the beginning of the list 22.32/7.29 */ 22.32/7.29 int previousIndex(); 22.32/7.29 22.32/7.29 22.32/7.29 // Modification Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes from the list the last element that was returned by {@link 22.32/7.29 * #next} or {@link #previous} (optional operation). This call can 22.32/7.29 * only be made once per call to {@code next} or {@code previous}. 22.32/7.29 * It can be made only if {@link #add} has not been 22.32/7.29 * called after the last call to {@code next} or {@code previous}. 22.32/7.29 * 22.32/7.29 * @throws UnsupportedOperationException if the {@code remove} 22.32/7.29 * operation is not supported by this list iterator 22.32/7.29 * @throws IllegalStateException if neither {@code next} nor 22.32/7.29 * {@code previous} have been called, or {@code remove} or 22.32/7.29 * {@code add} have been called after the last call to 22.32/7.29 * {@code next} or {@code previous} 22.32/7.29 */ 22.32/7.29 void remove(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Replaces the last element returned by {@link #next} or 22.32/7.29 * {@link #previous} with the specified element (optional operation). 22.32/7.29 * This call can be made only if neither {@link #remove} nor {@link 22.32/7.29 * #add} have been called after the last call to {@code next} or 22.32/7.29 * {@code previous}. 22.32/7.29 * 22.32/7.29 * @param e the element with which to replace the last element returned by 22.32/7.29 * {@code next} or {@code previous} 22.32/7.29 * @throws UnsupportedOperationException if the {@code set} operation 22.32/7.29 * is not supported by this list iterator 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 * @throws IllegalArgumentException if some aspect of the specified 22.32/7.29 * element prevents it from being added to this list 22.32/7.29 * @throws IllegalStateException if neither {@code next} nor 22.32/7.29 * {@code previous} have been called, or {@code remove} or 22.32/7.29 * {@code add} have been called after the last call to 22.32/7.29 * {@code next} or {@code previous} 22.32/7.29 */ 22.32/7.29 void set(E e); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Inserts the specified element into the list (optional operation). 22.32/7.29 * The element is inserted immediately before the next element that 22.32/7.29 * would be returned by {@link #next}, if any, and after the next 22.32/7.29 * element that would be returned by {@link #previous}, if any. (If the 22.32/7.29 * list contains no elements, the new element becomes the sole element 22.32/7.29 * on the list.) The new element is inserted before the implicit 22.32/7.29 * cursor: a subsequent call to {@code next} would be unaffected, and a 22.32/7.29 * subsequent call to {@code previous} would return the new element. 22.32/7.29 * (This call increases by one the value that would be returned by a 22.32/7.29 * call to {@code nextIndex} or {@code previousIndex}.) 22.32/7.29 * 22.32/7.29 * @param e the element to insert 22.32/7.29 * @throws UnsupportedOperationException if the {@code add} method is 22.32/7.29 * not supported by this list iterator 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 * @throws IllegalArgumentException if some aspect of this element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 */ 22.32/7.29 void add(E e); 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * An ordered collection (also known as a sequence). The user of this 22.32/7.29 * interface has precise control over where in the list each element is 22.32/7.29 * inserted. The user can access elements by their integer index (position in 22.32/7.29 * the list), and search for elements in the list.

22.32/7.29 * 22.32/7.29 * Unlike sets, lists typically allow duplicate elements. More formally, 22.32/7.29 * lists typically allow pairs of elements e1 and e2 22.32/7.29 * such that e1.equals(e2), and they typically allow multiple 22.32/7.29 * null elements if they allow null elements at all. It is not inconceivable 22.32/7.29 * that someone might wish to implement a list that prohibits duplicates, by 22.32/7.29 * throwing runtime exceptions when the user attempts to insert them, but we 22.32/7.29 * expect this usage to be rare.

22.32/7.29 * 22.32/7.29 * The List interface places additional stipulations, beyond those 22.32/7.29 * specified in the Collection interface, on the contracts of the 22.32/7.29 * iterator, add, remove, equals, and 22.32/7.29 * hashCode methods. Declarations for other inherited methods are 22.32/7.29 * also included here for convenience.

22.32/7.29 * 22.32/7.29 * The List interface provides four methods for positional (indexed) 22.32/7.29 * access to list elements. Lists (like Java arrays) are zero based. Note 22.32/7.29 * that these operations may execute in time proportional to the index value 22.32/7.29 * for some implementations (the LinkedList class, for 22.32/7.29 * example). Thus, iterating over the elements in a list is typically 22.32/7.29 * preferable to indexing through it if the caller does not know the 22.32/7.29 * implementation.

22.32/7.29 * 22.32/7.29 * The List interface provides a special iterator, called a 22.32/7.29 * ListIterator, that allows element insertion and replacement, and 22.32/7.29 * bidirectional access in addition to the normal operations that the 22.32/7.29 * Iterator interface provides. A method is provided to obtain a 22.32/7.29 * list iterator that starts at a specified position in the list.

22.32/7.29 * 22.32/7.29 * The List interface provides two methods to search for a specified 22.32/7.29 * object. From a performance standpoint, these methods should be used with 22.32/7.29 * caution. In many implementations they will perform costly linear 22.32/7.29 * searches.

22.32/7.29 * 22.32/7.29 * The List interface provides two methods to efficiently insert and 22.32/7.29 * remove multiple elements at an arbitrary point in the list.

22.32/7.29 * 22.32/7.29 * Note: While it is permissible for lists to contain themselves as elements, 22.32/7.29 * extreme caution is advised: the equals and hashCode 22.32/7.29 * methods are no longer well defined on such a list. 22.32/7.29 * 22.32/7.29 *

Some list implementations have restrictions on the elements that 22.32/7.29 * they may contain. For example, some implementations prohibit null elements, 22.32/7.29 * and some have restrictions on the types of their elements. Attempting to 22.32/7.29 * add an ineligible element throws an unchecked exception, typically 22.32/7.29 * NullPointerException or ClassCastException. Attempting 22.32/7.29 * to query the presence of an ineligible element may throw an exception, 22.32/7.29 * or it may simply return false; some implementations will exhibit the former 22.32/7.29 * behavior and some will exhibit the latter. More generally, attempting an 22.32/7.29 * operation on an ineligible element whose completion would not result in 22.32/7.29 * the insertion of an ineligible element into the list may throw an 22.32/7.29 * exception or it may succeed, at the option of the implementation. 22.32/7.29 * Such exceptions are marked as "optional" in the specification for this 22.32/7.29 * interface. 22.32/7.29 * 22.32/7.29 *

This interface is a member of the 22.32/7.29 * 22.32/7.29 * Java Collections Framework. 22.32/7.29 * 22.32/7.29 * @author Josh Bloch 22.32/7.29 * @author Neal Gafter 22.32/7.29 * @see Collection 22.32/7.29 * @see Set 22.32/7.29 * @see ArrayList 22.32/7.29 * @see LinkedList 22.32/7.29 * @see Vector 22.32/7.29 * @see Arrays#asList(Object[]) 22.32/7.29 * @see Collections#nCopies(int, Object) 22.32/7.29 * @see Collections#EMPTY_LIST 22.32/7.29 * @see AbstractList 22.32/7.29 * @see AbstractSequentialList 22.32/7.29 * @since 1.2 22.32/7.29 */ 22.32/7.29 22.32/7.29 public interface List extends Collection { 22.32/7.29 // Query Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the number of elements in this list. If this list contains 22.32/7.29 * more than Integer.MAX_VALUE elements, returns 22.32/7.29 * Integer.MAX_VALUE. 22.32/7.29 * 22.32/7.29 * @return the number of elements in this list 22.32/7.29 */ 22.32/7.29 int size(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns true if this list contains no elements. 22.32/7.29 * 22.32/7.29 * @return true if this list contains no elements 22.32/7.29 */ 22.32/7.29 boolean isEmpty(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns true if this list contains the specified element. 22.32/7.29 * More formally, returns true if and only if this list contains 22.32/7.29 * at least one element e such that 22.32/7.29 * (o==null ? e==null : o.equals(e)). 22.32/7.29 * 22.32/7.29 * @param o element whose presence in this list is to be tested 22.32/7.29 * @return true if this list contains the specified element 22.32/7.29 * @throws ClassCastException if the type of the specified element 22.32/7.29 * is incompatible with this list (optional) 22.32/7.29 * @throws NullPointerException if the specified element is null and this 22.32/7.29 * list does not permit null elements (optional) 22.32/7.29 */ 22.32/7.29 boolean contains(Object o); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns an iterator over the elements in this list in proper sequence. 22.32/7.29 * 22.32/7.29 * @return an iterator over the elements in this list in proper sequence 22.32/7.29 */ 22.32/7.29 Iterator iterator(); 22.32/7.29 22.32/7.29 // Modification Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Appends the specified element to the end of this list (optional 22.32/7.29 * operation). 22.32/7.29 * 22.32/7.29 *

Lists that support this operation may place limitations on what 22.32/7.29 * elements may be added to this list. In particular, some 22.32/7.29 * lists will refuse to add null elements, and others will impose 22.32/7.29 * restrictions on the type of elements that may be added. List 22.32/7.29 * classes should clearly specify in their documentation any restrictions 22.32/7.29 * on what elements may be added. 22.32/7.29 * 22.32/7.29 * @param e element to be appended to this list 22.32/7.29 * @return true (as specified by {@link Collection#add}) 22.32/7.29 * @throws UnsupportedOperationException if the add operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 * @throws NullPointerException if the specified element is null and this 22.32/7.29 * list does not permit null elements 22.32/7.29 * @throws IllegalArgumentException if some property of this element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 */ 22.32/7.29 boolean add(E e); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes the first occurrence of the specified element from this list, 22.32/7.29 * if it is present (optional operation). If this list does not contain 22.32/7.29 * the element, it is unchanged. More formally, removes the element with 22.32/7.29 * the lowest index i such that 22.32/7.29 * (o==null ? get(i)==null : o.equals(get(i))) 22.32/7.29 * (if such an element exists). Returns true if this list 22.32/7.29 * contained the specified element (or equivalently, if this list changed 22.32/7.29 * as a result of the call). 22.32/7.29 * 22.32/7.29 * @param o element to be removed from this list, if present 22.32/7.29 * @return true if this list contained the specified element 22.32/7.29 * @throws ClassCastException if the type of the specified element 22.32/7.29 * is incompatible with this list (optional) 22.32/7.29 * @throws NullPointerException if the specified element is null and this 22.32/7.29 * list does not permit null elements (optional) 22.32/7.29 * @throws UnsupportedOperationException if the remove operation 22.32/7.29 * is not supported by this list 22.32/7.29 */ 22.32/7.29 boolean remove(Object o); 22.32/7.29 22.32/7.29 22.32/7.29 // Bulk Modification Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns true if this list contains all of the elements of the 22.32/7.29 * specified collection. 22.32/7.29 * 22.32/7.29 * @param c collection to be checked for containment in this list 22.32/7.29 * @return true if this list contains all of the elements of the 22.32/7.29 * specified collection 22.32/7.29 * @throws ClassCastException if the types of one or more elements 22.32/7.29 * in the specified collection are incompatible with this 22.32/7.29 * list (optional) 22.32/7.29 * @throws NullPointerException if the specified collection contains one 22.32/7.29 * or more null elements and this list does not permit null 22.32/7.29 * elements (optional), or if the specified collection is null 22.32/7.29 * @see #contains(Object) 22.32/7.29 */ 22.32/7.29 boolean containsAll(Collection c); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Appends all of the elements in the specified collection to the end of 22.32/7.29 * this list, in the order that they are returned by the specified 22.32/7.29 * collection's iterator (optional operation). The behavior of this 22.32/7.29 * operation is undefined if the specified collection is modified while 22.32/7.29 * the operation is in progress. (Note that this will occur if the 22.32/7.29 * specified collection is this list, and it's nonempty.) 22.32/7.29 * 22.32/7.29 * @param c collection containing elements to be added to this list 22.32/7.29 * @return true if this list changed as a result of the call 22.32/7.29 * @throws UnsupportedOperationException if the addAll operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of an element of the specified 22.32/7.29 * collection prevents it from being added to this list 22.32/7.29 * @throws NullPointerException if the specified collection contains one 22.32/7.29 * or more null elements and this list does not permit null 22.32/7.29 * elements, or if the specified collection is null 22.32/7.29 * @throws IllegalArgumentException if some property of an element of the 22.32/7.29 * specified collection prevents it from being added to this list 22.32/7.29 * @see #add(Object) 22.32/7.29 */ 22.32/7.29 boolean addAll(Collection c); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Inserts all of the elements in the specified collection into this 22.32/7.29 * list at the specified position (optional operation). Shifts the 22.32/7.29 * element currently at that position (if any) and any subsequent 22.32/7.29 * elements to the right (increases their indices). The new elements 22.32/7.29 * will appear in this list in the order that they are returned by the 22.32/7.29 * specified collection's iterator. The behavior of this operation is 22.32/7.29 * undefined if the specified collection is modified while the 22.32/7.29 * operation is in progress. (Note that this will occur if the specified 22.32/7.29 * collection is this list, and it's nonempty.) 22.32/7.29 * 22.32/7.29 * @param index index at which to insert the first element from the 22.32/7.29 * specified collection 22.32/7.29 * @param c collection containing elements to be added to this list 22.32/7.29 * @return true if this list changed as a result of the call 22.32/7.29 * @throws UnsupportedOperationException if the addAll operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of an element of the specified 22.32/7.29 * collection prevents it from being added to this list 22.32/7.29 * @throws NullPointerException if the specified collection contains one 22.32/7.29 * or more null elements and this list does not permit null 22.32/7.29 * elements, or if the specified collection is null 22.32/7.29 * @throws IllegalArgumentException if some property of an element of the 22.32/7.29 * specified collection prevents it from being added to this list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * (index < 0 || index > size()) 22.32/7.29 */ 22.32/7.29 boolean addAll(int index, Collection c); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes from this list all of its elements that are contained in the 22.32/7.29 * specified collection (optional operation). 22.32/7.29 * 22.32/7.29 * @param c collection containing elements to be removed from this list 22.32/7.29 * @return true if this list changed as a result of the call 22.32/7.29 * @throws UnsupportedOperationException if the removeAll operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of an element of this list 22.32/7.29 * is incompatible with the specified collection (optional) 22.32/7.29 * @throws NullPointerException if this list contains a null element and the 22.32/7.29 * specified collection does not permit null elements (optional), 22.32/7.29 * or if the specified collection is null 22.32/7.29 * @see #remove(Object) 22.32/7.29 * @see #contains(Object) 22.32/7.29 */ 22.32/7.29 boolean removeAll(Collection c); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Retains only the elements in this list that are contained in the 22.32/7.29 * specified collection (optional operation). In other words, removes 22.32/7.29 * from this list all of its elements that are not contained in the 22.32/7.29 * specified collection. 22.32/7.29 * 22.32/7.29 * @param c collection containing elements to be retained in this list 22.32/7.29 * @return true if this list changed as a result of the call 22.32/7.29 * @throws UnsupportedOperationException if the retainAll operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of an element of this list 22.32/7.29 * is incompatible with the specified collection (optional) 22.32/7.29 * @throws NullPointerException if this list contains a null element and the 22.32/7.29 * specified collection does not permit null elements (optional), 22.32/7.29 * or if the specified collection is null 22.32/7.29 * @see #remove(Object) 22.32/7.29 * @see #contains(Object) 22.32/7.29 */ 22.32/7.29 boolean retainAll(Collection c); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes all of the elements from this list (optional operation). 22.32/7.29 * The list will be empty after this call returns. 22.32/7.29 * 22.32/7.29 * @throws UnsupportedOperationException if the clear operation 22.32/7.29 * is not supported by this list 22.32/7.29 */ 22.32/7.29 void clear(); 22.32/7.29 22.32/7.29 22.32/7.29 // Comparison and hashing 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Compares the specified object with this list for equality. Returns 22.32/7.29 * true if and only if the specified object is also a list, both 22.32/7.29 * lists have the same size, and all corresponding pairs of elements in 22.32/7.29 * the two lists are equal. (Two elements e1 and 22.32/7.29 * e2 are equal if (e1==null ? e2==null : 22.32/7.29 * e1.equals(e2)).) In other words, two lists are defined to be 22.32/7.29 * equal if they contain the same elements in the same order. This 22.32/7.29 * definition ensures that the equals method works properly across 22.32/7.29 * different implementations of the List interface. 22.32/7.29 * 22.32/7.29 * @param o the object to be compared for equality with this list 22.32/7.29 * @return true if the specified object is equal to this list 22.32/7.29 */ 22.32/7.29 boolean equals(Object o); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the hash code value for this list. The hash code of a list 22.32/7.29 * is defined to be the result of the following calculation: 22.32/7.29 *

22.32/7.29	     *  int hashCode = 1;
22.32/7.29	     *  for (E e : list)
22.32/7.29	     *      hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
22.32/7.29	     * 
22.32/7.29 * This ensures that list1.equals(list2) implies that 22.32/7.29 * list1.hashCode()==list2.hashCode() for any two lists, 22.32/7.29 * list1 and list2, as required by the general 22.32/7.29 * contract of {@link Object#hashCode}. 22.32/7.29 * 22.32/7.29 * @return the hash code value for this list 22.32/7.29 * @see Object#equals(Object) 22.32/7.29 * @see #equals(Object) 22.32/7.29 */ 22.32/7.29 int hashCode(); 22.32/7.29 22.32/7.29 22.32/7.29 // Positional Access Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the element at the specified position in this list. 22.32/7.29 * 22.32/7.29 * @param index index of the element to return 22.32/7.29 * @return the element at the specified position in this list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * (index < 0 || index >= size()) 22.32/7.29 */ 22.32/7.29 E get(int index); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Replaces the element at the specified position in this list with the 22.32/7.29 * specified element (optional operation). 22.32/7.29 * 22.32/7.29 * @param index index of the element to replace 22.32/7.29 * @param element element to be stored at the specified position 22.32/7.29 * @return the element previously at the specified position 22.32/7.29 * @throws UnsupportedOperationException if the set operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 * @throws NullPointerException if the specified element is null and 22.32/7.29 * this list does not permit null elements 22.32/7.29 * @throws IllegalArgumentException if some property of the specified 22.32/7.29 * element prevents it from being added to this list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * (index < 0 || index >= size()) 22.32/7.29 */ 22.32/7.29 E set(int index, E element); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Inserts the specified element at the specified position in this list 22.32/7.29 * (optional operation). Shifts the element currently at that position 22.32/7.29 * (if any) and any subsequent elements to the right (adds one to their 22.32/7.29 * indices). 22.32/7.29 * 22.32/7.29 * @param index index at which the specified element is to be inserted 22.32/7.29 * @param element element to be inserted 22.32/7.29 * @throws UnsupportedOperationException if the add operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this list 22.32/7.29 * @throws NullPointerException if the specified element is null and 22.32/7.29 * this list does not permit null elements 22.32/7.29 * @throws IllegalArgumentException if some property of the specified 22.32/7.29 * element prevents it from being added to this list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * (index < 0 || index > size()) 22.32/7.29 */ 22.32/7.29 void add(int index, E element); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Removes the element at the specified position in this list (optional 22.32/7.29 * operation). Shifts any subsequent elements to the left (subtracts one 22.32/7.29 * from their indices). Returns the element that was removed from the 22.32/7.29 * list. 22.32/7.29 * 22.32/7.29 * @param index the index of the element to be removed 22.32/7.29 * @return the element previously at the specified position 22.32/7.29 * @throws UnsupportedOperationException if the remove operation 22.32/7.29 * is not supported by this list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * (index < 0 || index >= size()) 22.32/7.29 */ 22.32/7.29 E remove(int index); 22.32/7.29 22.32/7.29 22.32/7.29 // Search Operations 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the index of the first occurrence of the specified element 22.32/7.29 * in this list, or -1 if this list does not contain the element. 22.32/7.29 * More formally, returns the lowest index i such that 22.32/7.29 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.29 * or -1 if there is no such index. 22.32/7.29 * 22.32/7.29 * @param o element to search for 22.32/7.29 * @return the index of the first occurrence of the specified element in 22.32/7.29 * this list, or -1 if this list does not contain the element 22.32/7.29 * @throws ClassCastException if the type of the specified element 22.32/7.29 * is incompatible with this list (optional) 22.32/7.29 * @throws NullPointerException if the specified element is null and this 22.32/7.29 * list does not permit null elements (optional) 22.32/7.29 */ 22.32/7.29 int indexOf(Object o); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns the index of the last occurrence of the specified element 22.32/7.29 * in this list, or -1 if this list does not contain the element. 22.32/7.29 * More formally, returns the highest index i such that 22.32/7.29 * (o==null ? get(i)==null : o.equals(get(i))), 22.32/7.29 * or -1 if there is no such index. 22.32/7.29 * 22.32/7.29 * @param o element to search for 22.32/7.29 * @return the index of the last occurrence of the specified element in 22.32/7.29 * this list, or -1 if this list does not contain the element 22.32/7.29 * @throws ClassCastException if the type of the specified element 22.32/7.29 * is incompatible with this list (optional) 22.32/7.29 * @throws NullPointerException if the specified element is null and this 22.32/7.29 * list does not permit null elements (optional) 22.32/7.29 */ 22.32/7.29 int lastIndexOf(Object o); 22.32/7.29 22.32/7.29 22.32/7.29 // List Iterators 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns a list iterator over the elements in this list (in proper 22.32/7.29 * sequence). 22.32/7.29 * 22.32/7.29 * @return a list iterator over the elements in this list (in proper 22.32/7.29 * sequence) 22.32/7.29 */ 22.32/7.29 ListIterator listIterator(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns a list iterator over the elements in this list (in proper 22.32/7.29 * sequence), starting at the specified position in the list. 22.32/7.29 * The specified index indicates the first element that would be 22.32/7.29 * returned by an initial call to {@link ListIterator#next next}. 22.32/7.29 * An initial call to {@link ListIterator#previous previous} would 22.32/7.29 * return the element with the specified index minus one. 22.32/7.29 * 22.32/7.29 * @param index index of the first element to be returned from the 22.32/7.29 * list iterator (by a call to {@link ListIterator#next next}) 22.32/7.29 * @return a list iterator over the elements in this list (in proper 22.32/7.29 * sequence), starting at the specified position in the list 22.32/7.29 * @throws IndexOutOfBoundsException if the index is out of range 22.32/7.29 * ({@code index < 0 || index > size()}) 22.32/7.29 */ 22.32/7.29 ListIterator listIterator(int index); 22.32/7.29 22.32/7.29 // View 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Returns a view of the portion of this list between the specified 22.32/7.29 * fromIndex, inclusive, and toIndex, exclusive. (If 22.32/7.29 * fromIndex and toIndex are equal, the returned list is 22.32/7.29 * empty.) The returned list is backed by this list, so non-structural 22.32/7.29 * changes in the returned list are reflected in this list, and vice-versa. 22.32/7.29 * The returned list supports all of the optional list operations supported 22.32/7.29 * by this list.

22.32/7.29 * 22.32/7.29 * This method eliminates the need for explicit range operations (of 22.32/7.29 * the sort that commonly exist for arrays). Any operation that expects 22.32/7.29 * a list can be used as a range operation by passing a subList view 22.32/7.29 * instead of a whole list. For example, the following idiom 22.32/7.29 * removes a range of elements from a list: 22.32/7.29 *

22.32/7.29	     *      list.subList(from, to).clear();
22.32/7.29	     * 
22.32/7.29 * Similar idioms may be constructed for indexOf and 22.32/7.29 * lastIndexOf, and all of the algorithms in the 22.32/7.29 * Collections class can be applied to a subList.

22.32/7.29 * 22.32/7.29 * The semantics of the list returned by this method become undefined if 22.32/7.29 * the backing list (i.e., this list) is structurally modified in 22.32/7.29 * any way other than via the returned list. (Structural modifications are 22.32/7.29 * those that change the size of this list, or otherwise perturb it in such 22.32/7.29 * a fashion that iterations in progress may yield incorrect results.) 22.32/7.29 * 22.32/7.29 * @param fromIndex low endpoint (inclusive) of the subList 22.32/7.29 * @param toIndex high endpoint (exclusive) of the subList 22.32/7.29 * @return a view of the specified range within this list 22.32/7.29 * @throws IndexOutOfBoundsException for an illegal endpoint index value 22.32/7.29 * (fromIndex < 0 || toIndex > size || 22.32/7.29 * fromIndex > toIndex) 22.32/7.29 */ 22.32/7.29 List subList(int fromIndex, int toIndex); 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Thrown by the nextElement method of an 22.32/7.29 * Enumeration to indicate that there are no more 22.32/7.29 * elements in the enumeration. 22.32/7.29 * 22.32/7.29 * @author unascribed 22.32/7.29 * @see java.util.Enumeration 22.32/7.29 * @see java.util.Enumeration#nextElement() 22.32/7.29 * @since JDK1.0 22.32/7.29 */ 22.32/7.29 public 22.32/7.29 class NoSuchElementException extends RuntimeException { 22.32/7.29 /** 22.32/7.29 * Constructs a NoSuchElementException with null 22.32/7.29 * as its error message string. 22.32/7.29 */ 22.32/7.29 public NoSuchElementException() { 22.32/7.29 super(); 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Constructs a NoSuchElementException, saving a reference 22.32/7.29 * to the error message string s for later retrieval by the 22.32/7.29 * getMessage method. 22.32/7.29 * 22.32/7.29 * @param s the detail message. 22.32/7.29 */ 22.32/7.29 public NoSuchElementException(String s) { 22.32/7.29 super(s); 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 /* 22.32/7.29 * This file is available under and governed by the GNU General Public 22.32/7.29 * License version 2 only, as published by the Free Software Foundation. 22.32/7.29 * However, the following notice accompanied the original version of this 22.32/7.29 * file: 22.32/7.29 * 22.32/7.29 * Written by Doug Lea with assistance from members of JCP JSR-166 22.32/7.29 * Expert Group and released to the public domain, as explained at 22.32/7.29 * http://creativecommons.org/licenses/publicdomain 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * A collection designed for holding elements prior to processing. 22.32/7.29 * Besides basic {@link java.util.Collection Collection} operations, 22.32/7.29 * queues provide additional insertion, extraction, and inspection 22.32/7.29 * operations. Each of these methods exists in two forms: one throws 22.32/7.29 * an exception if the operation fails, the other returns a special 22.32/7.29 * value (either null or false, depending on the 22.32/7.29 * operation). The latter form of the insert operation is designed 22.32/7.29 * specifically for use with capacity-restricted Queue 22.32/7.29 * implementations; in most implementations, insert operations cannot 22.32/7.29 * fail. 22.32/7.29 * 22.32/7.29 *

22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 * 22.32/7.29 *
Throws exceptionReturns special value
Insert{@link #add add(e)}{@link #offer offer(e)}
Remove{@link #remove remove()}{@link #poll poll()}
Examine{@link #element element()}{@link #peek peek()}
22.32/7.29 * 22.32/7.29 *

Queues typically, but do not necessarily, order elements in a 22.32/7.29 * FIFO (first-in-first-out) manner. Among the exceptions are 22.32/7.29 * priority queues, which order elements according to a supplied 22.32/7.29 * comparator, or the elements' natural ordering, and LIFO queues (or 22.32/7.29 * stacks) which order the elements LIFO (last-in-first-out). 22.32/7.29 * Whatever the ordering used, the head of the queue is that 22.32/7.29 * element which would be removed by a call to {@link #remove() } or 22.32/7.29 * {@link #poll()}. In a FIFO queue, all new elements are inserted at 22.32/7.29 * the tail of the queue. Other kinds of queues may use 22.32/7.29 * different placement rules. Every Queue implementation 22.32/7.29 * must specify its ordering properties. 22.32/7.29 * 22.32/7.29 *

The {@link #offer offer} method inserts an element if possible, 22.32/7.29 * otherwise returning false. This differs from the {@link 22.32/7.29 * java.util.Collection#add Collection.add} method, which can fail to 22.32/7.29 * add an element only by throwing an unchecked exception. The 22.32/7.29 * offer method is designed for use when failure is a normal, 22.32/7.29 * rather than exceptional occurrence, for example, in fixed-capacity 22.32/7.29 * (or "bounded") queues. 22.32/7.29 * 22.32/7.29 *

The {@link #remove()} and {@link #poll()} methods remove and 22.32/7.29 * return the head of the queue. 22.32/7.29 * Exactly which element is removed from the queue is a 22.32/7.29 * function of the queue's ordering policy, which differs from 22.32/7.29 * implementation to implementation. The remove() and 22.32/7.29 * poll() methods differ only in their behavior when the 22.32/7.29 * queue is empty: the remove() method throws an exception, 22.32/7.29 * while the poll() method returns null. 22.32/7.29 * 22.32/7.29 *

The {@link #element()} and {@link #peek()} methods return, but do 22.32/7.29 * not remove, the head of the queue. 22.32/7.29 * 22.32/7.29 *

The Queue interface does not define the blocking queue 22.32/7.29 * methods, which are common in concurrent programming. These methods, 22.32/7.29 * which wait for elements to appear or for space to become available, are 22.32/7.29 * defined in the {@link java.util.concurrent.BlockingQueue} interface, which 22.32/7.29 * extends this interface. 22.32/7.29 * 22.32/7.29 *

Queue implementations generally do not allow insertion 22.32/7.29 * of null elements, although some implementations, such as 22.32/7.29 * {@link LinkedList}, do not prohibit insertion of null. 22.32/7.29 * Even in the implementations that permit it, null should 22.32/7.29 * not be inserted into a Queue, as null is also 22.32/7.29 * used as a special return value by the poll method to 22.32/7.29 * indicate that the queue contains no elements. 22.32/7.29 * 22.32/7.29 *

Queue implementations generally do not define 22.32/7.29 * element-based versions of methods equals and 22.32/7.29 * hashCode but instead inherit the identity based versions 22.32/7.29 * from class Object, because element-based equality is not 22.32/7.29 * always well-defined for queues with the same elements but different 22.32/7.29 * ordering properties. 22.32/7.29 * 22.32/7.29 * 22.32/7.29 *

This interface is a member of the 22.32/7.29 * 22.32/7.29 * Java Collections Framework. 22.32/7.29 * 22.32/7.29 * @see java.util.Collection 22.32/7.29 * @see LinkedList 22.32/7.29 * @see PriorityQueue 22.32/7.29 * @see java.util.concurrent.LinkedBlockingQueue 22.32/7.29 * @see java.util.concurrent.BlockingQueue 22.32/7.29 * @see java.util.concurrent.ArrayBlockingQueue 22.32/7.29 * @see java.util.concurrent.LinkedBlockingQueue 22.32/7.29 * @see java.util.concurrent.PriorityBlockingQueue 22.32/7.29 * @since 1.5 22.32/7.29 * @author Doug Lea 22.32/7.29 * @param the type of elements held in this collection 22.32/7.29 */ 22.32/7.29 public interface Queue extends Collection { 22.32/7.29 /** 22.32/7.29 * Inserts the specified element into this queue if it is possible to do so 22.32/7.29 * immediately without violating capacity restrictions, returning 22.32/7.29 * true upon success and throwing an IllegalStateException 22.32/7.29 * if no space is currently available. 22.32/7.29 * 22.32/7.29 * @param e the element to add 22.32/7.29 * @return true (as specified by {@link Collection#add}) 22.32/7.29 * @throws IllegalStateException if the element cannot be added at this 22.32/7.29 * time due to capacity restrictions 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this queue 22.32/7.29 * @throws NullPointerException if the specified element is null and 22.32/7.29 * this queue does not permit null elements 22.32/7.29 * @throws IllegalArgumentException if some property of this element 22.32/7.29 * prevents it from being added to this queue 22.32/7.29 */ 22.32/7.29 boolean add(E e); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Inserts the specified element into this queue if it is possible to do 22.32/7.29 * so immediately without violating capacity restrictions. 22.32/7.29 * When using a capacity-restricted queue, this method is generally 22.32/7.29 * preferable to {@link #add}, which can fail to insert an element only 22.32/7.29 * by throwing an exception. 22.32/7.29 * 22.32/7.29 * @param e the element to add 22.32/7.29 * @return true if the element was added to this queue, else 22.32/7.29 * false 22.32/7.29 * @throws ClassCastException if the class of the specified element 22.32/7.29 * prevents it from being added to this queue 22.32/7.29 * @throws NullPointerException if the specified element is null and 22.32/7.29 * this queue does not permit null elements 22.32/7.29 * @throws IllegalArgumentException if some property of this element 22.32/7.29 * prevents it from being added to this queue 22.32/7.29 */ 22.32/7.29 boolean offer(E e); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Retrieves and removes the head of this queue. This method differs 22.32/7.29 * from {@link #poll poll} only in that it throws an exception if this 22.32/7.29 * queue is empty. 22.32/7.29 * 22.32/7.29 * @return the head of this queue 22.32/7.29 * @throws NoSuchElementException if this queue is empty 22.32/7.29 */ 22.32/7.29 E remove(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Retrieves and removes the head of this queue, 22.32/7.29 * or returns null if this queue is empty. 22.32/7.29 * 22.32/7.29 * @return the head of this queue, or null if this queue is empty 22.32/7.29 */ 22.32/7.29 E poll(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Retrieves, but does not remove, the head of this queue. This method 22.32/7.29 * differs from {@link #peek peek} only in that it throws an exception 22.32/7.29 * if this queue is empty. 22.32/7.29 * 22.32/7.29 * @return the head of this queue 22.32/7.29 * @throws NoSuchElementException if this queue is empty 22.32/7.29 */ 22.32/7.29 E element(); 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Retrieves, but does not remove, the head of this queue, 22.32/7.29 * or returns null if this queue is empty. 22.32/7.29 * 22.32/7.29 * @return the head of this queue, or null if this queue is empty 22.32/7.29 */ 22.32/7.29 E peek(); 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Marker interface used by List implementations to indicate that 22.32/7.29 * they support fast (generally constant time) random access. The primary 22.32/7.29 * purpose of this interface is to allow generic algorithms to alter their 22.32/7.29 * behavior to provide good performance when applied to either random or 22.32/7.29 * sequential access lists. 22.32/7.29 * 22.32/7.29 *

The best algorithms for manipulating random access lists (such as 22.32/7.29 * ArrayList) can produce quadratic behavior when applied to 22.32/7.29 * sequential access lists (such as LinkedList). Generic list 22.32/7.29 * algorithms are encouraged to check whether the given list is an 22.32/7.29 * instanceof this interface before applying an algorithm that would 22.32/7.29 * provide poor performance if it were applied to a sequential access list, 22.32/7.29 * and to alter their behavior if necessary to guarantee acceptable 22.32/7.29 * performance. 22.32/7.29 * 22.32/7.29 *

It is recognized that the distinction between random and sequential 22.32/7.29 * access is often fuzzy. For example, some List implementations 22.32/7.29 * provide asymptotically linear access times if they get huge, but constant 22.32/7.29 * access times in practice. Such a List implementation 22.32/7.29 * should generally implement this interface. As a rule of thumb, a 22.32/7.29 * List implementation should implement this interface if, 22.32/7.29 * for typical instances of the class, this loop: 22.32/7.29 *

22.32/7.29	 *     for (int i=0, n=list.size(); i < n; i++)
22.32/7.29	 *         list.get(i);
22.32/7.29	 * 
22.32/7.29 * runs faster than this loop: 22.32/7.29 *
22.32/7.29	 *     for (Iterator i=list.iterator(); i.hasNext(); )
22.32/7.29	 *         i.next();
22.32/7.29	 * 
22.32/7.29 * 22.32/7.29 *

This interface is a member of the 22.32/7.29 * 22.32/7.29 * Java Collections Framework. 22.32/7.29 * 22.32/7.29 * @since 1.4 22.32/7.29 */ 22.32/7.29 public interface RandomAccess { 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 public class Random { 22.32/7.29 static String[] args; 22.32/7.29 static int index = 0; 22.32/7.29 22.32/7.29 public static int random() { 22.32/7.29 String string = args[index]; 22.32/7.29 index++; 22.32/7.29 return string.length(); 22.32/7.29 } 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 /* 22.32/7.29 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. 22.32/7.29 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 22.32/7.29 * 22.32/7.29 * This code is free software; you can redistribute it and/or modify it 22.32/7.29 * under the terms of the GNU General Public License version 2 only, as 22.32/7.29 * published by the Free Software Foundation. Sun designates this 22.32/7.29 * particular file as subject to the "Classpath" exception as provided 22.32/7.29 * by Sun in the LICENSE file that accompanied this code. 22.32/7.29 * 22.32/7.29 * This code is distributed in the hope that it will be useful, but WITHOUT 22.32/7.29 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 22.32/7.29 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 22.32/7.29 * version 2 for more details (a copy is included in the LICENSE file that 22.32/7.29 * accompanied this code). 22.32/7.29 * 22.32/7.29 * You should have received a copy of the GNU General Public License version 22.32/7.29 * 2 along with this work; if not, write to the Free Software Foundation, 22.32/7.29 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 22.32/7.29 * 22.32/7.29 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 22.32/7.29 * CA 95054 USA or visit www.sun.com if you need additional information or 22.32/7.29 * have any questions. 22.32/7.29 */ 22.32/7.29 22.32/7.29 package javaUtilEx; 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Thrown to indicate that the requested operation is not supported.

22.32/7.29 * 22.32/7.29 * This class is a member of the 22.32/7.29 * 22.32/7.29 * Java Collections Framework. 22.32/7.29 * 22.32/7.29 * @author Josh Bloch 22.32/7.29 * @since 1.2 22.32/7.29 */ 22.32/7.29 public class UnsupportedOperationException extends RuntimeException { 22.32/7.29 /** 22.32/7.29 * Constructs an UnsupportedOperationException with no detail message. 22.32/7.29 */ 22.32/7.29 public UnsupportedOperationException() { 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Constructs an UnsupportedOperationException with the specified 22.32/7.29 * detail message. 22.32/7.29 * 22.32/7.29 * @param message the detail message 22.32/7.29 */ 22.32/7.29 public UnsupportedOperationException(String message) { 22.32/7.29 super(message); 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Constructs a new exception with the specified detail message and 22.32/7.29 * cause. 22.32/7.29 * 22.32/7.29 *

Note that the detail message associated with cause is 22.32/7.29 * not automatically incorporated in this exception's detail 22.32/7.29 * message. 22.32/7.29 * 22.32/7.29 * @param message the detail message (which is saved for later retrieval 22.32/7.29 * by the {@link Throwable#getMessage()} method). 22.32/7.29 * @param cause the cause (which is saved for later retrieval by the 22.32/7.29 * {@link Throwable#getCause()} method). (A null value 22.32/7.29 * is permitted, and indicates that the cause is nonexistent or 22.32/7.29 * unknown.) 22.32/7.29 * @since 1.5 22.32/7.29 */ 22.32/7.29 public UnsupportedOperationException(String message, Throwable cause) { 22.32/7.29 super(message, cause); 22.32/7.29 } 22.32/7.29 22.32/7.29 /** 22.32/7.29 * Constructs a new exception with the specified cause and a detail 22.32/7.29 * message of (cause==null ? null : cause.toString()) (which 22.32/7.29 * typically contains the class and detail message of cause). 22.32/7.29 * This constructor is useful for exceptions that are little more than 22.32/7.29 * wrappers for other throwables (for example, {@link 22.32/7.29 * java.security.PrivilegedActionException}). 22.32/7.29 * 22.32/7.29 * @param cause the cause (which is saved for later retrieval by the 22.32/7.29 * {@link Throwable#getCause()} method). (A null value is 22.32/7.29 * permitted, and indicates that the cause is nonexistent or 22.32/7.29 * unknown.) 22.32/7.29 * @since 1.5 22.32/7.29 */ 22.32/7.29 public UnsupportedOperationException(Throwable cause) { 22.32/7.29 super(cause); 22.32/7.29 } 22.32/7.29 22.32/7.29 static final long serialVersionUID = -1242599979055084673L; 22.32/7.29 } 22.32/7.29 22.32/7.29 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (3) JBCToGraph (EQUIVALENT) 22.32/7.29 Constructed TerminationGraph. 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (4) 22.32/7.29 Obligation: 22.32/7.29 Termination Graph based on JBC Program: 22.32/7.29 javaUtilEx.juLinkedListCreateListIteratorLoop.main([Ljava/lang/String;)V: Graph of 441 nodes with 2 SCCs. 22.32/7.29 22.32/7.29 22.32/7.29 22.32/7.29 javaUtilEx.juLinkedListCreateListIteratorLoop.createList(I)LjavaUtilEx/LinkedList;: Graph of 250 nodes with 1 SCC. 22.32/7.29 22.32/7.29 22.32/7.29 22.32/7.29 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (5) TerminationGraphToSCCProof (SOUND) 22.32/7.29 Splitted TerminationGraph to 3 SCCss. 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (6) 22.32/7.29 Complex Obligation (AND) 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (7) 22.32/7.29 Obligation: 22.32/7.29 SCC of termination graph based on JBC Program. 22.32/7.29 SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateListIteratorLoop.createList(I)LjavaUtilEx/LinkedList; 22.32/7.29 SCC calls the following helper methods: 22.32/7.29 Performed SCC analyses: 22.32/7.29 *Used field analysis yielded the following read fields: 22.32/7.29 *java.lang.String: [count] 22.32/7.29 *javaUtilEx.LinkedList: [header, size] 22.32/7.29 *javaUtilEx.LinkedList$Entry: [previous, next] 22.32/7.29 *javaUtilEx.AbstractList: [modCount] 22.32/7.29 *Marker field analysis yielded the following relations that could be markers: 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (8) SCCToIRSProof (SOUND) 22.32/7.29 Transformed FIGraph SCCs to intTRSs. Log: 22.32/7.29 Generated rules. Obtained 118 IRulesP rules: 22.32/7.29 f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(o8492sub), i1052)), i1085, i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5687_0_createList_LE(EOS(STATIC_5687(java.lang.Object(o8492sub), i1052)), i1085, i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5687_0_createList_LE(EOS(STATIC_5687(java.lang.Object(o8492sub), i1052)), i1085, i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5698_0_createList_Load(EOS(STATIC_5698(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: i1085 > 0 22.32/7.29 f5698_0_createList_Load(EOS(STATIC_5698(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5709_0_createList_New(EOS(STATIC_5709(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5709_0_createList_New(EOS(STATIC_5709(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5721_0_createList_Duplicate(EOS(STATIC_5721(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5721_0_createList_Duplicate(EOS(STATIC_5721(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5727_0_createList_InvokeMethod(EOS(STATIC_5727(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5727_0_createList_InvokeMethod(EOS(STATIC_5727(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5733_0_random_FieldAccess(EOS(STATIC_5733(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5733_0_random_FieldAccess(EOS(STATIC_5733(java.lang.Object(o8492sub), i1052)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5740_0_random_FieldAccess(EOS(STATIC_5740(java.lang.Object(o8492sub), i1052)), i1085, java.lang.Object(o8492sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5740_0_random_FieldAccess(EOS(STATIC_5740(java.lang.Object(o8492sub), i1052)), i1085, java.lang.Object(o8492sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5746_0_random_ArrayAccess(EOS(STATIC_5746(java.lang.Object(o8492sub), i1052)), i1085, java.lang.Object(o8492sub), i1052, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5746_0_random_ArrayAccess(EOS(STATIC_5746(java.lang.Object(ARRAY(i1133)), i1052)), i1085, java.lang.Object(ARRAY(i1133)), i1052, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5752_0_random_ArrayAccess(EOS(STATIC_5752(java.lang.Object(ARRAY(i1133)), i1052)), i1085, java.lang.Object(ARRAY(i1133)), i1052, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: i1133 >= 0 22.32/7.29 f5752_0_random_ArrayAccess(EOS(STATIC_5752(java.lang.Object(ARRAY(i1133)), i1135)), i1085, java.lang.Object(ARRAY(i1133)), i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5758_0_random_ArrayAccess(EOS(STATIC_5758(java.lang.Object(ARRAY(i1133)), i1135)), i1085, java.lang.Object(ARRAY(i1133)), i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5758_0_random_ArrayAccess(EOS(STATIC_5758(java.lang.Object(ARRAY(i1133)), i1135)), i1085, java.lang.Object(ARRAY(i1133)), i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5767_0_random_ArrayAccess(EOS(STATIC_5767(java.lang.Object(ARRAY(i1133)), i1135)), i1085, java.lang.Object(ARRAY(i1133)), i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5767_0_random_ArrayAccess(EOS(STATIC_5767(java.lang.Object(ARRAY(i1133)), i1135)), i1085, java.lang.Object(ARRAY(i1133)), i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5777_0_random_Store(EOS(STATIC_5777(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: i1135 < i1133 22.32/7.29 f5777_0_random_Store(EOS(STATIC_5777(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5788_0_random_FieldAccess(EOS(STATIC_5788(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5788_0_random_FieldAccess(EOS(STATIC_5788(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5798_0_random_ConstantStackPush(EOS(STATIC_5798(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5798_0_random_ConstantStackPush(EOS(STATIC_5798(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1135, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5808_0_random_IntArithmetic(EOS(STATIC_5808(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1135, 1, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5808_0_random_IntArithmetic(EOS(STATIC_5808(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1135, matching1, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5819_0_random_FieldAccess(EOS(STATIC_5819(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1135 + 1, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: i1135 >= 0 && matching1 = 1 22.32/7.29 f5819_0_random_FieldAccess(EOS(STATIC_5819(java.lang.Object(ARRAY(i1133)), i1135)), i1085, o9018, i1151, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5828_0_random_Load(EOS(STATIC_5828(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5828_0_random_Load(EOS(STATIC_5828(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5838_0_random_InvokeMethod(EOS(STATIC_5838(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o9018, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5838_0_random_InvokeMethod(EOS(STATIC_5838(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9372sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5848_0_random_InvokeMethod(EOS(STATIC_5848(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9372sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5848_0_random_InvokeMethod(EOS(STATIC_5848(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5858_0_random_InvokeMethod(EOS(STATIC_5858(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5858_0_random_InvokeMethod(EOS(STATIC_5858(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5865_0_length_Load(EOS(STATIC_5865(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5865_0_length_Load(EOS(STATIC_5865(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5876_0_length_FieldAccess(EOS(STATIC_5876(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(o9413sub), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5876_0_length_FieldAccess(EOS(STATIC_5876(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(java.lang.String(EOC, i1205)), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5883_0_length_FieldAccess(EOS(STATIC_5883(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(java.lang.String(EOC, i1205)), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5883_0_length_FieldAccess(EOS(STATIC_5883(java.lang.Object(ARRAY(i1133)), i1151)), i1085, java.lang.Object(java.lang.String(EOC, i1205)), o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5890_0_length_Return(EOS(STATIC_5890(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5890_0_length_Return(EOS(STATIC_5890(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5896_0_random_Return(EOS(STATIC_5896(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5896_0_random_Return(EOS(STATIC_5896(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5903_0_createList_InvokeMethod(EOS(STATIC_5903(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5903_0_createList_InvokeMethod(EOS(STATIC_5903(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5909_0__init__Load(EOS(STATIC_5909(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5909_0__init__Load(EOS(STATIC_5909(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5921_0__init__InvokeMethod(EOS(STATIC_5921(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5921_0__init__InvokeMethod(EOS(STATIC_5921(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5927_0__init__Load(EOS(STATIC_5927(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5927_0__init__Load(EOS(STATIC_5927(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5933_0__init__Load(EOS(STATIC_5933(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5933_0__init__Load(EOS(STATIC_5933(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5940_0__init__FieldAccess(EOS(STATIC_5940(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5940_0__init__FieldAccess(EOS(STATIC_5940(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5947_0__init__Return(EOS(STATIC_5947(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5947_0__init__Return(EOS(STATIC_5947(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5954_0_createList_InvokeMethod(EOS(STATIC_5954(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5954_0_createList_InvokeMethod(EOS(STATIC_5954(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5961_0_addLast_Load(EOS(STATIC_5961(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5961_0_addLast_Load(EOS(STATIC_5961(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5974_0_addLast_Load(EOS(STATIC_5974(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5974_0_addLast_Load(EOS(STATIC_5974(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5981_0_addLast_Load(EOS(STATIC_5981(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5981_0_addLast_Load(EOS(STATIC_5981(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5987_0_addLast_FieldAccess(EOS(STATIC_5987(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5987_0_addLast_FieldAccess(EOS(STATIC_5987(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5994_0_addLast_InvokeMethod(EOS(STATIC_5994(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5994_0_addLast_InvokeMethod(EOS(STATIC_5994(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5999_0_addBefore_New(EOS(STATIC_5999(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f5999_0_addBefore_New(EOS(STATIC_5999(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6009_0_addBefore_Duplicate(EOS(STATIC_6009(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6009_0_addBefore_Duplicate(EOS(STATIC_6009(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6013_0_addBefore_Load(EOS(STATIC_6013(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6013_0_addBefore_Load(EOS(STATIC_6013(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6017_0_addBefore_Load(EOS(STATIC_6017(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6017_0_addBefore_Load(EOS(STATIC_6017(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6022_0_addBefore_Load(EOS(STATIC_6022(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6022_0_addBefore_Load(EOS(STATIC_6022(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6026_0_addBefore_FieldAccess(EOS(STATIC_6026(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6026_0_addBefore_FieldAccess(EOS(STATIC_6026(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6030_0_addBefore_FieldAccess(EOS(STATIC_6030(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: o8497[LinkedList$Entry.next]o8497 > 0 && o8497[LinkedList$Entry.next]o8495 > 0 && o8497[LinkedList$Entry.previous]o8495 > 0 && o8497[LinkedList$Entry.previous]o8497 > 0 22.32/7.29 f6030_0_addBefore_FieldAccess(EOS(STATIC_6030(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6034_0_addBefore_FieldAccess(EOS(STATIC_6034(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: o8496[LinkedList$Entry.previous]o8496 > 0 && o8496[LinkedList$Entry.previous]o8495 > 0 22.32/7.29 f6034_0_addBefore_FieldAccess(EOS(STATIC_6034(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6038_0_addBefore_FieldAccess(EOS(STATIC_6038(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: o8498[LinkedList$Entry.previous]o8495 > 0 && o8498[LinkedList$Entry.previous]o8498 > 0 22.32/7.29 f6038_0_addBefore_FieldAccess(EOS(STATIC_6038(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6041_0_addBefore_InvokeMethod(EOS(STATIC_6041(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6041_0_addBefore_InvokeMethod(EOS(STATIC_6041(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6044_0__init__Load(EOS(STATIC_6044(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6044_0__init__Load(EOS(STATIC_6044(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6049_0__init__InvokeMethod(EOS(STATIC_6049(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6049_0__init__InvokeMethod(EOS(STATIC_6049(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6052_0__init__Load(EOS(STATIC_6052(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6052_0__init__Load(EOS(STATIC_6052(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6056_0__init__Load(EOS(STATIC_6056(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6056_0__init__Load(EOS(STATIC_6056(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6059_0__init__FieldAccess(EOS(STATIC_6059(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6059_0__init__FieldAccess(EOS(STATIC_6059(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6064_0__init__Load(EOS(STATIC_6064(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6064_0__init__Load(EOS(STATIC_6064(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6071_0__init__Load(EOS(STATIC_6071(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6071_0__init__Load(EOS(STATIC_6071(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6078_0__init__FieldAccess(EOS(STATIC_6078(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6078_0__init__FieldAccess(EOS(STATIC_6078(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6086_0__init__Load(EOS(STATIC_6086(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6086_0__init__Load(EOS(STATIC_6086(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6094_0__init__Load(EOS(STATIC_6094(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6094_0__init__Load(EOS(STATIC_6094(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6102_0__init__FieldAccess(EOS(STATIC_6102(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6102_0__init__FieldAccess(EOS(STATIC_6102(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6110_0__init__Return(EOS(STATIC_6110(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6110_0__init__Return(EOS(STATIC_6110(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6118_0_addBefore_Store(EOS(STATIC_6118(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6118_0_addBefore_Store(EOS(STATIC_6118(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6125_0_addBefore_Load(EOS(STATIC_6125(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6125_0_addBefore_Load(EOS(STATIC_6125(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6132_0_addBefore_FieldAccess(EOS(STATIC_6132(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6132_0_addBefore_FieldAccess(EOS(STATIC_6132(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6139_0_addBefore_Load(EOS(STATIC_6139(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6139_0_addBefore_Load(EOS(STATIC_6139(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6145_0_addBefore_FieldAccess(EOS(STATIC_6145(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6145_0_addBefore_FieldAccess(EOS(STATIC_6145(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f6152_0_addBefore_FieldAccess(EOS(STATIC_6152(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: o8497[LinkedList$Entry.next]o8497 > 0 && o8498[LinkedList$Entry.previous]o8497 > 0 && o8497[LinkedList$Entry.previous]o8497 > 0 && o8497[LinkedList$Entry.next]o8498 > 0 && o8497[LinkedList$Entry.previous]o8498 > 0 && o8498[LinkedList$Entry.previous]o8498 > 0 22.32/7.29 f6145_0_addBefore_FieldAccess(EOS(STATIC_6145(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.next]o8496, o10573[LinkedList$Entry.previous]o8496, o10573[LinkedList$Entry.previous]o8496, o10573[LinkedList$Entry.next]o10573, o10573[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.next]o10573, o10573[LinkedList$Entry.previous]o10573, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6153_0_addBefore_FieldAccess(EOS(STATIC_6153(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6152_0_addBefore_FieldAccess(EOS(STATIC_6152(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6160_0_addBefore_FieldAccess(EOS(STATIC_6160(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: o8498[LinkedList$Entry.previous]o8496 > 0 && o8496[LinkedList$Entry.previous]o8496 > 0 && o8496[LinkedList$Entry.previous]o8498 > 0 && o8498[LinkedList$Entry.previous]o8498 > 0 22.32/7.29 f6160_0_addBefore_FieldAccess(EOS(STATIC_6160(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6169_0_addBefore_Load(EOS(STATIC_6169(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6169_0_addBefore_Load(EOS(STATIC_6169(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6176_0_addBefore_FieldAccess(EOS(STATIC_6176(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6176_0_addBefore_FieldAccess(EOS(STATIC_6176(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6178_0_addBefore_Load(EOS(STATIC_6178(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6178_0_addBefore_Load(EOS(STATIC_6178(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6181_0_addBefore_FieldAccess(EOS(STATIC_6181(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6181_0_addBefore_FieldAccess(EOS(STATIC_6181(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6184_0_addBefore_Load(EOS(STATIC_6184(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6184_0_addBefore_Load(EOS(STATIC_6184(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6187_0_addBefore_Duplicate(EOS(STATIC_6187(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6187_0_addBefore_Duplicate(EOS(STATIC_6187(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6190_0_addBefore_FieldAccess(EOS(STATIC_6190(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6190_0_addBefore_FieldAccess(EOS(STATIC_6190(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6193_0_addBefore_ConstantStackPush(EOS(STATIC_6193(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6193_0_addBefore_ConstantStackPush(EOS(STATIC_6193(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6195_0_addBefore_IntArithmetic(EOS(STATIC_6195(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6195_0_addBefore_IntArithmetic(EOS(STATIC_6195(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6198_0_addBefore_FieldAccess(EOS(STATIC_6198(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6198_0_addBefore_FieldAccess(EOS(STATIC_6198(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6201_0_addBefore_Load(EOS(STATIC_6201(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6201_0_addBefore_Load(EOS(STATIC_6201(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6204_0_addBefore_Duplicate(EOS(STATIC_6204(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6204_0_addBefore_Duplicate(EOS(STATIC_6204(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6208_0_addBefore_FieldAccess(EOS(STATIC_6208(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6208_0_addBefore_FieldAccess(EOS(STATIC_6208(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6212_0_addBefore_ConstantStackPush(EOS(STATIC_6212(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6212_0_addBefore_ConstantStackPush(EOS(STATIC_6212(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6216_0_addBefore_IntArithmetic(EOS(STATIC_6216(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6216_0_addBefore_IntArithmetic(EOS(STATIC_6216(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6220_0_addBefore_FieldAccess(EOS(STATIC_6220(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6220_0_addBefore_FieldAccess(EOS(STATIC_6220(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6224_0_addBefore_Load(EOS(STATIC_6224(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6224_0_addBefore_Load(EOS(STATIC_6224(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6227_0_addBefore_Return(EOS(STATIC_6227(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6227_0_addBefore_Return(EOS(STATIC_6227(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6230_0_addLast_StackPop(EOS(STATIC_6230(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6230_0_addLast_StackPop(EOS(STATIC_6230(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6233_0_addLast_Return(EOS(STATIC_6233(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6233_0_addLast_Return(EOS(STATIC_6233(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6235_0_createList_Inc(EOS(STATIC_6235(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6235_0_createList_Inc(EOS(STATIC_6235(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6238_0_createList_JMP(EOS(STATIC_6238(java.lang.Object(ARRAY(i1133)), i1151)), i1085 + -1, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6238_0_createList_JMP(EOS(STATIC_6238(java.lang.Object(ARRAY(i1133)), i1151)), i1369, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f6241_0_createList_Load(EOS(STATIC_6241(java.lang.Object(ARRAY(i1133)), i1151)), i1369, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6241_0_createList_Load(EOS(STATIC_6241(java.lang.Object(ARRAY(i1133)), i1151)), i1369, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498, o8497[LinkedList$Entry.previous]o8498) -> f5664_0_createList_Load(EOS(STATIC_5664(java.lang.Object(ARRAY(i1133)), i1151)), i1369, o8497[LinkedList$Entry.next]o8496, o9823[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o9823[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o9823[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o9823, o8497[LinkedList$Entry.previous]o9823, o8496[LinkedList$Entry.previous]o9823, o9823[LinkedList$Entry.previous]o9823) :|: TRUE 22.32/7.29 f5664_0_createList_Load(EOS(STATIC_5664(java.lang.Object(o8492sub), i1052)), i1054, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) -> f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(o8492sub), i1052)), i1054, i1054, o8497[LinkedList$Entry.next]o8496, o8498[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.previous]o8496, o8497[LinkedList$Entry.next]o8497, o8497[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o8498[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o8497, o8498[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.previous]o8495, o8497[LinkedList$Entry.previous]o8497, o8497[LinkedList$Entry.next]o8498, o8497[LinkedList$Entry.previous]o8498, o8496[LinkedList$Entry.previous]o8498, o8498[LinkedList$Entry.previous]o8498) :|: TRUE 22.32/7.29 f6153_0_addBefore_FieldAccess(EOS(STATIC_6153(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6162_0_addBefore_FieldAccess(EOS(STATIC_6162(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: o10573[LinkedList$Entry.previous]o8496 > 0 && o8496[LinkedList$Entry.previous]o8496 > 0 && o8496[LinkedList$Entry.previous]o10573 > 0 && o10573[LinkedList$Entry.previous]o10573 > 0 22.32/7.29 f6162_0_addBefore_FieldAccess(EOS(STATIC_6162(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6170_0_addBefore_Load(EOS(STATIC_6170(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6170_0_addBefore_Load(EOS(STATIC_6170(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6177_0_addBefore_FieldAccess(EOS(STATIC_6177(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6177_0_addBefore_FieldAccess(EOS(STATIC_6177(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6179_0_addBefore_Load(EOS(STATIC_6179(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6179_0_addBefore_Load(EOS(STATIC_6179(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6182_0_addBefore_FieldAccess(EOS(STATIC_6182(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6182_0_addBefore_FieldAccess(EOS(STATIC_6182(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6185_0_addBefore_Load(EOS(STATIC_6185(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6185_0_addBefore_Load(EOS(STATIC_6185(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6188_0_addBefore_Duplicate(EOS(STATIC_6188(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6188_0_addBefore_Duplicate(EOS(STATIC_6188(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6191_0_addBefore_FieldAccess(EOS(STATIC_6191(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6191_0_addBefore_FieldAccess(EOS(STATIC_6191(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6194_0_addBefore_ConstantStackPush(EOS(STATIC_6194(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6194_0_addBefore_ConstantStackPush(EOS(STATIC_6194(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6196_0_addBefore_IntArithmetic(EOS(STATIC_6196(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6196_0_addBefore_IntArithmetic(EOS(STATIC_6196(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6199_0_addBefore_FieldAccess(EOS(STATIC_6199(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6199_0_addBefore_FieldAccess(EOS(STATIC_6199(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6202_0_addBefore_Load(EOS(STATIC_6202(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6202_0_addBefore_Load(EOS(STATIC_6202(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6205_0_addBefore_Duplicate(EOS(STATIC_6205(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6205_0_addBefore_Duplicate(EOS(STATIC_6205(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6209_0_addBefore_FieldAccess(EOS(STATIC_6209(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6209_0_addBefore_FieldAccess(EOS(STATIC_6209(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6213_0_addBefore_ConstantStackPush(EOS(STATIC_6213(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6213_0_addBefore_ConstantStackPush(EOS(STATIC_6213(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6217_0_addBefore_IntArithmetic(EOS(STATIC_6217(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6217_0_addBefore_IntArithmetic(EOS(STATIC_6217(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6221_0_addBefore_FieldAccess(EOS(STATIC_6221(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6221_0_addBefore_FieldAccess(EOS(STATIC_6221(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6225_0_addBefore_Load(EOS(STATIC_6225(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6225_0_addBefore_Load(EOS(STATIC_6225(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6228_0_addBefore_Return(EOS(STATIC_6228(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6228_0_addBefore_Return(EOS(STATIC_6228(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6231_0_addLast_StackPop(EOS(STATIC_6231(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6231_0_addLast_StackPop(EOS(STATIC_6231(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6234_0_addLast_Return(EOS(STATIC_6234(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6234_0_addLast_Return(EOS(STATIC_6234(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6236_0_createList_Inc(EOS(STATIC_6236(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6236_0_createList_Inc(EOS(STATIC_6236(java.lang.Object(ARRAY(i1133)), i1151)), i1085, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6239_0_createList_JMP(EOS(STATIC_6239(java.lang.Object(ARRAY(i1133)), i1151)), i1085 + -1, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6239_0_createList_JMP(EOS(STATIC_6239(java.lang.Object(ARRAY(i1133)), i1151)), i1370, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f6242_0_createList_Load(EOS(STATIC_6242(java.lang.Object(ARRAY(i1133)), i1151)), i1370, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) :|: TRUE 22.32/7.29 f6242_0_createList_Load(EOS(STATIC_6242(java.lang.Object(ARRAY(i1133)), i1151)), i1370, o10573[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o10573) -> f5664_0_createList_Load(EOS(STATIC_5664(java.lang.Object(ARRAY(i1133)), i1151)), i1370, o10573[LinkedList$Entry.next]o8496, o9823[LinkedList$Entry.previous]o8496, o10573[LinkedList$Entry.previous]o8496, o10573[LinkedList$Entry.next]o10573, o10573[LinkedList$Entry.next]o8495, o8496[LinkedList$Entry.previous]o8496, o8496[LinkedList$Entry.previous]o8495, o9823[LinkedList$Entry.previous]o8495, o8496[LinkedList$Entry.previous]o10573, o9823[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.previous]o8495, o10573[LinkedList$Entry.previous]o10573, o10573[LinkedList$Entry.next]o9823, o10573[LinkedList$Entry.previous]o9823, o8496[LinkedList$Entry.previous]o9823, o9823[LinkedList$Entry.previous]o9823) :|: o10573[LinkedList$Entry.next]o10573 = 4 && o9823[LinkedList$Entry.previous]o10573 = 1 && o10573[LinkedList$Entry.next]o9823 = 1 22.32/7.29 Combined rules. Obtained 2 IRulesP rules: 22.32/7.29 f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(ARRAY(i1133:0)), i1052:0)), i1085:0, i1085:0, o8497[LinkedList$Entry.next]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0) -> f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(ARRAY(i1133:0)), i1052:0 + 1)), i1085:0 - 1, i1085:0 - 1, o10573[LinkedList$Entry.next]o8496:0, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0) :|: i1085:0 > 0 && i1133:0 > -1 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 22.32/7.29 f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(ARRAY(i1133:0)), i1052:0)), i1085:0, i1085:0, o8497[LinkedList$Entry.next]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.previous]o8495:0, o8497[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8498:0, o8497[LinkedList$Entry.previous]o8498:0, o8496[LinkedList$Entry.previous]o8498:0, o8498[LinkedList$Entry.previous]o8498:0) -> f5676_0_createList_LE(EOS(STATIC_5676(java.lang.Object(ARRAY(i1133:0)), i1052:0 + 1)), i1085:0 - 1, i1085:0 - 1, o8497[LinkedList$Entry.next]o8496:0, o9823[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o9823[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.previous]o8495:0, o8497[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o9823:0, o8497[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0) :|: i1085:0 > 0 && i1133:0 > -1 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8497[LinkedList$Entry.previous]o8495:0 > 0 && o8497[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8498[LinkedList$Entry.previous]o8498:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8497[LinkedList$Entry.next]o8498:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && o8497[LinkedList$Entry.previous]o8498:0 > 0 && o8496[LinkedList$Entry.previous]o8498:0 > 0 22.32/7.29 Filtered duplicate arguments: 22.32/7.29 f5676_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) -> f5676_0_createList_LE(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) 22.32/7.29 Filtered unneeded arguments: 22.32/7.29 f5676_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) -> f5676_0_createList_LE(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) 22.32/7.29 Finished conversion. Obtained 2 rules.P rules: 22.32/7.29 f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, i1133:0, i1052:0) -> f5676_0_createList_LE(i1085:0 - 1, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, i1052:0 + 1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 22.32/7.29 f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.previous]o8495:0, o8497[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8498:0, o8497[LinkedList$Entry.previous]o8498:0, o8496[LinkedList$Entry.previous]o8498:0, o8498[LinkedList$Entry.previous]o8498:0, i1133:0, i1052:0) -> f5676_0_createList_LE(i1085:0 - 1, o9823[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o9823[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.previous]o8495:0, o8497[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o9823:0, o8497[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, i1052:0 + 1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8497[LinkedList$Entry.previous]o8495:0 > 0 && o8497[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8498[LinkedList$Entry.previous]o8498:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8497[LinkedList$Entry.next]o8498:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8498:0 > 0 && o8497[LinkedList$Entry.previous]o8498:0 > 0 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (9) 22.32/7.29 Obligation: 22.32/7.29 Rules: 22.32/7.29 f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, i1133:0, i1052:0) -> f5676_0_createList_LE(i1085:0 - 1, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, i1052:0 + 1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 22.32/7.29 f5676_0_createList_LE(x, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) -> f5676_0_createList_LE(x - 1, x18, x2, x3, x4, x5, x6, x19, x8, x20, x10, x11, x21, x22, x23, x24, x16, x17 + 1) :|: x16 > -1 && x > 0 && x16 > x17 && x17 > -1 && x4 > 0 && x3 > 0 && x10 > 0 && x11 > 0 && x6 > 0 && x5 > 0 && x15 > 0 && x7 > 0 && x9 > 0 && x12 > 0 && x1 > 0 && x14 > 0 && x13 > 0 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (10) IRSFormatTransformerProof (EQUIVALENT) 22.32/7.29 Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (11) 22.32/7.29 Obligation: 22.32/7.29 Rules: 22.32/7.29 f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, i1133:0, i1052:0) -> f5676_0_createList_LE(arith, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, arith1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && arith = i1085:0 - 1 && arith1 = i1052:0 + 1 22.32/7.29 f5676_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5676_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (12) IRSwTTerminationDigraphProof (EQUIVALENT) 22.32/7.29 Constructed termination digraph! 22.32/7.29 Nodes: 22.32/7.29 (1) f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, i1133:0, i1052:0) -> f5676_0_createList_LE(arith, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, arith1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && arith = i1085:0 - 1 && arith1 = i1052:0 + 1 22.32/7.29 (2) f5676_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5676_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 22.32/7.29 22.32/7.29 Arcs: 22.32/7.29 (1) -> (2) 22.32/7.29 (2) -> (1), (2) 22.32/7.29 22.32/7.29 This digraph is fully evaluated! 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (13) 22.32/7.29 Obligation: 22.32/7.29 22.32/7.29 Termination digraph: 22.32/7.29 Nodes: 22.32/7.29 (1) f5676_0_createList_LE(i1085:0, o8498[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, o8497[LinkedList$Entry.next]o8497:0, o8497[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, o8497[LinkedList$Entry.next]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, o8496[LinkedList$Entry.previous]o8497:0, o8498[LinkedList$Entry.previous]o8497:0, i1133:0, i1052:0) -> f5676_0_createList_LE(arith, o9823[LinkedList$Entry.previous]o8496:0, o8498[LinkedList$Entry.previous]o8496:0, 4, o10573[LinkedList$Entry.next]o8495:0, o8496[LinkedList$Entry.previous]o8496:0, o8496[LinkedList$Entry.previous]o8495:0, o9823[LinkedList$Entry.previous]o8495:0, o8496[LinkedList$Entry.previous]o8497:0, 1, o8498[LinkedList$Entry.previous]o8495:0, o8498[LinkedList$Entry.previous]o8497:0, 1, o10573[LinkedList$Entry.previous]o9823:0, o8496[LinkedList$Entry.previous]o9823:0, o9823[LinkedList$Entry.previous]o9823:0, i1133:0, arith1) :|: i1133:0 > -1 && i1085:0 > 0 && i1133:0 > i1052:0 && i1052:0 > -1 && o8497[LinkedList$Entry.next]o8495:0 > 0 && o8497[LinkedList$Entry.next]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0 > 0 && o8496[LinkedList$Entry.previous]o8497:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0 > 0 && arith = i1085:0 - 1 && arith1 = i1052:0 + 1 22.32/7.29 (2) f5676_0_createList_LE(x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42) -> f5676_0_createList_LE(x43, x44, x27, x28, x29, x30, x31, x45, x33, x46, x35, x36, x47, x48, x49, x50, x41, x51) :|: x41 > -1 && x25 > 0 && x41 > x42 && x42 > -1 && x29 > 0 && x28 > 0 && x35 > 0 && x36 > 0 && x31 > 0 && x30 > 0 && x40 > 0 && x32 > 0 && x34 > 0 && x37 > 0 && x26 > 0 && x39 > 0 && x38 > 0 && x43 = x25 - 1 && x51 = x42 + 1 22.32/7.29 22.32/7.29 Arcs: 22.32/7.29 (1) -> (2) 22.32/7.29 (2) -> (1), (2) 22.32/7.29 22.32/7.29 This digraph is fully evaluated! 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (14) IntTRSCompressionProof (EQUIVALENT) 22.32/7.29 Compressed rules. 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (15) 22.32/7.29 Obligation: 22.32/7.29 Rules: 22.32/7.29 f5676_0_createList_LE(i1085:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8497[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, i1133:0:0, i1052:0:0) -> f5676_0_createList_LE(i1085:0:0 - 1, o9823[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, 4, o10573[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o9823[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, 1, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, 1, o10573[LinkedList$Entry.previous]o9823:0:0, o8496[LinkedList$Entry.previous]o9823:0:0, o9823[LinkedList$Entry.previous]o9823:0:0, i1133:0:0, i1052:0:0 + 1) :|: o8496[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0:0 > 0 && o8497[LinkedList$Entry.next]o8497:0:0 > 0 && o8497[LinkedList$Entry.next]o8495:0:0 > 0 && i1052:0:0 > -1 && i1133:0:0 > i1052:0:0 && i1085:0:0 > 0 && i1133:0:0 > -1 22.32/7.29 f5676_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f5676_0_createList_LE(x25:0 - 1, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, x42:0 + 1) :|: x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (16) TempFilterProof (SOUND) 22.32/7.29 Used the following sort dictionary for filtering: 22.32/7.29 f5676_0_createList_LE(INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER, INTEGER) 22.32/7.29 Replaced non-predefined constructor symbols by 0. 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (17) 22.32/7.29 Obligation: 22.32/7.29 Rules: 22.32/7.29 f5676_0_createList_LE(i1085:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8497[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, i1133:0:0, i1052:0:0) -> f5676_0_createList_LE(c, o9823[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, c1, o10573[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o9823[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, c2, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, c3, o10573[LinkedList$Entry.previous]o9823:0:0, o8496[LinkedList$Entry.previous]o9823:0:0, o9823[LinkedList$Entry.previous]o9823:0:0, i1133:0:0, c4) :|: c4 = i1052:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1085:0:0 - 1))) && (o8496[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0:0 > 0 && o8497[LinkedList$Entry.next]o8497:0:0 > 0 && o8497[LinkedList$Entry.next]o8495:0:0 > 0 && i1052:0:0 > -1 && i1133:0:0 > i1052:0:0 && i1085:0:0 > 0 && i1133:0:0 > -1) 22.32/7.29 f5676_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f5676_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (18) RankingReductionPairProof (EQUIVALENT) 22.32/7.29 Interpretation: 22.32/7.29 [ f5676_0_createList_LE ] = f5676_0_createList_LE_1 22.32/7.29 22.32/7.29 The following rules are decreasing: 22.32/7.29 f5676_0_createList_LE(i1085:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8497[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, i1133:0:0, i1052:0:0) -> f5676_0_createList_LE(c, o9823[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, c1, o10573[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o9823[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, c2, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, c3, o10573[LinkedList$Entry.previous]o9823:0:0, o8496[LinkedList$Entry.previous]o9823:0:0, o9823[LinkedList$Entry.previous]o9823:0:0, i1133:0:0, c4) :|: c4 = i1052:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1085:0:0 - 1))) && (o8496[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0:0 > 0 && o8497[LinkedList$Entry.next]o8497:0:0 > 0 && o8497[LinkedList$Entry.next]o8495:0:0 > 0 && i1052:0:0 > -1 && i1133:0:0 > i1052:0:0 && i1085:0:0 > 0 && i1133:0:0 > -1) 22.32/7.29 f5676_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f5676_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 22.32/7.29 22.32/7.29 The following rules are bounded: 22.32/7.29 f5676_0_createList_LE(i1085:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8497[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8497[LinkedList$Entry.next]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, i1133:0:0, i1052:0:0) -> f5676_0_createList_LE(c, o9823[LinkedList$Entry.previous]o8496:0:0, o8498[LinkedList$Entry.previous]o8496:0:0, c1, o10573[LinkedList$Entry.next]o8495:0:0, o8496[LinkedList$Entry.previous]o8496:0:0, o8496[LinkedList$Entry.previous]o8495:0:0, o9823[LinkedList$Entry.previous]o8495:0:0, o8496[LinkedList$Entry.previous]o8497:0:0, c2, o8498[LinkedList$Entry.previous]o8495:0:0, o8498[LinkedList$Entry.previous]o8497:0:0, c3, o10573[LinkedList$Entry.previous]o9823:0:0, o8496[LinkedList$Entry.previous]o9823:0:0, o9823[LinkedList$Entry.previous]o9823:0:0, i1133:0:0, c4) :|: c4 = i1052:0:0 + 1 && (c3 = 1 && (c2 = 1 && (c1 = 4 && c = i1085:0:0 - 1))) && (o8496[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8496:0:0 > 0 && o8496[LinkedList$Entry.previous]o8495:0:0 > 0 && o8498[LinkedList$Entry.previous]o8497:0:0 > 0 && o8498[LinkedList$Entry.previous]o8495:0:0 > 0 && o8497[LinkedList$Entry.next]o8497:0:0 > 0 && o8497[LinkedList$Entry.next]o8495:0:0 > 0 && i1052:0:0 > -1 && i1133:0:0 > i1052:0:0 && i1085:0:0 > 0 && i1133:0:0 > -1) 22.32/7.29 f5676_0_createList_LE(x25:0, x26:0, x27:0, x28:0, x29:0, x30:0, x31:0, x32:0, x33:0, x34:0, x35:0, x36:0, x37:0, x38:0, x39:0, x40:0, x41:0, x42:0) -> f5676_0_createList_LE(c5, x44:0, x27:0, x28:0, x29:0, x30:0, x31:0, x45:0, x33:0, x46:0, x35:0, x36:0, x47:0, x48:0, x49:0, x50:0, x41:0, c6) :|: c6 = x42:0 + 1 && c5 = x25:0 - 1 && (x39:0 > 0 && x38:0 > 0 && x26:0 > 0 && x37:0 > 0 && x34:0 > 0 && x32:0 > 0 && x40:0 > 0 && x30:0 > 0 && x31:0 > 0 && x36:0 > 0 && x35:0 > 0 && x28:0 > 0 && x29:0 > 0 && x42:0 > -1 && x42:0 < x41:0 && x25:0 > 0 && x41:0 > -1) 22.32/7.29 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (19) 22.32/7.29 YES 22.32/7.29 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (20) 22.32/7.29 Obligation: 22.32/7.29 SCC of termination graph based on JBC Program. 22.32/7.29 SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateListIteratorLoop.main([Ljava/lang/String;)V 22.32/7.29 SCC calls the following helper methods: 22.32/7.29 Performed SCC analyses: 22.32/7.29 *Used field analysis yielded the following read fields: 22.32/7.29 *javaUtilEx.LinkedList$ListItr: [this$0, expectedModCount, nextIndex, next, lastReturned] 22.32/7.29 *javaUtilEx.AbstractList: [modCount] 22.32/7.29 *javaUtilEx.LinkedList: [size] 22.32/7.29 *javaUtilEx.LinkedList$Entry: [next, element] 22.32/7.29 *Marker field analysis yielded the following relations that could be markers: 22.32/7.29 *javaUtilEx.LinkedList$ListItr.nextIndex > i1463 (Introduced counter i1546) 22.32/7.29 *javaUtilEx.LinkedList$ListItr.expectedModCount = i947 (Introduced counter i1547) 22.32/7.29 *javaUtilEx.AbstractList.modCount = i947 (Introduced counter i1548) 22.32/7.29 *javaUtilEx.LinkedList$ListItr.nextIndex != i1341 (Introduced counter i1549) 22.32/7.29 *javaUtilEx.LinkedList$ListItr.nextIndex != i1463 (Introduced counter i1550) 22.32/7.29 ---------------------------------------- 22.32/7.29 22.32/7.29 (21) SCCToIRSProof (SOUND) 22.32/7.29 Transformed FIGraph SCCs to intTRSs. Log: 22.32/7.29 Generated rules. Obtained 61 IRulesP rules: 22.32/7.29 f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6407_0_hasNext_ConstantStackPush(EOS(STATIC_6407), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: i1463 < i1341 22.32/7.29 f6407_0_hasNext_ConstantStackPush(EOS(STATIC_6407), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6409_0_hasNext_JMP(EOS(STATIC_6409), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), 1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6409_0_hasNext_JMP(EOS(STATIC_6409), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), matching1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6411_0_hasNext_Return(EOS(STATIC_6411), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), 1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE && matching1 = 1 22.32/7.29 f6411_0_hasNext_Return(EOS(STATIC_6411), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), matching1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6413_0_main_EQ(EOS(STATIC_6413), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), 1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE && matching1 = 1 22.32/7.29 f6413_0_main_EQ(EOS(STATIC_6413), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), matching1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6414_0_main_Load(EOS(STATIC_6414), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: 1 > 0 && matching1 = 1 22.32/7.29 f6414_0_main_Load(EOS(STATIC_6414), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6415_0_main_InvokeMethod(EOS(STATIC_6415), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6415_0_main_InvokeMethod(EOS(STATIC_6415), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6416_0_next_Load(EOS(STATIC_6416), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6416_0_next_Load(EOS(STATIC_6416), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6417_0_next_InvokeMethod(EOS(STATIC_6417), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6417_0_next_InvokeMethod(EOS(STATIC_6417), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6418_0_checkForComodification_Load(EOS(STATIC_6418), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6418_0_checkForComodification_Load(EOS(STATIC_6418), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6419_0_checkForComodification_FieldAccess(EOS(STATIC_6419), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6419_0_checkForComodification_FieldAccess(EOS(STATIC_6419), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6420_0_checkForComodification_FieldAccess(EOS(STATIC_6420), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6420_0_checkForComodification_FieldAccess(EOS(STATIC_6420), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6421_0_checkForComodification_Load(EOS(STATIC_6421), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6421_0_checkForComodification_Load(EOS(STATIC_6421), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6422_0_checkForComodification_FieldAccess(EOS(STATIC_6422), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6422_0_checkForComodification_FieldAccess(EOS(STATIC_6422), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6423_0_checkForComodification_EQ(EOS(STATIC_6423), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, i947, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6423_0_checkForComodification_EQ(EOS(STATIC_6423), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i947, i947, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6424_0_checkForComodification_Return(EOS(STATIC_6424), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6424_0_checkForComodification_Return(EOS(STATIC_6424), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6425_0_next_Load(EOS(STATIC_6425), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6425_0_next_Load(EOS(STATIC_6425), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6426_0_next_FieldAccess(EOS(STATIC_6426), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6426_0_next_FieldAccess(EOS(STATIC_6426), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6427_0_next_Load(EOS(STATIC_6427), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6427_0_next_Load(EOS(STATIC_6427), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6428_0_next_FieldAccess(EOS(STATIC_6428), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6428_0_next_FieldAccess(EOS(STATIC_6428), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6429_0_next_InvokeMethod(EOS(STATIC_6429), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6429_0_next_InvokeMethod(EOS(STATIC_6429), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6430_0_access$100_Load(EOS(STATIC_6430), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6430_0_access$100_Load(EOS(STATIC_6430), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6431_0_access$100_FieldAccess(EOS(STATIC_6431), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6431_0_access$100_FieldAccess(EOS(STATIC_6431), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6432_0_access$100_Return(EOS(STATIC_6432), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6432_0_access$100_Return(EOS(STATIC_6432), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6433_0_next_NE(EOS(STATIC_6433), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6433_0_next_NE(EOS(STATIC_6433), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6434_0_next_NE(EOS(STATIC_6434), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: !(i1463 = i1341) 22.32/7.29 f6434_0_next_NE(EOS(STATIC_6434), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6435_0_next_Load(EOS(STATIC_6435), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: i1463 < i1341 22.32/7.29 f6435_0_next_Load(EOS(STATIC_6435), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6436_0_next_Load(EOS(STATIC_6436), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6436_0_next_Load(EOS(STATIC_6436), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6437_0_next_FieldAccess(EOS(STATIC_6437), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6437_0_next_FieldAccess(EOS(STATIC_6437), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6438_0_next_FieldAccess(EOS(STATIC_6438), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), o110380, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.29 f6438_0_next_FieldAccess(EOS(STATIC_6438), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), o110380, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6439_0_next_Load(EOS(STATIC_6439), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6439_0_next_Load(EOS(STATIC_6439), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6440_0_next_Load(EOS(STATIC_6440), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6440_0_next_Load(EOS(STATIC_6440), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6441_0_next_FieldAccess(EOS(STATIC_6441), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6441_0_next_FieldAccess(EOS(STATIC_6441), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6442_0_next_FieldAccess(EOS(STATIC_6442), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, o110381758845967)), o110380, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6442_0_next_FieldAccess(EOS(STATIC_6442), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(o11132sub0), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6443_0_next_FieldAccess(EOS(STATIC_6443), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(o11132sub1758845967), java.lang.Object(o11132sub1758845967))), java.lang.Object(o11132sub0), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6443_0_next_FieldAccess(EOS(STATIC_6443), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o111351758875696, o111341758875696)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6445_0_next_FieldAccess(EOS(STATIC_6445), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o111351758875696, o111341758875696)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6445_0_next_FieldAccess(EOS(STATIC_6445), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o111351758875696, o111341758875696)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6447_0_next_FieldAccess(EOS(STATIC_6447), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), o111350, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6447_0_next_FieldAccess(EOS(STATIC_6447), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), o111350, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6448_0_next_Load(EOS(STATIC_6448), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6448_0_next_Load(EOS(STATIC_6448), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6450_0_next_Duplicate(EOS(STATIC_6450), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6450_0_next_Duplicate(EOS(STATIC_6450), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6452_0_next_FieldAccess(EOS(STATIC_6452), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6452_0_next_FieldAccess(EOS(STATIC_6452), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6453_0_next_ConstantStackPush(EOS(STATIC_6453), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6453_0_next_ConstantStackPush(EOS(STATIC_6453), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6455_0_next_IntArithmetic(EOS(STATIC_6455), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1463, 1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6455_0_next_IntArithmetic(EOS(STATIC_6455), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1463, matching1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6457_0_next_FieldAccess(EOS(STATIC_6457), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1463 + 1, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: i1463 >= 0 && matching1 = 1 22.32/7.30 f6457_0_next_FieldAccess(EOS(STATIC_6457), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1510, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6458_0_next_Load(EOS(STATIC_6458), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546 + 1, i1547, i1548, i1549 + 0, i1550 + 1, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: i1546 >= 0 && i1549 >= 0 && i1550 >= 0 22.32/7.30 f6458_0_next_Load(EOS(STATIC_6458), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6460_0_next_FieldAccess(EOS(STATIC_6460), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6460_0_next_FieldAccess(EOS(STATIC_6460), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6462_0_next_FieldAccess(EOS(STATIC_6462), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o111351758875696, o111341758875696)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6462_0_next_FieldAccess(EOS(STATIC_6462), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o111351758875696, o111341758875696)), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6463_0_next_Return(EOS(STATIC_6463), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6463_0_next_Return(EOS(STATIC_6463), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6465_0_main_StackPop(EOS(STATIC_6465), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6465_0_main_StackPop(EOS(STATIC_6465), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6467_0_main_JMP(EOS(STATIC_6467), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6467_0_main_JMP(EOS(STATIC_6467), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6469_0_main_Load(EOS(STATIC_6469), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6469_0_main_Load(EOS(STATIC_6469), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6382_0_main_Load(EOS(STATIC_6382), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1510, o111351758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633, o11134-777245633)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6382_0_main_Load(EOS(STATIC_6382), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6384_0_main_InvokeMethod(EOS(STATIC_6384), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6384_0_main_InvokeMethod(EOS(STATIC_6384), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6386_0_hasNext_Load(EOS(STATIC_6386), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6386_0_hasNext_Load(EOS(STATIC_6386), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6389_0_hasNext_FieldAccess(EOS(STATIC_6389), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6389_0_hasNext_FieldAccess(EOS(STATIC_6389), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6391_0_hasNext_Load(EOS(STATIC_6391), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6391_0_hasNext_Load(EOS(STATIC_6391), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6393_0_hasNext_FieldAccess(EOS(STATIC_6393), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6393_0_hasNext_FieldAccess(EOS(STATIC_6393), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6395_0_hasNext_InvokeMethod(EOS(STATIC_6395), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6395_0_hasNext_InvokeMethod(EOS(STATIC_6395), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6397_0_access$100_Load(EOS(STATIC_6397), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6397_0_access$100_Load(EOS(STATIC_6397), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6400_0_access$100_FieldAccess(EOS(STATIC_6400), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6400_0_access$100_FieldAccess(EOS(STATIC_6400), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6402_0_access$100_Return(EOS(STATIC_6402), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6402_0_access$100_Return(EOS(STATIC_6402), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6403_0_hasNext_EQ(EOS(STATIC_6403), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: TRUE 22.32/7.30 f6403_0_hasNext_EQ(EOS(STATIC_6403), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) -> f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341)), i947))), i947, i1463, o110381758845967, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331, o11037-777275331)))), i1463, i1341, i1546, i1547, i1548, i1549, i1550, o11041[LinkedList$Entry.next]o11041, o11041[LinkedList$Entry.previous]o11041) :|: !(i1463 = i1341) 22.32/7.30 Combined rules. Obtained 2 IRulesP rules: 22.32/7.30 f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341:0)), i947:0))), i947:0, i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633:0, o11134-777245633:0)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331:0, o11037-777275331:0)))), i1463:0, i1341:0, i1546:0, i1547:0, i1548:0, arith2, i1550:0, o11041[LinkedList$Entry.next]o11041:0, o11041[LinkedList$Entry.previous]o11041:0) -> f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341:0)), i947:0))), i947:0, i1463:0 + 1, o111351758845967:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633:0, o11134-777245633:0)))), i1463:0 + 1, i1341:0, i1546:0 + 1, i1547:0, i1548:0, arith2, i1550:0 + 1, o11041[LinkedList$Entry.next]o11041:0, o11041[LinkedList$Entry.previous]o11041:0) :|: i1463:0 + 1 < i1341:0 && arith2 > -1 && i1546:0 > -1 && i1550:0 > -1 && i1463:0 > -1 22.32/7.30 f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341:0)), i947:0))), i947:0, i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633:0, o11134-777245633:0)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11038-777275331:0, o11037-777275331:0)))), i1463:0, i1341:0, i1546:0, i1547:0, i1548:0, arith2, i1550:0, o11041[LinkedList$Entry.next]o11041:0, o11041[LinkedList$Entry.previous]o11041:0) -> f6405_0_hasNext_EQ(EOS(STATIC_6405), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, i1341:0)), i947:0))), i947:0, i1463:0 + 1, o111351758845967:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o11135-777245633:0, o11134-777245633:0)))), i1463:0 + 1, i1341:0, i1546:0 + 1, i1547:0, i1548:0, arith2, i1550:0 + 1, o11041[LinkedList$Entry.next]o11041:0, o11041[LinkedList$Entry.previous]o11041:0) :|: i1463:0 < i1341:0 && arith2 > -1 && i1546:0 > -1 && i1463:0 > -1 && i1463:0 + 1 > i1341:0 && i1550:0 > -1 22.32/7.30 Filtered constant ground arguments: 22.32/7.30 f6405_0_hasNext_EQ(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) -> f6405_0_hasNext_EQ(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 22.32/7.30 EOS(x1) -> EOS 22.32/7.30 javaUtilEx.LinkedList$ListItr(x1, x2, x3, x4, x5, x6) -> javaUtilEx.LinkedList$ListItr(x2, x3, x4, x5, x6) 22.32/7.30 javaUtilEx.LinkedList$Entry(x1, x2, x3) -> javaUtilEx.LinkedList$Entry(x2, x3) 22.32/7.30 javaUtilEx.LinkedList(x1, x2) -> javaUtilEx.LinkedList(x2) 22.32/7.30 Filtered unneeded arguments: 22.32/7.30 f6405_0_hasNext_EQ(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) -> f6405_0_hasNext_EQ(x1, x2, x3, x4, x7, x8) 22.32/7.30 javaUtilEx.LinkedList$ListItr(x1, x2, x3, x4, x5) -> javaUtilEx.LinkedList$ListItr(x1, x3, x4) 22.32/7.30 javaUtilEx.AbstractList(x1, x2) -> javaUtilEx.AbstractList(x1) 22.32/7.30 Finished conversion. Obtained 2 rules.P rules: 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0 + 1, o111351758845967:0)), i1463:0 + 1, i1341:0, i1546:0 + 1, arith2, i1550:0 + 1, i1341:0, i1463:0 + 1) :|: arith2 > -1 && i1463:0 + 1 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0 + 1, o111351758845967:0)), i1463:0 + 1, i1341:0, i1546:0 + 1, arith2, i1550:0 + 1, i1341:0, i1463:0 + 1) :|: arith2 > -1 && i1463:0 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 && i1463:0 + 1 > i1341:0 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (22) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0 + 1, o111351758845967:0)), i1463:0 + 1, i1341:0, i1546:0 + 1, arith2, i1550:0 + 1, i1341:0, i1463:0 + 1) :|: arith2 > -1 && i1463:0 + 1 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x))))), x1, java.lang.Object(javaUtilEx.LinkedList$Entry(x2, x3)))), x1, x, x4, x5, x6, x, x1) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x))))), x1 + 1, x7)), x1 + 1, x, x4 + 1, x5, x6 + 1, x, x1 + 1) :|: x5 > -1 && x1 < x && x4 > -1 && x1 > -1 && x6 > -1 && x1 + 1 > x 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (23) IRSFormatTransformerProof (EQUIVALENT) 22.32/7.30 Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (24) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), arith, o111351758845967:0)), arith, i1341:0, arith1, arith2, arith3, i1341:0, arith) :|: arith2 > -1 && i1463:0 + 1 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 && arith = i1463:0 + 1 && arith1 = i1546:0 + 1 && arith3 = i1550:0 + 1 && arith = i1463:0 + 1 && arith = i1463:0 + 1 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x8))))), x9, java.lang.Object(javaUtilEx.LinkedList$Entry(x10, x11)))), x9, x8, x12, x13, x14, x8, x9) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x8))))), x15, x16)), x15, x8, x17, x13, x18, x8, x15) :|: x13 > -1 && x9 < x8 && x12 > -1 && x9 > -1 && x14 > -1 && x9 + 1 > x8 && x15 = x9 + 1 && x17 = x12 + 1 && x18 = x14 + 1 && x15 = x9 + 1 && x15 = x9 + 1 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (25) IRSwTTerminationDigraphProof (EQUIVALENT) 22.32/7.30 Constructed termination digraph! 22.32/7.30 Nodes: 22.32/7.30 (1) f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), arith, o111351758845967:0)), arith, i1341:0, arith1, arith2, arith3, i1341:0, arith) :|: arith2 > -1 && i1463:0 + 1 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 && arith = i1463:0 + 1 && arith1 = i1546:0 + 1 && arith3 = i1550:0 + 1 && arith = i1463:0 + 1 && arith = i1463:0 + 1 22.32/7.30 (2) f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x8))))), x9, java.lang.Object(javaUtilEx.LinkedList$Entry(x10, x11)))), x9, x8, x12, x13, x14, x8, x9) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(x8))))), x15, x16)), x15, x8, x17, x13, x18, x8, x15) :|: x13 > -1 && x9 < x8 && x12 > -1 && x9 > -1 && x14 > -1 && x9 + 1 > x8 && x15 = x9 + 1 && x17 = x12 + 1 && x18 = x14 + 1 && x15 = x9 + 1 && x15 = x9 + 1 22.32/7.30 22.32/7.30 Arcs: 22.32/7.30 (1) -> (1) 22.32/7.30 22.32/7.30 This digraph is fully evaluated! 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (26) 22.32/7.30 Obligation: 22.32/7.30 22.32/7.30 Termination digraph: 22.32/7.30 Nodes: 22.32/7.30 (1) f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), i1463:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0, o11134-777245633:0)))), i1463:0, i1341:0, i1546:0, arith2, i1550:0, i1341:0, i1463:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0))))), arith, o111351758845967:0)), arith, i1341:0, arith1, arith2, arith3, i1341:0, arith) :|: arith2 > -1 && i1463:0 + 1 < i1341:0 && i1546:0 > -1 && i1463:0 > -1 && i1550:0 > -1 && arith = i1463:0 + 1 && arith1 = i1546:0 + 1 && arith3 = i1550:0 + 1 && arith = i1463:0 + 1 && arith = i1463:0 + 1 22.32/7.30 22.32/7.30 Arcs: 22.32/7.30 (1) -> (1) 22.32/7.30 22.32/7.30 This digraph is fully evaluated! 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (27) IntTRSCompressionProof (EQUIVALENT) 22.32/7.30 Compressed rules. 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (28) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0:0))))), i1463:0:0, java.lang.Object(javaUtilEx.LinkedList$Entry(o11135-777245633:0:0, o11134-777245633:0:0)))), i1463:0:0, i1341:0:0, i1546:0:0, arith2:0, i1550:0:0, i1341:0:0, i1463:0:0) -> f6405_0_hasNext_EQ(java.lang.Object(javaUtilEx.LinkedList$ListItr(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(i1341:0:0))))), i1463:0:0 + 1, o111351758845967:0:0)), i1463:0:0 + 1, i1341:0:0, i1546:0:0 + 1, arith2:0, i1550:0:0 + 1, i1341:0:0, i1463:0:0 + 1) :|: i1463:0:0 > -1 && i1550:0:0 > -1 && i1546:0:0 > -1 && i1463:0:0 + 1 < i1341:0:0 && arith2:0 > -1 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (29) TempFilterProof (SOUND) 22.32/7.30 Used the following sort dictionary for filtering: 22.32/7.30 f6405_0_hasNext_EQ(VARIABLE, INTEGER, INTEGER, INTEGER, INTEGER, INTEGER, INTEGER, INTEGER) 22.32/7.30 java.lang.Object(VARIABLE) 22.32/7.30 javaUtilEx.LinkedList$ListItr(VARIABLE, INTEGER, VARIABLE) 22.32/7.30 javaUtilEx.AbstractCollection(VARIABLE) 22.32/7.30 javaUtilEx.AbstractList(VARIABLE) 22.32/7.30 javaUtilEx.AbstractSequentialList(VARIABLE) 22.32/7.30 javaUtilEx.LinkedList(INTEGER) 22.32/7.30 javaUtilEx.LinkedList$Entry(VARIABLE, VARIABLE) 22.32/7.30 Replaced non-predefined constructor symbols by 0. 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (30) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f6405_0_hasNext_EQ(c, i1463:0:0, i1341:0:0, i1546:0:0, arith2:0, i1550:0:0, i1341:0:0, i1463:0:0) -> f6405_0_hasNext_EQ(c1, c2, i1341:0:0, c3, arith2:0, c4, i1341:0:0, c5) :|: c5 = i1463:0:0 + 1 && (c4 = i1550:0:0 + 1 && (c3 = i1546:0:0 + 1 && (c2 = i1463:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1463:0:0 > -1 && i1550:0:0 > -1 && i1546:0:0 > -1 && i1463:0:0 + 1 < i1341:0:0 && arith2:0 > -1) 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (31) RankingReductionPairProof (EQUIVALENT) 22.32/7.30 Interpretation: 22.32/7.30 [ f6405_0_hasNext_EQ ] = -1*f6405_0_hasNext_EQ_8 + f6405_0_hasNext_EQ_7 22.32/7.30 22.32/7.30 The following rules are decreasing: 22.32/7.30 f6405_0_hasNext_EQ(c, i1463:0:0, i1341:0:0, i1546:0:0, arith2:0, i1550:0:0, i1341:0:0, i1463:0:0) -> f6405_0_hasNext_EQ(c1, c2, i1341:0:0, c3, arith2:0, c4, i1341:0:0, c5) :|: c5 = i1463:0:0 + 1 && (c4 = i1550:0:0 + 1 && (c3 = i1546:0:0 + 1 && (c2 = i1463:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1463:0:0 > -1 && i1550:0:0 > -1 && i1546:0:0 > -1 && i1463:0:0 + 1 < i1341:0:0 && arith2:0 > -1) 22.32/7.30 22.32/7.30 The following rules are bounded: 22.32/7.30 f6405_0_hasNext_EQ(c, i1463:0:0, i1341:0:0, i1546:0:0, arith2:0, i1550:0:0, i1341:0:0, i1463:0:0) -> f6405_0_hasNext_EQ(c1, c2, i1341:0:0, c3, arith2:0, c4, i1341:0:0, c5) :|: c5 = i1463:0:0 + 1 && (c4 = i1550:0:0 + 1 && (c3 = i1546:0:0 + 1 && (c2 = i1463:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1463:0:0 > -1 && i1550:0:0 > -1 && i1546:0:0 > -1 && i1463:0:0 + 1 < i1341:0:0 && arith2:0 > -1) 22.32/7.30 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (32) 22.32/7.30 YES 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (33) 22.32/7.30 Obligation: 22.32/7.30 SCC of termination graph based on JBC Program. 22.32/7.30 SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateListIteratorLoop.main([Ljava/lang/String;)V 22.32/7.30 SCC calls the following helper methods: 22.32/7.30 Performed SCC analyses: 22.32/7.30 *Used field analysis yielded the following read fields: 22.32/7.30 *javaUtilEx.LinkedList$ListItr: [nextIndex, next] 22.32/7.30 *javaUtilEx.LinkedList$Entry: [previous] 22.32/7.30 *Marker field analysis yielded the following relations that could be markers: 22.32/7.30 *javaUtilEx.LinkedList$ListItr.nextIndex < i1099 (Introduced counter i1551) 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (34) SCCToIRSProof (SOUND) 22.32/7.30 Transformed FIGraph SCCs to intTRSs. Log: 22.32/7.30 Generated rules. Obtained 68 IRulesP rules: 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5688_0__init__Load(EOS(STATIC_5688), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), 0, i1069, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5688_0__init__Load(EOS(STATIC_5688), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), matching1, i1069, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5699_0__init__LE(EOS(STATIC_5699), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), 0, i1069, 0, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5699_0__init__LE(EOS(STATIC_5699), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, i1099, matching2, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5711_0__init__LE(EOS(STATIC_5711), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, i1099, 0, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 && matching2 = 0 22.32/7.30 f5711_0__init__LE(EOS(STATIC_5711), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, i1099, matching2, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5723_0__init__Load(EOS(STATIC_5723), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: i1099 > 0 && matching1 = 0 && matching2 = 0 22.32/7.30 f5723_0__init__Load(EOS(STATIC_5723), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5729_0__init__Load(EOS(STATIC_5729), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5729_0__init__Load(EOS(STATIC_5729), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5735_0__init__FieldAccess(EOS(STATIC_5735), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5735_0__init__FieldAccess(EOS(STATIC_5735), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5739_0__init__FieldAccess(EOS(STATIC_5739), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(o8519sub0), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5739_0__init__FieldAccess(EOS(STATIC_5739), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(o8519sub0), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5742_0__init__FieldAccess(EOS(STATIC_5742), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8519sub-483163008))), java.lang.Object(o8519sub0), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: o8518[LinkedList$Entry.previous]o8519 > 0 && o8518[LinkedList$Entry.next]o8518 > 0 && o8518[LinkedList$Entry.previous]o8518 > 0 && o8519[LinkedList$Entry.previous]o8518 > 0 && o8519[LinkedList$Entry.previous]o8519 > 0 && matching1 = 0 22.32/7.30 f5739_0__init__FieldAccess(EOS(STATIC_5739), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), java.lang.Object(o8927sub0), i1551, o8927[LinkedList$Entry.previous]o8927, o8927[LinkedList$Entry.next]o8927, o8927[LinkedList$Entry.previous]o8927, o8927[LinkedList$Entry.previous]o8927, o8927[LinkedList$Entry.previous]o8927) -> f5743_0__init__FieldAccess(EOS(STATIC_5743), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8927sub-483163008))), java.lang.Object(o8927sub0), i1551, o8927[LinkedList$Entry.next]o8927, o8927[LinkedList$Entry.previous]o8927) :|: TRUE && matching1 = 0 22.32/7.30 f5742_0__init__FieldAccess(EOS(STATIC_5742), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-483041116))), i1551, o8518[LinkedList$Entry.previous]o8942, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8942[LinkedList$Entry.previous]o8518, o8942[LinkedList$Entry.previous]o8942) -> f5748_0__init__FieldAccess(EOS(STATIC_5748), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-483041116))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8942, o8945[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8942) :|: o8945[LinkedList$Entry.previous]o8518 < o8942[LinkedList$Entry.previous]o8518 && o8942[LinkedList$Entry.previous]o8518 >= 0 && o8945[LinkedList$Entry.previous]o8942 < o8942[LinkedList$Entry.previous]o8942 && o8942[LinkedList$Entry.previous]o8942 >= 0 && matching1 = 0 22.32/7.30 f5748_0__init__FieldAccess(EOS(STATIC_5748), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-483041116))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8942, o8945[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8942) -> f5754_0__init__FieldAccess(EOS(STATIC_5754), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(o8945sub0), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8942, o8945[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8942) :|: TRUE && matching1 = 0 22.32/7.30 f5754_0__init__FieldAccess(EOS(STATIC_5754), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124))))), java.lang.Object(o8945sub0), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8942, o8945[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8942) -> f5759_0__init__Load(EOS(STATIC_5759), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: o8518[LinkedList$Entry.previous]o8945 > o8518[LinkedList$Entry.previous]o8942 && o8518[LinkedList$Entry.previous]o8942 >= 0 && o8945[LinkedList$Entry.previous]o8945 > o8945[LinkedList$Entry.previous]o8942 && o8945[LinkedList$Entry.previous]o8942 >= 0 && matching1 = 0 22.32/7.30 f5759_0__init__Load(EOS(STATIC_5759), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5770_0__init__Duplicate(EOS(STATIC_5770), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5770_0__init__Duplicate(EOS(STATIC_5770), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5780_0__init__FieldAccess(EOS(STATIC_5780), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5780_0__init__FieldAccess(EOS(STATIC_5780), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5790_0__init__ConstantStackPush(EOS(STATIC_5790), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1099, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5790_0__init__ConstantStackPush(EOS(STATIC_5790), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1099, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5801_0__init__IntArithmetic(EOS(STATIC_5801), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1099, 1, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5801_0__init__IntArithmetic(EOS(STATIC_5801), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1099, matching2, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5811_0__init__FieldAccess(EOS(STATIC_5811), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1099 - 1, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: i1099 > 0 && matching1 = 0 && matching2 = 1 22.32/7.30 f5811_0__init__FieldAccess(EOS(STATIC_5811), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8945sub-483163008))), i1149, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5820_0__init__JMP(EOS(STATIC_5820), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), 0, i1551 + 1, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: i1551 >= 0 && matching1 = 0 22.32/7.30 f5820_0__init__JMP(EOS(STATIC_5820), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), matching1, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5831_0__init__Load(EOS(STATIC_5831), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), 0, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5831_0__init__Load(EOS(STATIC_5831), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), matching1, i1551, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8518[LinkedList$Entry.previous]o8945, o8945[LinkedList$Entry.previous]o8945) -> f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1149, java.lang.Object(o8945sub-483163008))), 0, i1551, o8518[LinkedList$Entry.previous]o8945, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8518, o8945[LinkedList$Entry.previous]o8945) :|: TRUE && matching1 = 0 22.32/7.30 f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), matching1, i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069, java.lang.Object(o8519sub-483163008))), i1551, o8518[LinkedList$Entry.previous]o8519, o8518[LinkedList$Entry.next]o8518, o8518[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8518, o8519[LinkedList$Entry.previous]o8519) :|: TRUE && matching1 = 0 22.32/7.30 f5743_0__init__FieldAccess(EOS(STATIC_5743), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8946[LinkedList$Entry.next]o8946, o8946[LinkedList$Entry.previous]o8946) -> f5749_0__init__FieldAccess(EOS(STATIC_5749), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: o8948[LinkedList$Entry.next]o8946 < o8946[LinkedList$Entry.next]o8946 && o8946[LinkedList$Entry.next]o8946 >= 0 && o8949[LinkedList$Entry.previous]o8946 < o8946[LinkedList$Entry.previous]o8946 && o8946[LinkedList$Entry.previous]o8946 >= 0 && matching1 = 0 22.32/7.30 f5749_0__init__FieldAccess(EOS(STATIC_5749), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5755_0__init__FieldAccess(EOS(STATIC_5755), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8949[LinkedList$Entry.previous]o8946, o8948[LinkedList$Entry.next]o8946) :|: o8948[LinkedList$Entry.next]o8946 > 0 && matching1 = 0 22.32/7.30 f5749_0__init__FieldAccess(EOS(STATIC_5749), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040155))), i1551, o8948[LinkedList$Entry.next]o8952, o8949[LinkedList$Entry.previous]o8952) -> f5756_0__init__FieldAccess(EOS(STATIC_5756), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040155))), i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5755_0__init__FieldAccess(EOS(STATIC_5755), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8949[LinkedList$Entry.previous]o8946, o8948[LinkedList$Entry.next]o8946) -> f5760_0__init__FieldAccess(EOS(STATIC_5760), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: o8949[LinkedList$Entry.previous]o8946 > 0 && matching1 = 0 22.32/7.30 f5755_0__init__FieldAccess(EOS(STATIC_5755), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8949[LinkedList$Entry.previous]o8955, o8948[LinkedList$Entry.next]o8955) -> f5761_0__init__FieldAccess(EOS(STATIC_5761), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5760_0__init__FieldAccess(EOS(STATIC_5760), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040992))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5771_0__init__FieldAccess(EOS(STATIC_5771), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(o8949sub0), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5771_0__init__FieldAccess(EOS(STATIC_5771), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000))))), java.lang.Object(o8949sub0), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5781_0__init__Load(EOS(STATIC_5781), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5781_0__init__Load(EOS(STATIC_5781), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5791_0__init__Duplicate(EOS(STATIC_5791), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5791_0__init__Duplicate(EOS(STATIC_5791), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5802_0__init__FieldAccess(EOS(STATIC_5802), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5802_0__init__FieldAccess(EOS(STATIC_5802), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5812_0__init__ConstantStackPush(EOS(STATIC_5812), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5812_0__init__ConstantStackPush(EOS(STATIC_5812), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5821_0__init__IntArithmetic(EOS(STATIC_5821), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, 1, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5821_0__init__IntArithmetic(EOS(STATIC_5821), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, matching2, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5832_0__init__FieldAccess(EOS(STATIC_5832), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099 - 1, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: i1099 > 0 && matching1 = 0 && matching2 = 1 22.32/7.30 f5832_0__init__FieldAccess(EOS(STATIC_5832), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1157, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5841_0__init__JMP(EOS(STATIC_5841), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), 0, i1551 + 1, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: i1551 >= 0 && matching1 = 0 22.32/7.30 f5841_0__init__JMP(EOS(STATIC_5841), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5851_0__init__Load(EOS(STATIC_5851), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), 0, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) :|: TRUE && matching1 = 0 22.32/7.30 f5851_0__init__Load(EOS(STATIC_5851), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8948[LinkedList$Entry.next]o8946, o8949[LinkedList$Entry.previous]o8946) -> f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1157, java.lang.Object(o8949sub-483163008))), 0, i1551, o8946[LinkedList$Entry.previous]o8949, o8946[LinkedList$Entry.next]o8946, o8946[LinkedList$Entry.previous]o8946, o8949[LinkedList$Entry.previous]o8946, o8949[LinkedList$Entry.previous]o8949) :|: o8946[LinkedList$Entry.previous]o8949 = 1 && matching1 = 0 22.32/7.30 f5761_0__init__FieldAccess(EOS(STATIC_5761), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8948[LinkedList$Entry.next]o8955) -> f5772_0__init__FieldAccess(EOS(STATIC_5772), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5772_0__init__FieldAccess(EOS(STATIC_5772), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8948[LinkedList$Entry.next]o8955) -> f5782_0__init__Load(EOS(STATIC_5782), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5782_0__init__Load(EOS(STATIC_5782), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551, o8948[LinkedList$Entry.next]o8955) -> f5792_0__init__Duplicate(EOS(STATIC_5792), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5792_0__init__Duplicate(EOS(STATIC_5792), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551, o8948[LinkedList$Entry.next]o8955) -> f5803_0__init__FieldAccess(EOS(STATIC_5803), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5803_0__init__FieldAccess(EOS(STATIC_5803), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551, o8948[LinkedList$Entry.next]o8955) -> f5813_0__init__ConstantStackPush(EOS(STATIC_5813), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5813_0__init__ConstantStackPush(EOS(STATIC_5813), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, i1551, o8948[LinkedList$Entry.next]o8955) -> f5822_0__init__IntArithmetic(EOS(STATIC_5822), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, 1, i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5822_0__init__IntArithmetic(EOS(STATIC_5822), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, matching2, i1551, o8948[LinkedList$Entry.next]o8955) -> f5833_0__init__FieldAccess(EOS(STATIC_5833), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099 - 1, i1551, o8948[LinkedList$Entry.next]o8955) :|: i1099 > 0 && matching1 = 0 && matching2 = 1 22.32/7.30 f5833_0__init__FieldAccess(EOS(STATIC_5833), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1158, i1551, o8948[LinkedList$Entry.next]o8955) -> f5842_0__init__JMP(EOS(STATIC_5842), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551 + 1, o8948[LinkedList$Entry.next]o8955) :|: i1551 >= 0 && matching1 = 0 22.32/7.30 f5842_0__init__JMP(EOS(STATIC_5842), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551, o8948[LinkedList$Entry.next]o8955) -> f5852_0__init__Load(EOS(STATIC_5852), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551, o8948[LinkedList$Entry.next]o8955) :|: TRUE && matching1 = 0 22.32/7.30 f5852_0__init__Load(EOS(STATIC_5852), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551, o8948[LinkedList$Entry.next]o8955) -> f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1158, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551, o8955[LinkedList$Entry.previous]o8955, o8955[LinkedList$Entry.next]o8955, o8955[LinkedList$Entry.previous]o8955, o8955[LinkedList$Entry.previous]o8955, o8955[LinkedList$Entry.previous]o8955) :|: o8955[LinkedList$Entry.previous]o8955 = 1 && o8955[LinkedList$Entry.previous]o8955 = 1 && o8955[LinkedList$Entry.previous]o8955 = 1 && o8955[LinkedList$Entry.previous]o8955 = 1 && matching1 = 0 22.32/7.30 f5756_0__init__FieldAccess(EOS(STATIC_5756), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040155))), i1551, o8949[LinkedList$Entry.previous]o8952) -> f5762_0__init__FieldAccess(EOS(STATIC_5762), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040155))), i1551, o8949[LinkedList$Entry.previous]o8952) :|: o8949[LinkedList$Entry.previous]o8952 > 0 && matching1 = 0 22.32/7.30 f5756_0__init__FieldAccess(EOS(STATIC_5756), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551, o8949[LinkedList$Entry.previous]o8958) -> f5763_0__init__FieldAccess(EOS(STATIC_5763), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5762_0__init__FieldAccess(EOS(STATIC_5762), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-483040155))), i1551, o8949[LinkedList$Entry.previous]o8952) -> f5773_0__init__FieldAccess(EOS(STATIC_5773), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(o8949sub0), i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5773_0__init__FieldAccess(EOS(STATIC_5773), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966203163))))), java.lang.Object(o8949sub0), i1551, o8949[LinkedList$Entry.previous]o8952) -> f5783_0__init__Load(EOS(STATIC_5783), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5783_0__init__Load(EOS(STATIC_5783), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5793_0__init__Duplicate(EOS(STATIC_5793), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5793_0__init__Duplicate(EOS(STATIC_5793), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8949[LinkedList$Entry.previous]o8952) -> f5804_0__init__FieldAccess(EOS(STATIC_5804), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5804_0__init__FieldAccess(EOS(STATIC_5804), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1551, o8949[LinkedList$Entry.previous]o8952) -> f5814_0__init__ConstantStackPush(EOS(STATIC_5814), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5814_0__init__ConstantStackPush(EOS(STATIC_5814), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5823_0__init__IntArithmetic(EOS(STATIC_5823), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, 1, i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5823_0__init__IntArithmetic(EOS(STATIC_5823), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099, matching2, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5834_0__init__FieldAccess(EOS(STATIC_5834), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1099 - 1, i1551, o8949[LinkedList$Entry.previous]o8952) :|: i1099 > 0 && matching1 = 0 && matching2 = 1 22.32/7.30 f5834_0__init__FieldAccess(EOS(STATIC_5834), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(o8949sub-483163008))), i1160, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5843_0__init__JMP(EOS(STATIC_5843), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), 0, i1551 + 1, o8949[LinkedList$Entry.previous]o8952) :|: i1551 >= 0 && matching1 = 0 22.32/7.30 f5843_0__init__JMP(EOS(STATIC_5843), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5853_0__init__Load(EOS(STATIC_5853), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), 0, i1551, o8949[LinkedList$Entry.previous]o8952) :|: TRUE && matching1 = 0 22.32/7.30 f5853_0__init__Load(EOS(STATIC_5853), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), matching1, i1551, o8949[LinkedList$Entry.previous]o8952) -> f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1160, java.lang.Object(o8949sub-483163008))), 0, i1551, o8952[LinkedList$Entry.previous]o8949, o8952[LinkedList$Entry.next]o8952, o8952[LinkedList$Entry.previous]o8952, o8949[LinkedList$Entry.previous]o8952, o8949[LinkedList$Entry.previous]o8949) :|: o8952[LinkedList$Entry.previous]o8949 = 1 && o8952[LinkedList$Entry.next]o8952 = 1 && matching1 = 0 22.32/7.30 f5763_0__init__FieldAccess(EOS(STATIC_5763), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551) -> f5774_0__init__FieldAccess(EOS(STATIC_5774), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5774_0__init__FieldAccess(EOS(STATIC_5774), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))), i1551) -> f5784_0__init__Load(EOS(STATIC_5784), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5784_0__init__Load(EOS(STATIC_5784), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551) -> f5794_0__init__Duplicate(EOS(STATIC_5794), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5794_0__init__Duplicate(EOS(STATIC_5794), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551) -> f5805_0__init__FieldAccess(EOS(STATIC_5805), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5805_0__init__FieldAccess(EOS(STATIC_5805), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551) -> f5815_0__init__ConstantStackPush(EOS(STATIC_5815), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5815_0__init__ConstantStackPush(EOS(STATIC_5815), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, i1551) -> f5824_0__init__IntArithmetic(EOS(STATIC_5824), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, 1, i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5824_0__init__IntArithmetic(EOS(STATIC_5824), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099, matching2, i1551) -> f5835_0__init__FieldAccess(EOS(STATIC_5835), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1099 - 1, i1551) :|: i1099 > 0 && matching1 = 0 && matching2 = 1 22.32/7.30 f5835_0__init__FieldAccess(EOS(STATIC_5835), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1099, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1163, i1551) -> f5844_0__init__JMP(EOS(STATIC_5844), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551 + 1) :|: i1551 >= 0 && matching1 = 0 22.32/7.30 f5844_0__init__JMP(EOS(STATIC_5844), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551) -> f5854_0__init__Load(EOS(STATIC_5854), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551) :|: TRUE && matching1 = 0 22.32/7.30 f5854_0__init__Load(EOS(STATIC_5854), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), matching1, i1551) -> f5667_0__init__Load(EOS(STATIC_5667), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1163, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, i1551, o8958[LinkedList$Entry.previous]o8958, o8958[LinkedList$Entry.next]o8958, o8958[LinkedList$Entry.previous]o8958, o8958[LinkedList$Entry.previous]o8958, o8958[LinkedList$Entry.previous]o8958) :|: o8958[LinkedList$Entry.previous]o8958 = 1 && o8958[LinkedList$Entry.next]o8958 = 1 && o8958[LinkedList$Entry.previous]o8958 = 1 && o8958[LinkedList$Entry.previous]o8958 = 1 && o8958[LinkedList$Entry.previous]o8958 = 1 && matching1 = 0 22.32/7.30 Combined rules. Obtained 5 IRulesP rules: 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), i1551:0 + 1, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0) :|: i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 && i1551:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551:0 + 1, 1, o8955[LinkedList$Entry.next]o8955:0, 1, 1, 1) :|: i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 > 0 && i1551:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(EOR))))), i1551:0 + 1, 1, 1, 1, 1, 1) :|: i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124:0))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124:0))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8945sub-966204124:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8518:0, o8519[LinkedList$Entry.previous]o8518:0, o8519[LinkedList$Entry.previous]o8519:0) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8945sub-483163008:0))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8945sub-483163008:0))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8945sub-483163008:0))), i1551:0 + 1, o8518[LinkedList$Entry.previous]o8945:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8518:0, o8945[LinkedList$Entry.previous]o8518:0, o8945[LinkedList$Entry.previous]o8945:0) :|: o8518[LinkedList$Entry.previous]o8519:0 > 0 && o8519[LinkedList$Entry.previous]o8518:0 > 0 && o8519[LinkedList$Entry.previous]o8519:0 > 0 && i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > 0 && o8518[LinkedList$Entry.previous]o8518:0 > 0 && o8945[LinkedList$Entry.previous]o8518:0 < o8519[LinkedList$Entry.previous]o8518:0 && o8945[LinkedList$Entry.previous]o8942:0 < o8519[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8945:0 > o8518[LinkedList$Entry.previous]o8519:0 && o8945[LinkedList$Entry.previous]o8945:0 > o8945[LinkedList$Entry.previous]o8942:0 && o8945[LinkedList$Entry.previous]o8942:0 > -1 && i1551:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0) -> f5677_0__init__FieldAccess(EOS(STATIC_5677), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), 0, java.lang.Object(javaUtilEx.LinkedList$ListItr(EOC, i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), i1551:0 + 1, 1, o8946[LinkedList$Entry.next]o8946:0, o8946[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0) :|: i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 > 0 && o8949[LinkedList$Entry.previous]o8946:0 > 0 && i1551:0 > -1 22.32/7.30 Filtered constant ground arguments: 22.32/7.30 f5677_0__init__FieldAccess(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) -> f5677_0__init__FieldAccess(x2, x3, x5, x6, x7, x8, x9, x10, x11) 22.32/7.30 EOS(x1) -> EOS 22.32/7.30 javaUtilEx.LinkedList$ListItr(x1, x2, x3) -> javaUtilEx.LinkedList$ListItr(x2, x3) 22.32/7.30 javaUtilEx.LinkedList$Entry(x1, x2) -> javaUtilEx.LinkedList$Entry(x2) 22.32/7.30 Filtered duplicate arguments: 22.32/7.30 f5677_0__init__FieldAccess(x1, x2, x3, x4, x5, x6, x7, x8, x9) -> f5677_0__init__FieldAccess(x3, x4, x5, x6, x7, x8, x9) 22.32/7.30 Finished conversion. Obtained 5 rules.P rules: 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), i1551:0 + 1, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, i1069:0 - 1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), i1551:0 + 1, 1, o8955[LinkedList$Entry.next]o8955:0, 1, 1, 1, i1069:0 - 1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 > 0 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), i1551:0 + 1, 1, 1, 1, 1, 1, i1069:0 - 1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && i1551:0 > -1 && o8518[LinkedList$Entry.previous]o8519:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8945sub-966204124:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8518:0, o8519[LinkedList$Entry.previous]o8518:0, o8519[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(o8945sub-483163008:0))), i1551:0 + 1, o8518[LinkedList$Entry.previous]o8945:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8518:0, o8945[LinkedList$Entry.previous]o8518:0, o8945[LinkedList$Entry.previous]o8945:0, i1069:0 - 1) :|: o8519[LinkedList$Entry.previous]o8518:0 > 0 && o8518[LinkedList$Entry.previous]o8519:0 > 0 && o8519[LinkedList$Entry.previous]o8519:0 > 0 && i1069:0 > 0 && o8518[LinkedList$Entry.next]o8518:0 > 0 && o8518[LinkedList$Entry.previous]o8518:0 > 0 && o8945[LinkedList$Entry.previous]o8518:0 < o8519[LinkedList$Entry.previous]o8518:0 && o8945[LinkedList$Entry.previous]o8942:0 < o8519[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8945:0 > o8518[LinkedList$Entry.previous]o8519:0 && o8945[LinkedList$Entry.previous]o8945:0 > o8945[LinkedList$Entry.previous]o8942:0 && i1551:0 > -1 && o8945[LinkedList$Entry.previous]o8942:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), i1551:0 + 1, 1, o8946[LinkedList$Entry.next]o8946:0, o8946[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, i1069:0 - 1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && o8948[LinkedList$Entry.next]o8946:0 > 0 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (35) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0 - 1, java.lang.Object(o8949sub-483163008:0))), i1551:0 + 1, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, i1069:0 - 1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x1, x2, x3, x2, x2, x2, x) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x1 + 1, 1, x4, 1, 1, 1, x - 1) :|: x3 > -1 && x > 0 && x5 < x3 && x6 < x2 && x2 > -1 && x1 > -1 && x5 > 0 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x7, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x8, x9, x10, x9, x9, x9, x7) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x7 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x8 + 1, 1, 1, 1, 1, 1, x7 - 1) :|: x10 > -1 && x7 > 0 && x11 < x10 && x12 < x9 && x8 > -1 && x9 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x13, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x14))))), x15, x16, x17, x18, x19, x20, x13) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x13 - 1, java.lang.Object(x21))), x15 + 1, x22, x17, x18, x23, x24, x13 - 1) :|: x19 > 0 && x16 > 0 && x20 > 0 && x13 > 0 && x17 > 0 && x18 > 0 && x23 < x19 && x25 < x20 && x22 > x16 && x24 > x25 && x15 > -1 && x25 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x26, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x27))))), x28, x29, x30, x29, x29, x29, x26) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x26 - 1, java.lang.Object(x31))), x28 + 1, 1, x32, x33, x34, x35, x26 - 1) :|: x30 > -1 && x26 > 0 && x36 < x30 && x34 < x29 && x29 > -1 && x36 > 0 && x28 > -1 && x34 > 0 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (36) IRSFormatTransformerProof (EQUIVALENT) 22.32/7.30 Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (37) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(arith1, java.lang.Object(o8949sub-483163008:0))), arith, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, arith1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 && arith = i1551:0 + 1 && arith1 = i1069:0 - 1 && arith1 = i1069:0 - 1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x37, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x38, x39, x40, x39, x39, x39, x37) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x41, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x42, 1, x43, 1, 1, 1, x41) :|: x40 > -1 && x37 > 0 && x44 < x40 && x45 < x39 && x39 > -1 && x38 > -1 && x44 > 0 && x42 = x38 + 1 && x41 = x37 - 1 && x41 = x37 - 1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x46, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x47, x48, x49, x48, x48, x48, x46) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x50, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x51, 1, 1, 1, 1, 1, x50) :|: x49 > -1 && x46 > 0 && x52 < x49 && x53 < x48 && x47 > -1 && x48 > -1 && x51 = x47 + 1 && x50 = x46 - 1 && x50 = x46 - 1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x54, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x55))))), x56, x57, x58, x59, x60, x61, x54) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x62, java.lang.Object(x63))), x64, x65, x58, x59, x66, x67, x62) :|: x60 > 0 && x57 > 0 && x61 > 0 && x54 > 0 && x58 > 0 && x59 > 0 && x66 < x60 && x68 < x61 && x65 > x57 && x67 > x68 && x56 > -1 && x68 > -1 && x64 = x56 + 1 && x62 = x54 - 1 && x62 = x54 - 1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x69, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x70))))), x71, x72, x73, x72, x72, x72, x69) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x74, java.lang.Object(x75))), x76, 1, x77, x78, x79, x80, x74) :|: x73 > -1 && x69 > 0 && x81 < x73 && x79 < x72 && x72 > -1 && x81 > 0 && x71 > -1 && x79 > 0 && x76 = x71 + 1 && x74 = x69 - 1 && x74 = x69 - 1 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (38) IRSwTTerminationDigraphProof (EQUIVALENT) 22.32/7.30 Constructed termination digraph! 22.32/7.30 Nodes: 22.32/7.30 (1) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(arith1, java.lang.Object(o8949sub-483163008:0))), arith, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, arith1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 && arith = i1551:0 + 1 && arith1 = i1069:0 - 1 && arith1 = i1069:0 - 1 22.32/7.30 (2) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x37, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x38, x39, x40, x39, x39, x39, x37) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x41, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x42, 1, x43, 1, 1, 1, x41) :|: x40 > -1 && x37 > 0 && x44 < x40 && x45 < x39 && x39 > -1 && x38 > -1 && x44 > 0 && x42 = x38 + 1 && x41 = x37 - 1 && x41 = x37 - 1 22.32/7.30 (3) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x46, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x47, x48, x49, x48, x48, x48, x46) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x50, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x51, 1, 1, 1, 1, 1, x50) :|: x49 > -1 && x46 > 0 && x52 < x49 && x53 < x48 && x47 > -1 && x48 > -1 && x51 = x47 + 1 && x50 = x46 - 1 && x50 = x46 - 1 22.32/7.30 (4) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x54, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x55))))), x56, x57, x58, x59, x60, x61, x54) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x62, java.lang.Object(x63))), x64, x65, x58, x59, x66, x67, x62) :|: x60 > 0 && x57 > 0 && x61 > 0 && x54 > 0 && x58 > 0 && x59 > 0 && x66 < x60 && x68 < x61 && x65 > x57 && x67 > x68 && x56 > -1 && x68 > -1 && x64 = x56 + 1 && x62 = x54 - 1 && x62 = x54 - 1 22.32/7.30 (5) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x69, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x70))))), x71, x72, x73, x72, x72, x72, x69) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x74, java.lang.Object(x75))), x76, 1, x77, x78, x79, x80, x74) :|: x73 > -1 && x69 > 0 && x81 < x73 && x79 < x72 && x72 > -1 && x81 > 0 && x71 > -1 && x79 > 0 && x76 = x71 + 1 && x74 = x69 - 1 && x74 = x69 - 1 22.32/7.30 22.32/7.30 Arcs: 22.32/7.30 (1) -> (3), (4) 22.32/7.30 (2) -> (2), (3), (4) 22.32/7.30 (3) -> (3), (4) 22.32/7.30 (4) -> (1), (2), (3), (4), (5) 22.32/7.30 (5) -> (2), (3), (4) 22.32/7.30 22.32/7.30 This digraph is fully evaluated! 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (39) 22.32/7.30 Obligation: 22.32/7.30 22.32/7.30 Termination digraph: 22.32/7.30 Nodes: 22.32/7.30 (1) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0))))), i1551:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.next]o8518:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, o8518[LinkedList$Entry.previous]o8519:0, i1069:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(arith1, java.lang.Object(o8949sub-483163008:0))), arith, 1, 1, o8952[LinkedList$Entry.previous]o8952:0, o8949[LinkedList$Entry.previous]o8946:0, o8949[LinkedList$Entry.previous]o8949:0, arith1) :|: o8518[LinkedList$Entry.next]o8518:0 > -1 && i1069:0 > 0 && o8948[LinkedList$Entry.next]o8946:0 < o8518[LinkedList$Entry.next]o8518:0 && o8949[LinkedList$Entry.previous]o8946:0 < o8518[LinkedList$Entry.previous]o8519:0 && o8518[LinkedList$Entry.previous]o8519:0 > -1 && i1551:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0 > 0 && arith = i1551:0 + 1 && arith1 = i1069:0 - 1 && arith1 = i1069:0 - 1 22.32/7.30 (2) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x54, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x55))))), x56, x57, x58, x59, x60, x61, x54) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x62, java.lang.Object(x63))), x64, x65, x58, x59, x66, x67, x62) :|: x60 > 0 && x57 > 0 && x61 > 0 && x54 > 0 && x58 > 0 && x59 > 0 && x66 < x60 && x68 < x61 && x65 > x57 && x67 > x68 && x56 > -1 && x68 > -1 && x64 = x56 + 1 && x62 = x54 - 1 && x62 = x54 - 1 22.32/7.30 (3) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x46, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x47, x48, x49, x48, x48, x48, x46) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x50, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x51, 1, 1, 1, 1, 1, x50) :|: x49 > -1 && x46 > 0 && x52 < x49 && x53 < x48 && x47 > -1 && x48 > -1 && x51 = x47 + 1 && x50 = x46 - 1 && x50 = x46 - 1 22.32/7.30 (4) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x37, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x38, x39, x40, x39, x39, x39, x37) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x41, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x42, 1, x43, 1, 1, 1, x41) :|: x40 > -1 && x37 > 0 && x44 < x40 && x45 < x39 && x39 > -1 && x38 > -1 && x44 > 0 && x42 = x38 + 1 && x41 = x37 - 1 && x41 = x37 - 1 22.32/7.30 (5) f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x69, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x70))))), x71, x72, x73, x72, x72, x72, x69) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x74, java.lang.Object(x75))), x76, 1, x77, x78, x79, x80, x74) :|: x73 > -1 && x69 > 0 && x81 < x73 && x79 < x72 && x72 > -1 && x81 > 0 && x71 > -1 && x79 > 0 && x76 = x71 + 1 && x74 = x69 - 1 && x74 = x69 - 1 22.32/7.30 22.32/7.30 Arcs: 22.32/7.30 (1) -> (2), (3) 22.32/7.30 (2) -> (1), (2), (3), (4), (5) 22.32/7.30 (3) -> (2), (3) 22.32/7.30 (4) -> (2), (3), (4) 22.32/7.30 (5) -> (2), (3), (4) 22.32/7.30 22.32/7.30 This digraph is fully evaluated! 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (40) IntTRSCompressionProof (EQUIVALENT) 22.32/7.30 Compressed rules. 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (41) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(o8949sub-966204000:0:0))))), i1551:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.next]o8518:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, i1069:0:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(i1069:0:0 - 1, java.lang.Object(o8949sub-483163008:0:0))), i1551:0:0 + 1, 1, 1, o8952[LinkedList$Entry.previous]o8952:0:0, o8949[LinkedList$Entry.previous]o8946:0:0, o8949[LinkedList$Entry.previous]o8949:0:0, i1069:0:0 - 1) :|: i1551:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 > 0 && o8518[LinkedList$Entry.previous]o8519:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 < o8518[LinkedList$Entry.previous]o8519:0:0 && o8948[LinkedList$Entry.next]o8946:0:0 < o8518[LinkedList$Entry.next]o8518:0:0 && i1069:0:0 > 0 && o8518[LinkedList$Entry.next]o8518:0:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x54:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x55:0))))), x56:0, x57:0, x58:0, x59:0, x60:0, x61:0, x54:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x54:0 - 1, java.lang.Object(x63:0))), x56:0 + 1, x65:0, x58:0, x59:0, x66:0, x67:0, x54:0 - 1) :|: x56:0 > -1 && x68:0 > -1 && x68:0 < x67:0 && x65:0 > x57:0 && x68:0 < x61:0 && x66:0 < x60:0 && x59:0 > 0 && x58:0 > 0 && x54:0 > 0 && x61:0 > 0 && x57:0 > 0 && x60:0 > 0 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x46:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x46:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x47:0 + 1, 1, 1, 1, 1, 1, x46:0 - 1) :|: x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x37:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x37:0 - 1, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(EOR))))), x38:0 + 1, 1, x43:0, 1, 1, 1, x37:0 - 1) :|: x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1 22.32/7.30 f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x69:0, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x70:0))))), x71:0, x72:0, x73:0, x72:0, x72:0, x72:0, x69:0) -> f5677_0__init__FieldAccess(java.lang.Object(javaUtilEx.LinkedList$ListItr(x69:0 - 1, java.lang.Object(x75:0))), x71:0 + 1, 1, x77:0, x78:0, x79:0, x80:0, x69:0 - 1) :|: x71:0 > -1 && x79:0 > 0 && x81:0 > 0 && x72:0 > -1 && x79:0 < x72:0 && x81:0 < x73:0 && x69:0 > 0 && x73:0 > -1 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (42) TempFilterProof (SOUND) 22.32/7.30 Used the following sort dictionary for filtering: 22.32/7.30 f5677_0__init__FieldAccess(VARIABLE, INTEGER, VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE, INTEGER) 22.32/7.30 java.lang.Object(VARIABLE) 22.32/7.30 javaUtilEx.LinkedList$ListItr(INTEGER, VARIABLE) 22.32/7.30 javaUtilEx.LinkedList$Entry(VARIABLE) 22.32/7.30 EOR() 22.32/7.30 Replaced non-predefined constructor symbols by 0. 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (43) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f5677_0__init__FieldAccess(c, i1551:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.next]o8518:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, i1069:0:0) -> f5677_0__init__FieldAccess(c1, c2, c3, c4, o8952[LinkedList$Entry.previous]o8952:0:0, o8949[LinkedList$Entry.previous]o8946:0:0, o8949[LinkedList$Entry.previous]o8949:0:0, c5) :|: c5 = i1069:0:0 - 1 && (c4 = 1 && (c3 = 1 && (c2 = i1551:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1551:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 > 0 && o8518[LinkedList$Entry.previous]o8519:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 < o8518[LinkedList$Entry.previous]o8519:0:0 && o8948[LinkedList$Entry.next]o8946:0:0 < o8518[LinkedList$Entry.next]o8518:0:0 && i1069:0:0 > 0 && o8518[LinkedList$Entry.next]o8518:0:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c6, x56:0, x57:0, x58:0, x59:0, x60:0, x61:0, x54:0) -> f5677_0__init__FieldAccess(c7, c8, x65:0, x58:0, x59:0, x66:0, x67:0, c9) :|: c9 = x54:0 - 1 && (c8 = x56:0 + 1 && (c7 = 0 && c6 = 0)) && (x56:0 > -1 && x68:0 > -1 && x68:0 < x67:0 && x65:0 > x57:0 && x68:0 < x61:0 && x66:0 < x60:0 && x59:0 > 0 && x58:0 > 0 && x54:0 > 0 && x61:0 > 0 && x57:0 > 0 && x60:0 > 0) 22.32/7.30 f5677_0__init__FieldAccess(c10, x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(c11, c12, c13, c14, c15, c16, c17, c18) :|: c18 = x46:0 - 1 && (c17 = 1 && (c16 = 1 && (c15 = 1 && (c14 = 1 && (c13 = 1 && (c12 = x47:0 + 1 && (c11 = 0 && c10 = 0))))))) && (x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c19, x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(c20, c21, c22, x43:0, c23, c24, c25, c26) :|: c26 = x37:0 - 1 && (c25 = 1 && (c24 = 1 && (c23 = 1 && (c22 = 1 && (c21 = x38:0 + 1 && (c20 = 0 && c19 = 0)))))) && (x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c27, x71:0, x72:0, x73:0, x72:0, x72:0, x72:0, x69:0) -> f5677_0__init__FieldAccess(c28, c29, c30, x77:0, x78:0, x79:0, x80:0, c31) :|: c31 = x69:0 - 1 && (c30 = 1 && (c29 = x71:0 + 1 && (c28 = 0 && c27 = 0))) && (x71:0 > -1 && x79:0 > 0 && x81:0 > 0 && x72:0 > -1 && x79:0 < x72:0 && x81:0 < x73:0 && x69:0 > 0 && x73:0 > -1) 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (44) PolynomialOrderProcessor (EQUIVALENT) 22.32/7.30 Found the following polynomial interpretation: 22.32/7.30 [f5677_0__init__FieldAccess(x, x1, x2, x3, x4, x5, x6, x7)] = -1 + c*x + x5 + x7 22.32/7.30 22.32/7.30 The following rules are decreasing: 22.32/7.30 f5677_0__init__FieldAccess(c, i1551:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.next]o8518:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, i1069:0:0) -> f5677_0__init__FieldAccess(c1, c2, c3, c4, o8952[LinkedList$Entry.previous]o8952:0:0, o8949[LinkedList$Entry.previous]o8946:0:0, o8949[LinkedList$Entry.previous]o8949:0:0, c5) :|: c5 = i1069:0:0 - 1 && (c4 = 1 && (c3 = 1 && (c2 = i1551:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1551:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 > 0 && o8518[LinkedList$Entry.previous]o8519:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 < o8518[LinkedList$Entry.previous]o8519:0:0 && o8948[LinkedList$Entry.next]o8946:0:0 < o8518[LinkedList$Entry.next]o8518:0:0 && i1069:0:0 > 0 && o8518[LinkedList$Entry.next]o8518:0:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c6, x56:0, x57:0, x58:0, x59:0, x60:0, x61:0, x54:0) -> f5677_0__init__FieldAccess(c7, c8, x65:0, x58:0, x59:0, x66:0, x67:0, c9) :|: c9 = x54:0 - 1 && (c8 = x56:0 + 1 && (c7 = 0 && c6 = 0)) && (x56:0 > -1 && x68:0 > -1 && x68:0 < x67:0 && x65:0 > x57:0 && x68:0 < x61:0 && x66:0 < x60:0 && x59:0 > 0 && x58:0 > 0 && x54:0 > 0 && x61:0 > 0 && x57:0 > 0 && x60:0 > 0) 22.32/7.30 f5677_0__init__FieldAccess(c27, x71:0, x72:0, x73:0, x72:0, x72:0, x72:0, x69:0) -> f5677_0__init__FieldAccess(c28, c29, c30, x77:0, x78:0, x79:0, x80:0, c31) :|: c31 = x69:0 - 1 && (c30 = 1 && (c29 = x71:0 + 1 && (c28 = 0 && c27 = 0))) && (x71:0 > -1 && x79:0 > 0 && x81:0 > 0 && x72:0 > -1 && x79:0 < x72:0 && x81:0 < x73:0 && x69:0 > 0 && x73:0 > -1) 22.32/7.30 The following rules are bounded: 22.32/7.30 f5677_0__init__FieldAccess(c, i1551:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.next]o8518:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, o8518[LinkedList$Entry.previous]o8519:0:0, i1069:0:0) -> f5677_0__init__FieldAccess(c1, c2, c3, c4, o8952[LinkedList$Entry.previous]o8952:0:0, o8949[LinkedList$Entry.previous]o8946:0:0, o8949[LinkedList$Entry.previous]o8949:0:0, c5) :|: c5 = i1069:0:0 - 1 && (c4 = 1 && (c3 = 1 && (c2 = i1551:0:0 + 1 && (c1 = 0 && c = 0)))) && (i1551:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 > 0 && o8518[LinkedList$Entry.previous]o8519:0:0 > -1 && o8949[LinkedList$Entry.previous]o8946:0:0 < o8518[LinkedList$Entry.previous]o8519:0:0 && o8948[LinkedList$Entry.next]o8946:0:0 < o8518[LinkedList$Entry.next]o8518:0:0 && i1069:0:0 > 0 && o8518[LinkedList$Entry.next]o8518:0:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c6, x56:0, x57:0, x58:0, x59:0, x60:0, x61:0, x54:0) -> f5677_0__init__FieldAccess(c7, c8, x65:0, x58:0, x59:0, x66:0, x67:0, c9) :|: c9 = x54:0 - 1 && (c8 = x56:0 + 1 && (c7 = 0 && c6 = 0)) && (x56:0 > -1 && x68:0 > -1 && x68:0 < x67:0 && x65:0 > x57:0 && x68:0 < x61:0 && x66:0 < x60:0 && x59:0 > 0 && x58:0 > 0 && x54:0 > 0 && x61:0 > 0 && x57:0 > 0 && x60:0 > 0) 22.32/7.30 f5677_0__init__FieldAccess(c10, x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(c11, c12, c13, c14, c15, c16, c17, c18) :|: c18 = x46:0 - 1 && (c17 = 1 && (c16 = 1 && (c15 = 1 && (c14 = 1 && (c13 = 1 && (c12 = x47:0 + 1 && (c11 = 0 && c10 = 0))))))) && (x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c19, x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(c20, c21, c22, x43:0, c23, c24, c25, c26) :|: c26 = x37:0 - 1 && (c25 = 1 && (c24 = 1 && (c23 = 1 && (c22 = 1 && (c21 = x38:0 + 1 && (c20 = 0 && c19 = 0)))))) && (x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c27, x71:0, x72:0, x73:0, x72:0, x72:0, x72:0, x69:0) -> f5677_0__init__FieldAccess(c28, c29, c30, x77:0, x78:0, x79:0, x80:0, c31) :|: c31 = x69:0 - 1 && (c30 = 1 && (c29 = x71:0 + 1 && (c28 = 0 && c27 = 0))) && (x71:0 > -1 && x79:0 > 0 && x81:0 > 0 && x72:0 > -1 && x79:0 < x72:0 && x81:0 < x73:0 && x69:0 > 0 && x73:0 > -1) 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (45) 22.32/7.30 Obligation: 22.32/7.30 Rules: 22.32/7.30 f5677_0__init__FieldAccess(c10, x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(c11, c12, c13, c14, c15, c16, c17, c18) :|: c18 = x46:0 - 1 && (c17 = 1 && (c16 = 1 && (c15 = 1 && (c14 = 1 && (c13 = 1 && (c12 = x47:0 + 1 && (c11 = 0 && c10 = 0))))))) && (x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c19, x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(c20, c21, c22, x43:0, c23, c24, c25, c26) :|: c26 = x37:0 - 1 && (c25 = 1 && (c24 = 1 && (c23 = 1 && (c22 = 1 && (c21 = x38:0 + 1 && (c20 = 0 && c19 = 0)))))) && (x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1) 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (46) RankingReductionPairProof (EQUIVALENT) 22.32/7.30 Interpretation: 22.32/7.30 [ f5677_0__init__FieldAccess ] = f5677_0__init__FieldAccess_8 22.32/7.30 22.32/7.30 The following rules are decreasing: 22.32/7.30 f5677_0__init__FieldAccess(c10, x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(c11, c12, c13, c14, c15, c16, c17, c18) :|: c18 = x46:0 - 1 && (c17 = 1 && (c16 = 1 && (c15 = 1 && (c14 = 1 && (c13 = 1 && (c12 = x47:0 + 1 && (c11 = 0 && c10 = 0))))))) && (x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c19, x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(c20, c21, c22, x43:0, c23, c24, c25, c26) :|: c26 = x37:0 - 1 && (c25 = 1 && (c24 = 1 && (c23 = 1 && (c22 = 1 && (c21 = x38:0 + 1 && (c20 = 0 && c19 = 0)))))) && (x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1) 22.32/7.30 22.32/7.30 The following rules are bounded: 22.32/7.30 f5677_0__init__FieldAccess(c10, x47:0, x48:0, x49:0, x48:0, x48:0, x48:0, x46:0) -> f5677_0__init__FieldAccess(c11, c12, c13, c14, c15, c16, c17, c18) :|: c18 = x46:0 - 1 && (c17 = 1 && (c16 = 1 && (c15 = 1 && (c14 = 1 && (c13 = 1 && (c12 = x47:0 + 1 && (c11 = 0 && c10 = 0))))))) && (x47:0 > -1 && x48:0 > -1 && x53:0 < x48:0 && x52:0 < x49:0 && x46:0 > 0 && x49:0 > -1) 22.32/7.30 f5677_0__init__FieldAccess(c19, x38:0, x39:0, x40:0, x39:0, x39:0, x39:0, x37:0) -> f5677_0__init__FieldAccess(c20, c21, c22, x43:0, c23, c24, c25, c26) :|: c26 = x37:0 - 1 && (c25 = 1 && (c24 = 1 && (c23 = 1 && (c22 = 1 && (c21 = x38:0 + 1 && (c20 = 0 && c19 = 0)))))) && (x38:0 > -1 && x44:0 > 0 && x39:0 > -1 && x45:0 < x39:0 && x44:0 < x40:0 && x37:0 > 0 && x40:0 > -1) 22.32/7.30 22.32/7.30 22.32/7.30 ---------------------------------------- 22.32/7.30 22.32/7.30 (47) 22.32/7.30 YES 22.58/7.38 EOF