Home | History | Annotate | Download | only in intltest

Lines Matching refs:sp

287     StringPiece sp(abcd, -1);
288 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
291 sp=StringPiece(abcd, 5);
292 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
295 sp=StringPiece(abcd, 2);
296 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) {
300 sp=StringPiece(abcd, -1, 8);
301 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
304 sp=StringPiece(abcd, 5, 8);
305 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
308 sp=StringPiece(abcd, 2, 8);
309 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) {
312 sp=StringPiece(abcd, 2, -1);
313 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
322 sp=abcd.substr(-1);
323 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
326 sp=abcd.substr(5);
327 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
330 sp=abcd.substr(2);
331 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) {
335 sp=abcd.substr(-1, 8);
336 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
339 sp=abcd.substr(5, 8);
340 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
343 sp=abcd.substr(2, 8);
344 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) {
347 sp=abcd.substr(2, -1);
348 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
352 sp=abcd;
353 sp.clear();
354 if(!sp.empty() || sp.data()!=NULL || sp.length()!=0 || sp.size()!=0) {
358 sp=abcd;
359 sp.remove_prefix(-1);
360 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
363 sp=abcd;
364 sp.remove_prefix(2);
365 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) {
368 sp=abcd;
369 sp.remove_prefix(5);
370 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
374 sp=abcd;
375 sp.remove_suffix(-1);
376 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
379 sp=abcd;
380 sp.remove_suffix(2);
381 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=2 || sp.size()!=2) {
384 sp=abcd;
385 sp.remove_suffix(5);
386 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {