Home | History | Annotate | Download | only in testing

Lines Matching full:next

7 // Fetch strings using a Java-like Next()/HasNext() interface.
24 const StringPiece& Next();
30 // Causes generator to emit random strings for next n calls to Next().
33 // Causes generator to emit a NULL as the next call.
45 StringPiece sp_; // Last StringPiece returned by Next().
46 string s_; // String data in last StringPiece returned by Next().
47 bool hasnext_; // Whether Next() can be called again.
48 vector<int> digits_; // Alphabet indices for next string.
49 bool generate_null_; // Whether to generate a NULL StringPiece next.