Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for hasPrevious (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/FilteredIndexedElementSource.java

                this.iterator = iterator;
            }
    
            @Override
            public boolean hasNext() {
                return iterator.hasNext();
            }
    
            @Override
            public boolean hasPrevious() {
                throw new UnsupportedOperationException("Not implemented yet.");
            }
    
            @Override
            public T next() {
                nextIndex++;
                return iterator.next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 01:28:48 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/ListElementSource.java

            RealizedElementListIterator(List<Element<T>> backingList, Spec<ValuePointer<?>> acceptanceSpec) {
                super(backingList, acceptanceSpec);
            }
    
            @Override
            public boolean hasPrevious() {
                return previous != null;
            }
    
            private void updatePrevious() {
                int i = previousIndex;
                while (i >= 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    ListIterator<DependencyNode> iter = collectStepTrace
                            .getPath()
                            .listIterator(collectStepTrace.getPath().size());
                    while (iter.hasPrevious()) {
                        DependencyNode curr = iter.previous();
                        indent += "  ";
                        trackingData.add(indent + curr + " (" + collectStepTrace.getContext() + ")");
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

              forwardIterator.previous();
              canRemoveOrSet = false;
            }
    
            @Override
            public boolean hasNext() {
              return forwardIterator.hasPrevious();
            }
    
            @Override
            public boolean hasPrevious() {
              return forwardIterator.hasNext();
            }
    
            @Override
            @ParametricNullness
            public T next() {
              if (!hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Lists.java

              forwardIterator.previous();
              canRemoveOrSet = false;
            }
    
            @Override
            public boolean hasNext() {
              return forwardIterator.hasPrevious();
            }
    
            @Override
            public boolean hasPrevious() {
              return forwardIterator.hasNext();
            }
    
            @Override
            @ParametricNullness
            public T next() {
              if (!hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                            queue.addFirst(list.get(i));
                        }
                    } else {
                        ListIterator<?> iterator = list.listIterator(list.size());
                        while (iterator.hasPrevious()) {
                            Object item = iterator.previous();
                            queue.addFirst(item);
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/LinkedListMultimap.java

            next = current.next;
          }
          removeNode(current);
          current = null;
          expectedModCount = modCount;
        }
    
        @Override
        public boolean hasPrevious() {
          checkForConcurrentModification();
          return previous != null;
        }
    
        @CanIgnoreReturnValue
        @Override
        public Node<K, V> previous() {
          checkForConcurrentModification();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  8. src/mdo/java/ImmutableCollections.java

                }
    
                @Override
                public E next() {
                    return get(index++);
                }
    
                @Override
                public boolean hasPrevious() {
                    return index > 0;
                }
    
                @Override
                public E previous() {
                    return get(--index);
                }
    
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/LinkedListMultimap.java

            next = current.next;
          }
          removeNode(current);
          current = null;
          expectedModCount = modCount;
        }
    
        @Override
        public boolean hasPrevious() {
          checkForConcurrentModification();
          return previous != null;
        }
    
        @CanIgnoreReturnValue
        @Override
        public Node<K, V> previous() {
          checkForConcurrentModification();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

        public XmlNode getChild(String name) {
            if (name != null) {
                ListIterator<XmlNode> it = children.listIterator(children.size());
                while (it.hasPrevious()) {
                    XmlNode child = it.previous();
                    if (name.equals(child.getName())) {
                        return child;
                    }
                }
            }
            return null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top