Home
last modified time | relevance | path

Searched refs:value_too_large (Results 1 – 15 of 15) sorted by relevance

/external/libcxx/include/
D__errc98 value_too_large, // EOVERFLOW
211 value_too_large = EOVERFLOW,
Dcharconv320 return {__last, errc::value_too_large};
335 return {__last, errc::value_too_large};
375 return {__last, errc::value_too_large};
Dfilesystem2374 make_error_code(errc::value_too_large));
/external/libcxx/test/support/
Dcharconv_test_helpers.h95 assert(r.ec == std::errc::value_too_large); in test()
119 assert(r.ec == std::errc::value_too_large); in test_value()
/external/libcxx/test/libcxx/input.output/filesystems/class.directory_entry/directory_entry.mods/
Dlast_write_time.sh.cpp69 const std::errc expected_err = std::errc::value_too_large; in TEST_CASE()
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/
Dlast_write_time.pass.cpp537 TEST_CHECK(ErrorIs(ec, std::errc::value_too_large)); in TEST_CASE()
541 TEST_CHECK(ErrorIs(ec, std::errc::value_too_large)); in TEST_CASE()
560 TEST_CHECK(ErrorIs(ec, std::errc::value_too_large)); in TEST_CASE()
/external/libcxx/test/std/diagnostics/syserr/
Derrc.pass.cpp102 static_assert(static_cast<int>(std::errc::value_too_large) == EOVERFLOW, ""); in main()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
Dsystem_error.inc82 MAP_ERR_TO_COND(ERROR_HANDLE_EOF, value_too_large);
DPathV2.inc686 // ERROR_HANDLE_EOF is mapped to errc::value_too_large.
/external/swiftshader/third_party/LLVM/lib/Support/
DPathV2.cpp729 if (ec == errc::value_too_large) { in has_magic()
744 if (ec && ec != errc::value_too_large) in identify_magic()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
Dsystem_error.h615 value_too_large = EOVERFLOW, enumerator
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceFileWriter.cpp59 std::errc::value_too_large); in checkNumberFits()
77 std::errc::value_too_large); in checkSignedNumberFits()
/external/libcxx/docs/DesignDocs/
DFileTimeType.rst94 implementation to report ``value_too_large`` errors when it encounters a time
130 file_time_type tp = last_write_time(p); // BAD! Throws value_too_large.
/external/libcxx/src/filesystem/
Doperations.cpp999 return err.report(errc::value_too_large); in __extract_last_write_time()
1036 return err.report(errc::value_too_large); in __last_write_time()
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPathV2.inc503 return make_error_code(errc::value_too_large);