Home
last modified time | relevance | path

Searched refs:error (Results 10851 - 10875 of 15582) sorted by relevance

1...<<431432433434435436437438439440>>...624

/third_party/skia/third_party/externals/spirv-tools/source/
H A Dtext_handler.cpp60 // returned, SPV_SUCCESS otherwise. No error checking is performed on the
69 if (spv_result_t error = advanceLine(text, position)) return error; in advance()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dtext_handler.cpp60 // returned, SPV_SUCCESS otherwise. No error checking is performed on the
69 if (spv_result_t error = advanceLine(text, position)) return error; in advance()
/third_party/skia/third_party/externals/libpng/projects/owatcom/
H A Dpngconfig.mak135 $# pngconfig.dfa. The error messages from awk should be comprehensible, but
137 $# enter configuration lines one by one until one produces an error. (Or, of
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/
H A Dmain.cpp350 static void glfw_error_callback(int error, const char* description) in glfw_error_callback() argument
352 fprintf(stderr, "Glfw Error %d: %s\n", error, description); in glfw_error_callback()
416 // - If the file cannot be loaded, the function will return NULL. Please handle those errors in your application (e.g. use an assertion, or display an error and quit). in main()
/third_party/skia/tests/
H A DMultiPictureDocumentTest.cpp7 * This test confirms that a MultiPictureDocument can be serialized and deserailzied without error.
251 if (int error = AHardwareBuffer_allocate(&hwbDesc, &buffer)) { in makeAHardwareBufferTestImage()
252 ERRORF(reporter, "Failed to allocated hardware buffer, error: %d", error); in makeAHardwareBufferTestImage()
H A DCompressedBackendAllocationTest.cpp28 auto error = std::function<ComparePixmapsErrorReporter>( in check_solid_pixmap() local
36 CheckSolidPixels(expected, actual, tols, error); in check_solid_pixmap()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DShaderModuleGL.cpp255 DAWN_INVALID_IF(!result.success, "An error occured while generating SPIR-V: %s.", in Initialize()
256 result.error); in Initialize()
281 DAWN_INVALID_IF(!result.success, "An error occured while generating SPIR-V: %s.", in TranslateToGLSL()
282 result.error); in TranslateToGLSL()
/third_party/python/Modules/_ctypes/libffi_osx/powerpc/
H A Dppc-darwin.S159 #error undefined architecture
176 #error undefined architecture
/third_party/python/Modules/
H A D_dbmmodule.c21 #error "No gdbm/ndbm.h or gdbm-ndbm.h available"
34 #error "No ndbm.h available!"
517 state->dbm_error = PyErr_NewException("_dbm.error", PyExc_OSError, NULL); in _dbm_exec()
/third_party/pulseaudio/src/modules/
H A Dmodule-protocol-stub.c35 #include <pulsecore/core-error.h>
141 # error "Broken build system"
/third_party/python/Lib/test/libregrtest/
H A Druntest.py57 error_s = "error" + ("s" if le > 1 else "")
63 error_s = "error" + ("s" if le > 1 else "")
272 for error in loader.errors:
273 print(error, file=sys.stderr)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
H A DTrace.cpp355 if (In.error()) in loadYAMLLog()
356 return make_error<StringError>("Failed loading YAML Data.", In.error()); in loadYAMLLog()
432 // error. in loadTrace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp361 if (YIn.error()) in EmitDebugSections()
362 return errorCodeToError(YIn.error()); in EmitDebugSections()
/third_party/typescript/tests/arkTSTest/
H A Drun.js130 console.log(`==> Expect the error in Line ${compDetail.expectLineAndCharacter.line} The ${compDetail.expectLineAndCharacter.character} character. Expect exception rules:${compDetail.expectMessageText} Actual error line ${compDetail.realLineAndCharacter.line} The ${compDetail.realLineAndCharacter.character} character. Actual exception rules:${compDetail.realMessageText} Comparison Result:Fail!`)
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_xmp_sdk.cpp87 catch (XMP_Error &error)\
89 const char *errMessage = error.GetErrMsg ();\
/third_party/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_helpers.cc399 const std::string base_namespace, string* error) { in GetOutputFile()
413 *error = "Namespace " + ns + " is not a prefix namespace of base namespace " + base_namespace; in GetOutputFile()
414 return ""; // This will be ignored, because we've set an error. in GetOutputFile()
396 GetOutputFile(const FileDescriptor* descriptor, const std::string file_extension, const bool generate_directories, const std::string base_namespace, string* error) GetOutputFile() argument
/third_party/python/Lib/test/
H A Dtest_richcmp.py98 def checkfail(self, error, opname, *args):
100 self.assertRaises(error, op, *args)
/third_party/python/Lib/distutils/
H A Dmsvccompiler.py29 RegError = winreg.error
41 RegError = win32api.error
/third_party/python/Lib/test/test_importlib/extension/
H A Dtest_loader.py167 with self.assertRaises(module.error):
168 raise module.error()
/third_party/python/Lib/test/test_importlib/
H A Dutil.py321 except OSError as error:
322 if error.errno != errno.EEXIST:
/third_party/python/Lib/xml/sax/
H A Dsaxutils.py241 def error(self, exception): member in XMLFilterBase
242 self._err_handler.error(exception)
/third_party/rust/crates/regex/regex-syntax/src/
H A Dunicode.rs1 use std::error;
14 /// An error that occurs when dealing with Unicode.
17 /// into other public errors. (This error type isn't exported.)
30 /// An error that occurs when Unicode-aware simple case folding fails.
32 /// This error can occur when the case mapping tables necessary for Unicode
38 impl error::Error for CaseFoldError {}
50 /// An error that occurs when the Unicode-aware `\w` class is unavailable. in fmt()
52 /// This error can occur when the data tables necessary for the Unicode aware in fmt()
58 impl error::Error for UnicodeWordError {}
80 /// This returns an error i in fmt()
[all...]
/third_party/rust/crates/syn/src/
H A Dlib.rs34 //! token. These spans allow a procedural macro to display detailed error
126 //! # Spans and error reporting
129 //! compiler's error messages are displayed in user code. Consider the error the
148 //! error[E0277]: the trait bound `std::thread::Thread: HeapSize` is not satisfied
178 //! The implementation shows how to trigger custom warnings and error messages
195 //! produces maximally helpful error messages. Consider using the [`trybuild`]
199 //! mistakenly make an error no longer trigger or be less helpful than it used
346 mod error; modules
347 pub use crate::error
[all...]
/third_party/rust/crates/which-rs/src/
H A Dlib.rs18 mod error; modules
32 pub use crate::error::*;
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
H A Dconnector.rs6 use crate::error::ErrorStack;
420 use crate::error::ErrorStack;

Completed in 28 milliseconds

1...<<431432433434435436437438439440>>...624