Home
last modified time | relevance | path

Searched refs:thatOffsetCount (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java618 int thatOffsetCount = that.getNameCount(); in startsWith() local
621 if (thatOffsetCount == 0 && this.isAbsolute()) { in startsWith()
626 if (thatOffsetCount > thisOffsetCount) in startsWith()
630 if ((thatOffsetCount == thisOffsetCount) && in startsWith()
636 for (int i=0; i<thatOffsetCount; i++) { in startsWith()
680 int thatOffsetCount = that.getNameCount(); in endsWith() local
683 if (thatOffsetCount > thisOffsetCount) { in endsWith()
687 if (thatOffsetCount == thisOffsetCount) { in endsWith()
703 int thisPos = offsets[thisOffsetCount - thatOffsetCount]; in endsWith()