Lines Matching defs:line
171 static void CuFailInternal(CuTest* tc, const char* file, int line, CuString* string)
175 sprintf(buf, "%s:%d: ", file, line);
183 void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message)
194 CuFailInternal(tc, file, line, &string);
197 void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition)
200 CuFail_Line(tc, file, line, NULL, message);
203 void CuAssertStrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
225 CuFailInternal(tc, file, line, &string);
228 void CuAssertIntEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
234 CuFail_Line(tc, file, line, message, buf);
237 void CuAssertDblEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
244 CuFail_Line(tc, file, line, message, buf);
247 void CuAssertPtrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
253 CuFail_Line(tc, file, line, message, buf);