Home
last modified time | relevance | path

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

/external/junit/src/junit/framework/
DComparisonCompactor.java17 private int fSuffix; field in ComparisonCompactor
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
43 if (fSuffix > 0) in compactString()
64 fSuffix= fExpected.length() - expectedSuffix; in findCommonSuffix()
72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length()); in computeCommonSuffix()
73 …return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix in computeCommonSuffix()
/external/junit/src/org/junit/
DComparisonFailure.java72 private int fSuffix; field in ComparisonFailure.ComparisonCompactor
98 … String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
101 if (fSuffix > 0) in compactString()
122 fSuffix= fExpected.length() - expectedSuffix; in findCommonSuffix()
130 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length()); in computeCommonSuffix()
131 …return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix in computeCommonSuffix()
/external/skia/gm/
Dimagesource2.cpp19 ImageSourceGM(const char* suffix, SkFilterQuality filter) : fSuffix(suffix), fFilter(filter) { in ImageSourceGM()
26 name.append(fSuffix); in onShortName()
80 SkString fSuffix; member in skiagm::ImageSourceGM
Dimagefiltersbase.cpp243 SkString fSuffix; member in ImageFiltersTextBaseGM
245 ImageFiltersTextBaseGM(const char suffix[]) : fSuffix(suffix) {} in ImageFiltersTextBaseGM()
250 name.printf("%s_%s", "textfilter", fSuffix.c_str()); in onShortName()
/external/skia/src/ports/
DSkOSFile_posix.cpp103 SkString fPath, fSuffix; member
132 self.fSuffix.set(suffix); in reset()
134 self.fSuffix.reset(); in reset()
167 if (!(s.st_mode & S_IFDIR) && issuffixfor(self.fSuffix, entry->d_name)) { in next()
/external/skia/tools/
Dskhello.cpp91 const char* fSuffix; in tool_main() member
99 file.printf("%s%s", path.c_str(), gRec[i].fSuffix); in tool_main()