Home | History | Annotate | Download | only in unit

Lines Matching defs:Test

67 struct Test {
69 Test();
72 Test(int val) : value(val) {}
79 bool operator < (const Test& v1, int v2)
82 bool operator < (int v1, const Test& v2)
86 bool operator < (const Test& v1, const Test& v2)
105 vector<Test> tv;
106 vector<Test>::iterator it;
107 pair<vector<Test>::iterator, vector<Test>::iterator> p;