/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | text_handler.cpp | 60 // 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 D | text_handler.cpp | 60 // 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 D | pngconfig.mak | 135 $# 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 D | main.cpp | 350 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 D | MultiPictureDocumentTest.cpp | 7 * 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 D | CompressedBackendAllocationTest.cpp | 28 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 D | ShaderModuleGL.cpp | 255 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 D | ppc-darwin.S | 159 #error undefined architecture 176 #error undefined architecture
|
/third_party/python/Modules/ |
H A D | _dbmmodule.c | 21 #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 D | module-protocol-stub.c | 35 #include <pulsecore/core-error.h> 141 # error "Broken build system"
|
/third_party/python/Lib/test/libregrtest/ |
H A D | runtest.py | 57 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 D | Trace.cpp | 355 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 D | DWARFEmitter.cpp | 361 if (YIn.error()) in EmitDebugSections() 362 return errorCodeToError(YIn.error()); in EmitDebugSections()
|
/third_party/typescript/tests/arkTSTest/ |
H A D | run.js | 130 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 D | dng_xmp_sdk.cpp | 87 catch (XMP_Error &error)\ 89 const char *errMessage = error.GetErrMsg ();\
|
/third_party/protobuf/src/google/protobuf/compiler/csharp/ |
H A D | csharp_helpers.cc | 399 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 D | test_richcmp.py | 98 def checkfail(self, error, opname, *args): 100 self.assertRaises(error, op, *args)
|
/third_party/python/Lib/distutils/ |
H A D | msvccompiler.py | 29 RegError = winreg.error 41 RegError = win32api.error
|
/third_party/python/Lib/test/test_importlib/extension/ |
H A D | test_loader.py | 167 with self.assertRaises(module.error): 168 raise module.error()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | util.py | 321 except OSError as error: 322 if error.errno != errno.EEXIST:
|
/third_party/python/Lib/xml/sax/ |
H A D | saxutils.py | 241 def error(self, exception): member in XMLFilterBase 242 self._err_handler.error(exception)
|
/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | unicode.rs | 1 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 D | lib.rs | 34 //! 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 D | lib.rs | 18 mod error; modules 32 pub use crate::error::*;
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | connector.rs | 6 use crate::error::ErrorStack; 420 use crate::error::ErrorStack;
|