Lines Matching full:vector
26 #include <vector>
32 // Returns a vector of the egrep regexp operators.
33 const vector<string>& RegexpGenerator::EgrepOps() {
42 static vector<string> v(ops, ops + arraysize(ops));
47 const vector<string>& atoms,
48 const vector<string>& ops)
60 vector<string> postfix;
70 vector<string> postfix;
99 // The initial call should be GeneratePostfix([empty vector], 0, 0, 0).
101 void RegexpGenerator::GeneratePostfix(vector<string>* post, int nstk,
137 bool RegexpGenerator::GenerateRandomPostfix(vector<string> *post, int nstk,
180 void RegexpGenerator::RunPostfix(const vector<string>& post) {
228 // Split s into an vector of strings, one for each UTF-8 character.
229 vector<string> Explode(const StringPiece& s) {
230 vector<string> v;
243 // vector of pieces.
244 vector<string> Split(const StringPiece& sep, const StringPiece& s) {
245 vector<string> v;