Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for internalArrayEnd (0.08 sec)

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

        int size = size();
    
        if (other.length < size) {
          Object[] internal = internalArray();
          if (internal != null) {
            return Platform.copy(internal, internalArrayStart(), internalArrayEnd(), other);
          }
          other = ObjectArrays.newArray(other, size);
        } else if (other.length > size) {
          other[size] = null;
        }
        copyIntoArray(other, 0);
        return other;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableCollection.java

        int size = size();
    
        if (other.length < size) {
          Object[] internal = internalArray();
          if (internal != null) {
            return Platform.copy(internal, internalArrayStart(), internalArrayEnd(), other);
          }
          other = ObjectArrays.newArray(other, size);
        } else if (other.length > size) {
          other[size] = null;
        }
        copyIntoArray(other, 0);
        return other;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

          return ImmutableList.this.internalArray();
        }
    
        @Override
        int internalArrayStart() {
          return ImmutableList.this.internalArrayStart() + offset;
        }
    
        @Override
        int internalArrayEnd() {
          return ImmutableList.this.internalArrayStart() + offset + length;
        }
    
        @Override
        public E get(int index) {
          checkElementIndex(index, length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.5K bytes
    - Viewed (0)
Back to top