Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for ListIterator (0.14 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

       * visit method calls replaceVisitedMethodWith(), the statement will be
       * replaced.
       */
      @SuppressWarnings("unchecked")
      protected <T extends Statement> void replaceAll(List<T> stats) {
        ListIterator<T> iter = stats.listIterator();
          while (iter.hasNext()) {
              iter.set((T) replace(iter.next()));
          }
      }
    
      /**
       * Replaces the currently visited statement with the specified statement.
       */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    public boolean containsAll(java.util.Collection); public Object get(int); public int indexOf(Object); public boolean isEmpty(); public java.util.Iterator iterator(); public int lastIndexOf(Object); public java.util.ListIterator listIterator(); public java.util.ListIterator listIterator(int); public int size(); public java.util.List subList(int, int); public Object[] toArray(); public Object[] toArray(Object[]); } META-INF/maven/org.codehaus.plexus/plexus-active-collections/pom.xml 4.0.0 plexus-components...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 15.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    public boolean containsAll(java.util.Collection); public Object get(int); public int indexOf(Object); public boolean isEmpty(); public java.util.Iterator iterator(); public int lastIndexOf(Object); public java.util.ListIterator listIterator(); public java.util.ListIterator listIterator(int); public int size(); public java.util.List subList(int, int); public Object[] toArray(); public Object[] toArray(Object[]); } META-INF/maven/org.codehaus.plexus/plexus-active-collections/pom.xml 4.0.0 plexus-components...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/UnmodifiableListIterator.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.DoNotCall;
    import java.util.ListIterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A list iterator that does not support {@link #remove}, {@link #add}, or {@link #set}.
     *
     * @since 7.0
     * @author Louis Wasserman
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            }
    
            paused = false;
            finishInput(event);
            replayEvents();
        }
    
        private void replayEvents() {
            ListIterator<OutputEvent> iterator = eventQueue.listIterator();
    
            while (iterator.hasNext()) {
                delegate.onOutput(iterator.next());
                iterator.remove();
            }
        }
    
        List<OutputEvent> getEventQueue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RegularImmutableAsList.java

        return delegateList;
      }
    
      @SuppressWarnings("unchecked") // safe covariant cast!
      @Override
      public UnmodifiableListIterator<E> listIterator(int index) {
        return (UnmodifiableListIterator<E>) delegateList.listIterator(index);
      }
    
      @GwtIncompatible // not present in emulated superclass
      @Override
      int copyIntoArray(@Nullable Object[] dst, int offset) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/UnmodifiableListIterator.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.DoNotCall;
    import java.util.ListIterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A list iterator that does not support {@link #remove}, {@link #add}, or {@link #set}.
     *
     * @since 7.0
     * @author Louis Wasserman
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/AbstractIndexedListIterator.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.ListIterator;
    import java.util.NoSuchElementException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * This class provides a skeletal implementation of the {@link ListIterator} interface across a
     * fixed number of elements that may be retrieved by position. It does not support {@link #remove},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RegularImmutableAsList.java

        return delegateList;
      }
    
      @SuppressWarnings("unchecked") // safe covariant cast!
      @Override
      public UnmodifiableListIterator<E> listIterator(int index) {
        return (UnmodifiableListIterator<E>) delegateList.listIterator(index);
      }
    
      @GwtIncompatible // not present in emulated superclass
      @Override
      public void forEach(Consumer<? super E> action) {
        delegateList.forEach(action);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/mdo/java/ImmutableCollections.java

            @Override
            public Iterator<E> iterator() {
                return new Itr(0);
            }
    
            @Override
            public ListIterator<E> listIterator() {
                return new Itr(0);
            }
    
            @Override
            public ListIterator<E> listIterator(int index) {
                if (index < 0 || index > size()) {
                    throw outOfBounds(index);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top