Home
last modified time | relevance | path

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

/art/test/021-string2/src/junit/framework/
DComparisonCompactor.java16 private int fPrefix; field in ComparisonCompactor
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
41 if (fPrefix > 0) in compactString()
49 fPrefix= 0; in findCommonPrefix()
51 for (; fPrefix < end; fPrefix++) { in findCommonPrefix()
52 if (fExpected.charAt(fPrefix) != fActual.charAt(fPrefix)) in findCommonPrefix()
60 for (; actualSuffix >= fPrefix && expectedSuffix >= fPrefix; actualSuffix--, expectedSuffix--) { in findCommonSuffix()
68 …return (fPrefix > fContextLength ? ELLIPSIS : "") + fExpected.substring(Math.max(0, fPrefix - fCon… in computeCommonPrefix()
/art/test/082-inline-execute/src/junit/framework/
DComparisonCompactor.java16 private int fPrefix; field in ComparisonCompactor
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
41 if (fPrefix > 0) in compactString()
49 fPrefix= 0; in findCommonPrefix()
51 for (; fPrefix < end; fPrefix++) { in findCommonPrefix()
52 if (fExpected.charAt(fPrefix) != fActual.charAt(fPrefix)) in findCommonPrefix()
60 for (; actualSuffix >= fPrefix && expectedSuffix >= fPrefix; actualSuffix--, expectedSuffix--) { in findCommonSuffix()
68 …return (fPrefix > fContextLength ? ELLIPSIS : "") + fExpected.substring(Math.max(0, fPrefix - fCon… in computeCommonPrefix()