/external/chromium/third_party/icu/source/test/intltest/ |
strtest.cpp | 274 StringPiece abcd(abcdefg_chars, 4); 275 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) { 287 StringPiece sp(abcd, -1); 289 errln("StringPiece(abcd, -1) failed"); 291 sp=StringPiece(abcd, 5); 293 errln("StringPiece(abcd, 5) failed"); 295 sp=StringPiece(abcd, 2) [all...] |
apicoll.cpp | 212 Locale abcd("ab", "CD", ""); 215 junk = Collator::createInstance(abcd, success); [all...] |
/external/icu4c/test/intltest/ |
strtest.cpp | 274 StringPiece abcd(abcdefg_chars, 4); 275 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) { 287 StringPiece sp(abcd, -1); 289 errln("StringPiece(abcd, -1) failed"); 291 sp=StringPiece(abcd, 5); 293 errln("StringPiece(abcd, 5) failed"); 295 sp=StringPiece(abcd, 2) [all...] |
apicoll.cpp | 226 Locale abcd("ab", "CD", ""); 229 junk = Collator::createInstance(abcd, success); [all...] |
/external/v8/test/mjsunit/ |
regexp-static.js | 134 assertEquals('abcd', 'abcd'.replace(re, f));
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
perlstress-001.js | 495 string = 'abcd'; 628 string = 'abcd'; 630 expectedmatch = Array('abcd', 'a'); 648 pattern = /abcd*efg/; 691 string = 'abcd'; 712 string = 'abcd'; 714 expectedmatch = Array('abcd', 'bc', 'd'); 719 string = 'abcd'; 721 expectedmatch = Array('abcd', 'bc', 'd'); 726 string = 'abcd'; [all...] |
/external/skia/src/core/ |
SkGeometry.cpp | 557 SkScalar abcd = SkScalarInterp(abc, bcd, t); local 562 dst[6] = abcd; [all...] |
/external/chromium/third_party/icu/source/test/cintltst/ |
custrtst.c | 497 abcd[] = { 0x61, 0x62, 0x63, 0x64, 0 }, local 649 if (u_strspn(testString, abcd) != u_strlen(testString)) { [all...] |
/external/icu4c/test/cintltst/ |
custrtst.c | 497 abcd[] = { 0x61, 0x62, 0x63, 0x64, 0 }, local 649 if (u_strspn(testString, abcd) != u_strlen(testString)) { [all...] |
/external/v8/src/ |
string.js | 377 // 'abcd'.replace(/(.)/g, function() { return RegExp.$1; } 378 // should be 'abcd' and not 'dddd' (or anything else).
|