Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java375 int baseLength = base.length; in resolve() local
379 if (baseLength == 0 || child[0] == '/') in resolve()
382 if (baseLength == 1 && base[0] == '/') { in resolve()
387 result = new byte[baseLength + 1 + childLength]; in resolve()
388 System.arraycopy(base, 0, result, 0, baseLength); in resolve()
390 System.arraycopy(child, 0, result, baseLength+1, childLength); in resolve()