Lines Matching +defs:file +defs:style
157 void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T style)
159 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
163 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT)
171 UnityPrintNumberHex((UNITY_UINT)number, (char)((style & 0xF) * 2));
357 static void UnityTestResultsBegin(const char* file, const UNITY_LINE_TYPE line)
359 UnityPrint(file);
538 const UNITY_DISPLAY_STYLE_T style)
546 UnityPrintNumberByStyle(expected, style);
548 UnityPrintNumberByStyle(actual, style);
560 const UNITY_DISPLAY_STYLE_T style)
568 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
583 UnityPrintNumberByStyle(actual, style);
587 UnityPrintNumberByStyle(threshold, style);
606 const UNITY_DISPLAY_STYLE_T style,
610 unsigned int length = style & 0xF;
652 if (style & UNITY_DISPLAY_RANGE_UINT && length < sizeof(expect_val))
663 UnityPrintNumberByStyle(expect_val, style);
665 UnityPrintNumberByStyle(actual_val, style);
776 const UNITY_FLOAT_TRAIT_T style)
779 UNITY_INT should_be_trait = ((UNITY_INT)style & 1);
781 UNITY_INT trait_index = (UNITY_INT)(style >> 1);
785 switch (style)
906 const UNITY_FLOAT_TRAIT_T style)
909 UNITY_INT should_be_trait = ((UNITY_INT)style & 1);
911 UNITY_INT trait_index = (UNITY_INT)(style >> 1);
915 switch (style)
970 const UNITY_DISPLAY_STYLE_T style)
974 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
993 UnityPrintNumberByStyle((UNITY_INT)delta, style);
995 UnityPrintNumberByStyle(expected, style);
997 UnityPrintNumberByStyle(actual, style);