Lines Matching refs:empty

192     StringPiece empty;  in TestStringPiece()  local
193 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) { in TestStringPiece()
198 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) { in TestStringPiece()
204 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) { in TestStringPiece()
210 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) { in TestStringPiece()
216 …if(uvwxyz.empty() || uvwxyz.data()!=uvwxyz_string.data() || uvwxyz.length()!=6 || uvwxyz.size()!=6… in TestStringPiece()
221 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
225 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
229 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
234 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
238 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
242 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
246 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
256 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
260 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
264 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
269 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
273 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
277 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
281 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
287 if(!sp.empty() || sp.data()!=NULL || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
293 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
298 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
303 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
309 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
314 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
319 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
326 StringPiece empty; in TestStringPieceComparisons() local
331 if(empty!=null) { in TestStringPieceComparisons()
334 if(empty==abc) { in TestStringPieceComparisons()