Home | History | Annotate | Download | only in framework

Lines Matching defs:fPrefix

16 	private int fPrefix;
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
41 if (fPrefix > 0)
49 fPrefix= 0;
51 for (; fPrefix < end; fPrefix++) {
52 if (fExpected.charAt(fPrefix) != fActual.charAt(fPrefix))
60 for (; actualSuffix >= fPrefix && expectedSuffix >= fPrefix; actualSuffix--, expectedSuffix--) {
68 return (fPrefix > fContextLength ? ELLIPSIS : "") + fExpected.substring(Math.max(0, fPrefix - fContextLength), fPrefix);