HomeSort by: relevance | last modified time | path
    Searched defs:assert_print_eq (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/
json.cc 269 assert_print_eq (const json::value &jv, const char *expected_json)
296 assert_print_eq (obj, "{\"foo\": \"bar\"}");
305 assert_print_eq (arr, "[]");
308 assert_print_eq (arr, "[\"foo\"]");
311 assert_print_eq (arr, "[\"foo\", \"bar\"]");
319 assert_print_eq (float_number (0), "0");
320 assert_print_eq (float_number (42), "42");
321 assert_print_eq (float_number (-100), "-100");
322 assert_print_eq (float_number (123456789), "1.23457e+08");
328 assert_print_eq (integer_number (0), "0")
268 assert_print_eq (const json::value &jv, const char *expected_json) function in namespace:selftest
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
json.cc 369 assert_print_eq (const location &loc,
379 #define ASSERT_PRINT_EQ(JV, FORMATTED, EXPECTED_JSON) \
380 assert_print_eq (SELFTEST_LOCATION, JV, FORMATTED, EXPECTED_JSON)
406 ASSERT_PRINT_EQ (obj, true,
410 ASSERT_PRINT_EQ (obj, false,
421 ASSERT_PRINT_EQ (arr, true, "[]");
424 ASSERT_PRINT_EQ (arr, true, "[\"foo\"]");
427 ASSERT_PRINT_EQ (arr, true,
430 ASSERT_PRINT_EQ (arr, false,
439 ASSERT_PRINT_EQ (float_number (0), true, "0")
368 assert_print_eq (const location &loc, function in namespace:selftest
    [all...]

Completed in 27 milliseconds