Home
last modified time | relevance | path

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

/dalvik/libcore/luni/src/main/java/java/io/
DFile.java526 byte newResult[] = new byte[result.length + 1]; in getCanonicalPath()
531 newResult[newLength++] = result[i]; in getCanonicalPath()
551 newResult[newLength++] = (byte) separatorChar; in getCanonicalPath()
561 newResult[newLength++] = (byte) '.'; in getCanonicalPath()
564 newResult[newLength++] = result[i]; in getCanonicalPath()
570 && newResult[newLength - 1] == separatorChar) { in getCanonicalPath()
573 newResult[newLength] = 0; in getCanonicalPath()
574 newResult = getCanonImpl(newResult); in getCanonicalPath()
575 newLength = newResult.length; in getCanonicalPath()
576 canonPath = Util.toUTF8String(newResult, 0, newLength); in getCanonicalPath()
[all …]
/dalvik/vm/
DInlineNative.c151 int expectResult, int newResult, const char* compareType) in badMatch() argument
175 LOGE("%s expected %d got %d\n", compareType, expectResult, newResult); in badMatch()