Home
last modified time | relevance | path

Searched refs:thisString (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Ddadrcal.cpp291 UnicodeString thisString = (UnicodeString)"#"+n+" "+(forward ? "forward" in testConvert() local
308 errln((UnicodeString)"FAIL: "+thisString in testConvert()
312 errln("FAIL: "+thisString+" SOURCE calendar Failed to match: " in testConvert()
315 logln("PASS: "+thisString+" SOURCE calendar match."); in testConvert()
330 errln((UnicodeString)"FAIL: "+thisString in testConvert()
334 errln("FAIL: "+thisString+" SET SOURCE calendar Failed to match: " in testConvert()
337 logln("PASS: "+thisString+" SET SOURCE calendar match."); in testConvert()
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs in testConvert()
358 errln("FAIL: "+thisString+" Failed to match: "+u_errorName(status)); in testConvert()
360 logln("PASS: "+thisString+" match."); in testConvert()
/external/chromium_org/third_party/icu/source/test/intltest/
Ddadrcal.cpp291 UnicodeString thisString = (UnicodeString)"#"+n+" "+(forward ? "forward" in testConvert() local
308 errln((UnicodeString)"FAIL: "+thisString in testConvert()
312 errln("FAIL: "+thisString+" SOURCE calendar Failed to match: " in testConvert()
315 logln("PASS: "+thisString+" SOURCE calendar match."); in testConvert()
330 errln((UnicodeString)"FAIL: "+thisString in testConvert()
334 errln("FAIL: "+thisString+" SET SOURCE calendar Failed to match: " in testConvert()
337 logln("PASS: "+thisString+" SET SOURCE calendar match."); in testConvert()
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs in testConvert()
358 errln("FAIL: "+thisString+" Failed to match: "+u_errorName(status)); in testConvert()
360 logln("PASS: "+thisString+" match."); in testConvert()
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
DRopeByteString.java481 LiteralByteString thisString = thisIter.next(); in equalsFragments() local
489 int thisRemaining = thisString.size() - thisOffset; in equalsFragments()
495 ? thisString.equalsRange(thatString, thatOffset, bytesToCompare) in equalsFragments()
496 : thatString.equalsRange(thisString, thisOffset, bytesToCompare); in equalsFragments()
511 thisString = thisIter.next(); in equalsFragments()
/external/icu/icu4c/source/common/
Dbytestriebuilder.cpp114 StringPiece thisString=getString(strings); in compareStringTo() local
116 int32_t lengthDiff=thisString.length()-otherString.length(); in compareStringTo()
119 commonLength=thisString.length(); in compareStringTo()
123 int32_t diff=uprv_memcmp(thisString.data(), otherString.data(), commonLength); in compareStringTo()