Home | History | Annotate | Download | only in base

Lines Matching refs:v1

216 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {
218 ss << names << " (" << v1 << " vs. " << v2 << ")";
222 extern std::string* MakeCheckOpStringIntInt(int v1, int v2, const char* names);
225 std::string* MakeCheckOpString(const int& v1, const int& v2, const char* names) {
226 return MakeCheckOpStringIntInt(v1, v2, names);
255 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
257 if (v1 op v2) return NULL; \
258 else return MakeCheckOpString(v1, v2, names); \
260 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
261 if (v1 op v2) return NULL; \
262 else return MakeCheckOpString(v1, v2, names); \