HomeSort by relevance Sort by last modified time
    Searched refs:fSuffix (Results 1 - 25 of 39) sorted by null

1 2

  /external/skia/src/sksl/ast/
SkSLASTSuffixExpression.h 23 , fSuffix(std::move(suffix)) {}
26 return fBase->description() + fSuffix->description();
30 const std::unique_ptr<ASTSuffix> fSuffix;
  /external/skqp/src/sksl/ast/
SkSLASTSuffixExpression.h 23 , fSuffix(std::move(suffix)) {}
26 return fBase->description() + fSuffix->description();
30 const std::unique_ptr<ASTSuffix> fSuffix;
  /external/junit/src/main/java/junit/framework/
ComparisonCompactor.java 13 private int fSuffix;
34 String result = DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
38 if (fSuffix > 0) {
62 fSuffix = fExpected.length() - expectedSuffix;
70 int end = Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length());
71 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /art/test/021-string2/src/junit/framework/
ComparisonCompactor.java 17 private int fSuffix;
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
43 if (fSuffix > 0)
64 fSuffix= fExpected.length() - expectedSuffix;
72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length());
73 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /art/test/082-inline-execute/src/junit/framework/
ComparisonCompactor.java 17 private int fSuffix;
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
43 if (fSuffix > 0)
64 fSuffix= fExpected.length() - expectedSuffix;
72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length());
73 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /frameworks/base/test-base/src/junit/framework/
ComparisonCompactor.java 17 private int fSuffix;
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
43 if (fSuffix > 0)
64 fSuffix= fExpected.length() - expectedSuffix;
72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length());
73 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /external/skia/gm/
imagesource2.cpp 19 ImageSourceGM(const char* suffix, SkFilterQuality filter) : fSuffix(suffix), fFilter(filter) {
26 name.append(fSuffix);
78 SkString fSuffix;
imagefiltersbase.cpp 252 SkString fSuffix;
254 ImageFiltersTextBaseGM(const char suffix[]) : fSuffix(suffix) {}
259 name.printf("%s_%s", "textfilter", fSuffix.c_str());
  /external/skqp/gm/
imagesource2.cpp 19 ImageSourceGM(const char* suffix, SkFilterQuality filter) : fSuffix(suffix), fFilter(filter) {
26 name.append(fSuffix);
78 SkString fSuffix;
imagefiltersbase.cpp 252 SkString fSuffix;
254 ImageFiltersTextBaseGM(const char suffix[]) : fSuffix(suffix) {}
259 name.printf("%s_%s", "textfilter", fSuffix.c_str());
  /external/skia/tools/
skhello.cpp 86 const char* fSuffix;
94 file.printf("%s%s", path.c_str(), gRec[i].fSuffix);
  /external/skqp/tools/
skhello.cpp 86 const char* fSuffix;
94 file.printf("%s%s", path.c_str(), gRec[i].fSuffix);
  /external/icu/icu4c/source/i18n/
number_modifiers.h 29 : fPrefix(prefix), fSuffix(suffix), fField(field), fStrong(strong) {}
42 UnicodeString fSuffix;
107 bool strong) : fPrefix(prefix), fSuffix(suffix), fStrong(strong) {}
122 NumberStringBuilder fSuffix;
number_modifiers.cpp 56 int length = output.insert(rightIndex, fSuffix, fField, status);
68 return fPrefix.countChar32() + fSuffix.countChar32();
144 int32_t length = output.insert(rightIndex, fSuffix, status);
156 return fPrefix.codePointCount() + fSuffix.codePointCount();
  /external/skia/src/ports/
SkOSFile_posix.cpp 128 SkString fPath, fSuffix;
163 self.fSuffix.set(suffix);
165 self.fSuffix.reset();
198 if (!(s.st_mode & S_IFDIR) && issuffixfor(self.fSuffix, entry->d_name)) {
  /external/skqp/src/ports/
SkOSFile_posix.cpp 128 SkString fPath, fSuffix;
163 self.fSuffix.set(suffix);
165 self.fSuffix.reset();
198 if (!(s.st_mode & S_IFDIR) && issuffixfor(self.fSuffix, entry->d_name)) {
  /external/skia/tools/bookmaker/
parserCommon.cpp 273 : fSuffix(suffix)
299 // need to compare fSuffix against next value returned
346 if (str->length() - strlen(fSuffix) == str->find(fSuffix)) {
  /external/skqp/tools/bookmaker/
parserCommon.cpp 273 : fSuffix(suffix)
299 // need to compare fSuffix against next value returned
346 if (str->length() - strlen(fSuffix) == str->find(fSuffix)) {
  /external/skia/src/sksl/
SkSLIRGenerator.cpp     [all...]
  /external/skqp/src/sksl/
SkSLIRGenerator.cpp     [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/annotation-tools/scene-lib/
junit.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
junit-4.8.1.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 

Completed in 1024 milliseconds

1 2