Searched refs:value_too_large (Results 1 – 15 of 15) sorted by relevance
/external/libcxx/include/ |
D | __errc | 98 value_too_large, // EOVERFLOW 211 value_too_large = EOVERFLOW,
|
D | charconv | 320 return {__last, errc::value_too_large}; 335 return {__last, errc::value_too_large}; 375 return {__last, errc::value_too_large};
|
D | filesystem | 2374 make_error_code(errc::value_too_large));
|
/external/libcxx/test/support/ |
D | charconv_test_helpers.h | 95 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/ |
D | last_write_time.sh.cpp | 69 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/ |
D | last_write_time.pass.cpp | 537 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/ |
D | errc.pass.cpp | 102 static_assert(static_cast<int>(std::errc::value_too_large) == EOVERFLOW, ""); in main()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | system_error.inc | 82 MAP_ERR_TO_COND(ERROR_HANDLE_EOF, value_too_large);
|
D | PathV2.inc | 686 // ERROR_HANDLE_EOF is mapped to errc::value_too_large.
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | PathV2.cpp | 729 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/ |
D | system_error.h | 615 value_too_large = EOVERFLOW, enumerator
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
D | ResourceFileWriter.cpp | 59 std::errc::value_too_large); in checkNumberFits() 77 std::errc::value_too_large); in checkSignedNumberFits()
|
/external/libcxx/docs/DesignDocs/ |
D | FileTimeType.rst | 94 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/ |
D | operations.cpp | 999 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/ |
D | PathV2.inc | 503 return make_error_code(errc::value_too_large);
|