HomeSort by relevance Sort by last modified time
    Searched defs:rangeEquals (Results 1 - 6 of 6) sorted by null

  /external/okhttp/okio/okio/src/main/java/okio/
SegmentedByteString.java 184 @Override public boolean rangeEquals(
187 // Go segment-by-segment through this, passing arrays to other's rangeEquals().
194 if (!other.rangeEquals(otherOffset, segments[s], arrayOffset, stepSize)) return false;
202 @Override public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) {
228 && rangeEquals(0, ((ByteString) o), 0, size());
ByteString.java 309 public boolean rangeEquals(int offset, ByteString other, int otherOffset, int byteCount) {
310 return other.rangeEquals(otherOffset, this.data, offset, byteCount);
318 public boolean rangeEquals(int offset, byte[] other, int otherOffset, int byteCount) {
328 && ((ByteString) o).rangeEquals(0, data, 0, data.length);
RealBufferedSource.java 327 if (rangeEquals(fromIndex, bytes)) {
351 private boolean rangeEquals(long offset, ByteString bytes) throws IOException {
352 return request(offset + bytes.size()) && buffer.rangeEquals(offset, bytes);
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.9.0/
okio-1.9.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.8.0/
okio-1.8.0.jar 

Completed in 50 milliseconds