Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for endOfData (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/collect/TreeRangeSet.java

            protected @Nullable Entry<Cut<C>, Range<C>> computeNext() {
              if (!backingItr.hasNext()) {
                return endOfData();
              }
              Range<C> range = backingItr.next();
              if (upperBoundWindow.upperBound.isLessThan(range.upperBound)) {
                return endOfData();
              } else {
                return immutableEntry(range.upperBound, range);
              }
            }
          };
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 32.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Collections2.java

          this.nextPermutation = new ArrayList<>(list);
          this.comparator = comparator;
        }
    
        @Override
        protected @Nullable List<E> computeNext() {
          if (nextPermutation == null) {
            return endOfData();
          }
          ImmutableList<E> next = ImmutableList.copyOf(nextPermutation);
          calculateNextPermutation();
          return next;
        }
    
        void calculateNextPermutation() {
          int j = findNextJ();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 22.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

              while (!elemItr.hasNext()) {
                if (rangeItr.hasNext()) {
                  elemItr = ContiguousSet.create(rangeItr.next(), domain).iterator();
                } else {
                  return endOfData();
                }
              }
              return elemItr.next();
            }
          };
        }
    
        @Override
        @GwtIncompatible // NavigableSet
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/FilteredEntryMultimap.java

                    if (!collection.isEmpty()) {
                      return immutableEntry(key, collection);
                    }
                  }
                  return endOfData();
                }
              };
            }
    
            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(in(c));
            }
    
            @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/StandardTable.java

                        entry.getValue().put(columnKey, checkNotNull(value)));
                  }
                }
                return new EntryImpl();
              }
            }
            return endOfData();
          }
        }
    
        @Override
        Set<R> createKeySet() {
          return new KeySet();
        }
    
        @WeakOuter
        private final class KeySet extends Maps.KeySet<R, V> {
          KeySet() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/Collections2.java

          this.nextPermutation = new ArrayList<>(list);
          this.comparator = comparator;
        }
    
        @Override
        protected @Nullable List<E> computeNext() {
          if (nextPermutation == null) {
            return endOfData();
          }
          ImmutableList<E> next = ImmutableList.copyOf(nextPermutation);
          calculateNextPermutation();
          return next;
        }
    
        void calculateNextPermutation() {
          int j = findNextJ();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 23K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/graph/Traverser.java

                    order.insertInto(horizon, successors);
                  }
                  return next;
                }
              } while (!horizon.isEmpty());
              return endOfData();
            }
          };
        }
    
        final Iterator<N> postOrder(Iterator<? extends N> startNodes) {
          Deque<N> ancestorStack = new ArrayDeque<>();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/TreeBasedTable.java

              if (!duplicate) {
                lastValue = next;
                return lastValue;
              }
            }
    
            lastValue = null; // clear reference to unused data
            return endOfData();
          }
        };
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 18 15:05:43 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/base/Optional.java

                  Optional<? extends T> optional = iterator.next();
                  if (optional.isPresent()) {
                    return optional.get();
                  }
                }
                return endOfData();
              }
            };
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/StandardTable.java

                        entry.getValue().put(columnKey, checkNotNull(value)));
                  }
                }
                return new EntryImpl();
              }
            }
            return endOfData();
          }
        }
    
        @Override
        Set<R> createKeySet() {
          return new KeySet();
        }
    
        @WeakOuter
        private final class KeySet extends Maps.KeySet<R, V> {
          KeySet() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
Back to Top