Lines Matching refs:empty
179 StringPiece empty; in TestStringPiece() local
180 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) { in TestStringPiece()
185 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) { in TestStringPiece()
191 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) { in TestStringPiece()
197 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) { in TestStringPiece()
204 …if(uvwxyz.empty() || uvwxyz.data()!=uvwxyz_string.data() || uvwxyz.length()!=6 || uvwxyz.size()!=6… in TestStringPiece()
210 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
214 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
218 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
223 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
227 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
231 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
235 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
245 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
249 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
253 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
258 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
262 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
266 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
270 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
276 if(!sp.empty() || sp.data()!=NULL || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
282 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
287 if(sp.empty() || sp.data()!=abcdefg_chars+2 || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
292 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
298 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) { in TestStringPiece()
303 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=2 || sp.size()!=2) { in TestStringPiece()
308 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) { in TestStringPiece()
315 StringPiece empty; in TestStringPieceComparisons() local
320 if(empty!=null) { in TestStringPieceComparisons()
323 if(empty==abc) { in TestStringPieceComparisons()