Lines Matching refs:v2
49 vector<int> v2(3); in incl1() local
55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
58 for (i = 0; (size_t)i < v2.size(); ++i) in incl1()
59 v2[i] = i + 3; in incl1()
61 bool r2=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
73 vector <char const*> v2(2); in incl2() local
75 v2[0] = "foo"; in incl2()
76 v2[1] = "bar"; in incl2()
78 sort(v2.begin(), v2.end(), compare_strings); in incl2()
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()
83 v2[0] = "Brett"; in incl2()
84 v2[1] = "Todd"; in incl2()
85 bool r2 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()