Home
last modified time | relevance | path

Searched refs:error (Results 15376 - 15400 of 17253) sorted by relevance

1...<<611612613614615616617618619620>>...691

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp437 WithColor::error() << toString(std::move(e)); in extractDIEsIfNeeded()
599 WithColor::error() << "parsing a range list table: " in parseDWO()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGetTextureSubImageTests.cpp246 /** The function checks that GL_INVALID_OPERATION error is generated by GetTextureSubImage if
248 * GL_INVALID_OPERATION error is generated by GetCompressedTextureSubImage if texture is not
252 * @return True if proper error values are generated, false otherwise.
273 m_testCtx.getLog() << tcu::TestLog::Message << "GL_INVALID_OPERATION error is expected to be generated by " in testExistingTextureObjectError()
276 << " However, the error value " << glu::getErrorName(error_value) << " was generated." in testExistingTextureObjectError()
291 << "GL_INVALID_OPERATION error is expected to be generated by glGetCompressedTextureSubImage " in testExistingTextureObjectError()
294 << " However, the error value " << glu::getErrorName(error_value) << " was generated." in testExistingTextureObjectError()
306 /** The function checks that GL_INVALID_OPERATION error is generated if texture is the
310 * @return True if proper error values are generated, false otherwise.
326 m_testCtx.getLog() << tcu::TestLog::Message << "GL_INVALID_OPERATION error i in testBufferOrMultisampledTargetError()
1062 glw::GLint error = gl.getError(); check() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cTextureGatherTests.cpp972 long error = VerifyCompute(); in TestCompute() local
977 return error; in TestCompute()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_utils.h183 // Abstracts error handling. Implemented by both ContextVk for GL and DisplayVk for EGL errors.
1183 #define ANGLE_VK_CHECK(context, test, error) ANGLE_VK_TRY(context, test ? VK_SUCCESS : error)
H A DCommandProcessor.cpp339 errorStream << "Internal Vulkan error (" << errorCode << "): " << VulkanResultString(errorCode) in handleError()
349 Error error = {errorCode, file, function, line}; in handleError() local
350 mErrors.emplace(error); in handleError()
405 // TODO: https://issuetracker.google.com/issues/170311829 - follow-up on error handling in processTasks()
407 // do error processing, is anything required here? Don't think so, mostly need to in processTasks()
506 // Save the error so that we can handle it. in processTask()
755 // If finishToSerial times out we generate an error. Therefore we a large timeout. in waitForSerialWithUserTimeout()
1141 // Don't trigger an error on timeout. in waitForSerialWithUserTimeout()
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngimage.c456 * read error returns an errno value, else returns 0.
496 return 0; /* no error */ in buffer_from_file()
499 /* Some kind of funky error; errno should be non-zero */ in buffer_from_file()
514 APP_FAIL, /* continuable error - no need to longjmp */
542 jmp_buf error_return; /* Where to go to on error */
641 /* leave the filename for error detection */ in display_clean()
658 /* The display pointer is always stored in the png_struct error pointer */ in get_dp()
664 fprintf(stderr, "pngimage: internal error (no display)\n"); in get_dp()
671 /* error handling */
698 case APP_FAIL: lp = "error(continuabl in display_log()
774 display_error(png_structp pp, png_const_charp error) display_error() argument
[all...]
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Didec_dec.c34 // If there is any error the decoder goes into state ERROR.
244 return 0; // we mixed the modes => error in CheckMemBufferMode()
288 static VP8StatusCode IDecError(WebPIDecoder* const idec, VP8StatusCode error) { in IDecError() argument
294 return error; in IDecError()
442 // in case of error. in DecodePartition0()
463 // note: normally, error shouldn't occur since we already have the whole in DecodeRemaining()
/third_party/skia/tests/
H A DBackendAllocationTest.cpp211 auto error = std::function<ComparePixmapsErrorReporter>( in check_solid_pixmap() local
218 CheckSolidPixels(expected, actual, tols, error); in check_solid_pixmap()
/third_party/skia/third_party/externals/brotli/c/tools/
H A Dbrotli.c340 fprintf(stderr, "error parsing quality value [%s]\n", argv[i]); in ParseParams()
351 fprintf(stderr, "error parsing lgwin value [%s]\n", argv[i]); in ParseParams()
455 fprintf(stderr, "error parsing lgwin value [%s]\n", value); in ParseParams()
473 fprintf(stderr, "error parsing lgwin value [%s]\n", value); in ParseParams()
497 fprintf(stderr, "error parsing quality value [%s]\n", value); in ParseParams()
539 static void PrintHelp(const char* name, BROTLI_BOOL error) { in PrintHelp() argument
540 FILE* media = error ? stderr : stdout; in PrintHelp()
/third_party/python/Lib/test/
H A Dtest_threading.py219 except _thread.error:
231 except _thread.error:
539 # not log an error.
962 # this case without logging an error at Python exit.
1259 self.assertIn("Fatal Python error: Py_EndInterpreter: "
1319 self.assertEqual(p.returncode, 0, "Unexpected error: " + stderr.decode())
H A Dtest_hashlib.py118 except ModuleNotFoundError as error:
120 warnings.warn('Did a C extension fail to compile? %s' % error)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
H A DTextStub.cpp1117 // YAMLIn dynamically allocates for Interface file and in case of error, in get()
1122 if (YAMLIn.error()) in get()
1123 return make_error<StringError>(Ctx.ErrorMessage, YAMLIn.error()); in get()
/third_party/toybox/toys/posix/
H A Dtar.c440 if (j != writeall(fd, toybuf+512, j)) goto error; in sendfile_sparse()
454 error: in sendfile_sparse()
/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc311 GeneratorContext* context, std::string* error) const { in Generate()
323 *error = "Unknown generator option: " + options[i].first; in Generate()
404 // import statement would result in a syntax error from the presence of in PrintImports()
/third_party/rust/crates/syn/src/
H A Dgenerics.rs580 return Err(lookahead.error()); in parse()
623 Err(lookahead.error()) in parse()
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dmod.rs6 use std::error;
24 /// An error that can occur while translating an `Ast` to a `Hir`.
27 /// The kind of error.
30 /// span in an error is a valid range into this string.
32 /// The span of this error, derived from the Ast given to the translator.
37 /// Return the type of this error.
42 /// The original pattern string in which this error occurred.
44 /// Every span reported by this error is reported in terms of this string.
49 /// Return the span at which this error occurred.
55 /// The type of an error tha
[all...]
/third_party/selinux/libselinux/src/
H A Dlabel_file.c545 * passes fail, then it's a fatal error. in process_file()
1025 #error "Please use a compiler that supports __atomic builtins" in lookup_all()
1048 /* else it's an error */ in lookup_all()
1330 #error "Please use a compiler that supports __atomic builtins" in stats()
/third_party/rust/crates/nom/src/number/
H A Dstreaming.rs7 use crate::error::{ErrorKind, ParseError};
19 /// # use nom::{Err, error::ErrorKind, Needed};
49 /// # use nom::{Err, error::ErrorKind, Needed};
82 /// # use nom::{Err, error::ErrorKind, Needed};
115 /// # use nom::{Err, error::ErrorKind, Needed};
148 /// # use nom::{Err, error::ErrorKind, Needed};
180 /// # use nom::{Err, error::ErrorKind, Needed};
212 /// # use nom::{Err, error::ErrorKind, Needed};
232 /// # use nom::{Err, error::ErrorKind, Needed};
252 /// # use nom::{Err, error
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationNoneStageTests.cpp1384 std::string error = std::string("Format (") + in checkSupport() local
1386 TCU_THROW(NotSupportedError, error.c_str()); in checkSupport()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Deloop.c21 #error Do not define both of poll and epoll
25 #error Do not define both of poll and kqueue
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Deloop.c21 #error Do not define both of poll and epoll
25 #error Do not define both of poll and kqueue
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
H A Ddpp-nfc.py71 except OSError as error:
72 summary("Could not find wpa_supplicant: %s", str(error))
/base/telephony/cellular_call/test/unittest/cstest/
H A Dcs2_test.cpp996 rilRadioResponse->error = ErrType::ERR_GENERIC_FAILURE; in HWTEST_F()
1047 rilRadioResponse->error = ErrType::ERR_GENERIC_FAILURE; in HWTEST_F()
1054 rilRadioResponse->error = ErrType::NONE; in HWTEST_F()
/base/telephony/sms_mms/utils/
H A Dtext_coder.cpp212 GError *error = nullptr; in GetEncodeString() local
220 &bytes_written, &error); in GetEncodeString()
221 if (!error) { in GetEncodeString()
258 TELEPHONY_LOGE("make_unique error"); in Utf8ToGsm7bit()
263 TELEPHONY_LOGE("memset_s error"); in Utf8ToGsm7bit()
306 TELEPHONY_LOGE("GsmUtf8ToAuto make_unique error"); in GsmUtf8ToAuto()
311 TELEPHONY_LOGE("GsmUtf8ToAuto memset_s error"); in GsmUtf8ToAuto()
320 TELEPHONY_LOGE("GsmUtf8ToAuto memcpy_s error"); in GsmUtf8ToAuto()
334 TELEPHONY_LOGE("memcpy_s error"); in GsmUtf8ToAuto()
352 TELEPHONY_LOGE("CdmaUtf8ToAuto make_unique error"); in CdmaUtf8ToAuto()
[all...]
/device/soc/rockchip/common/sdk_linux/net/bluetooth/
H A Dl2cap_sock.c1961 goto error; in l2cap_init_sockets()
1968 goto error; in l2cap_init_sockets()
1975 error: in l2cap_init_sockets()

Completed in 48 milliseconds

1...<<611612613614615616617618619620>>...691