/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | InvalidFormatException.java | 20 public InvalidFormatException(Throwable cause) { in InvalidFormatException() argument 21 super(cause); in InvalidFormatException()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | InvalidFormatException.java | 24 public InvalidFormatException(Throwable cause) { in InvalidFormatException() argument 25 super(cause); in InvalidFormatException()
|
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
H A D | BrotliRuntimeException.cs | 17 internal BrotliRuntimeException(string message, System.Exception cause)
in BrotliRuntimeException() argument 18 : base(message, cause)
in BrotliRuntimeException()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | SkeletonSyntaxException.java | 30 public SkeletonSyntaxException(String message, CharSequence token, Throwable cause) { in SkeletonSyntaxException() argument 31 super("Syntax error in skeleton string: " + message + ": " + token, cause); in SkeletonSyntaxException()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
H A D | SkeletonSyntaxException.java | 29 public SkeletonSyntaxException(String message, CharSequence token, Throwable cause) { in SkeletonSyntaxException() argument 30 super("Syntax error in skeleton string: " + message + ": " + token, cause); in SkeletonSyntaxException()
|
/third_party/backends/backend/ |
H A D | epsonds-cmd.c | 1008 char *cause = token + 3 + 4; /* OPN, PJ, PE, ERR, LTF, LOCK, DFED, DTCL, AUT, PERM */ in img_cb() local 1013 DBG(1, "%s: error on option %3.3s, cause %4.4s\n", in img_cb() 1014 __func__, option, cause); in img_cb() 1016 if (cause[0] == 'P' && cause[1] == 'J') in img_cb() 1019 if (cause[0] == 'P' && cause[1] == 'E') in img_cb() 1022 if (cause[0] == 'O' && cause[1] == 'P' && cause[ in img_cb() [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | DescriptorValidationException.cs | 73 internal DescriptorValidationException(IDescriptor problemDescriptor, string description, Exception cause) : in DescriptorValidationException() argument 74 base(problemDescriptor.FullName + ": " + description, cause) in DescriptorValidationException()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
H A D | import.go | 26 "../cause" 102 return nil, cause.Wrap(err, "llvm-profdata errored") 123 return nil, cause.Wrap(err, "llvm-cov errored: %v", string(err.(*exec.ExitError).Stderr)) 127 return nil, cause.Wrap(err, "Couldn't parse coverage json data") 134 return nil, cause.Wrap(err, "turbo-cov errored: %v", string(err.(*exec.ExitError).Stderr)) 138 return nil, cause.Wrap(err, "Couldn't process turbo-cov output")
|
/third_party/node/lib/internal/streams/ |
H A D | add-abort-signal.js | 46 stream.destroy(new AbortError(undefined, { cause: signal.reason })); 49 stream[kControllerErrorFunction](new AbortError(undefined, { cause: signal.reason }));
|
H A D | operators.js | 231 throw new AbortError({ cause: options.signal.reason }); 313 const err = new AbortError(undefined, { cause: options.signal.reason }); 358 throw new AbortError(undefined, { cause: options.signal.reason });
|
/third_party/node/lib/readline/ |
H A D | promises.js | 40 new AbortError(undefined, { cause: options.signal.reason })); 45 reject(new AbortError(undefined, { cause: options.signal.reason }));
|
/third_party/node/test/fixtures/test-runner/ |
H A D | run_inspect.js | 36 assert.deepStrictEqual({ name: details.error.cause.name, code: details.error.cause.code }, expectedError);
|
/third_party/node/lib/internal/ |
H A D | error_serdes.js | 69 if (key === 'cause') { 169 if ('cause' in properties && 'value' in properties.cause) { 170 properties.cause.value = deserializeError(properties.cause.value);
|
/third_party/python/Lib/idlelib/ |
H A D | run.py | 247 cause = exc.__cause__ 248 if cause is not None and id(cause) not in seen: 249 print_exc(type(cause), cause, cause.__traceback__) 250 print("\nThe above exception was the direct cause "
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | card.c | 429 int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) { in pa_card_suspend() argument 437 pa_assert(cause != 0); in pa_card_suspend() 442 suspend_cause |= cause; in pa_card_suspend() 444 suspend_cause &= ~cause; in pa_card_suspend() 455 if ((r = pa_sink_suspend(sink, suspend, cause)) < 0) in pa_card_suspend() 462 if ((r = pa_source_suspend(source, suspend, cause)) < 0) in pa_card_suspend()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | metadata.py | 487 If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause 534 self, msg: str, cause: Optional[Exception] = None 539 exc.__cause__ = cause 556 f"{value!r} is invalid for {{field}}", cause=exc 568 f"{value!r} is invalid for {{field}}", cause=exc 629 f"{name!r} is invalid for {{field}}", cause=exc 639 f"{value!r} is invalid for {{field}}", cause=exc 651 raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) 661 will cause :exc:`InvalidMetadata` to be raised (with a
|
/third_party/python/Lib/concurrent/futures/ |
H A D | process.py | 339 result_item, is_broken, cause = self.wait_result_broken_or_wakeup() 342 self.terminate_broken(cause) 414 cause = None 422 cause = format_exception(type(e), e, e.__traceback__) 430 return result_item, is_broken, cause 465 def terminate_broken(self, cause): 466 # Terminate the executor because it is in a broken state. The cause 484 if cause is not None: 486 f"\n'''\n{''.join(cause)}'''")
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
H A D | CharsetICU.java | 218 Throwable cause = e.getCause(); in getCharset() 220 icuCanonicalName + ": " + "Could not load " + className + ". Exception: " + cause); in getCharset() 221 e2.initCause(cause); in getCharset()
|
/third_party/node/lib/internal/crypto/ |
H A D | cfrg.js | 150 { name: 'OperationError', cause: err }); 219 'Invalid keyData', { name: 'DataError', cause: err }); 233 'Invalid keyData', { name: 'DataError', cause: err });
|
H A D | ec.js | 110 { name: 'OperationError', cause: err }); 180 'Invalid keyData', { name: 'DataError', cause: err }); 194 'Invalid keyData', { name: 'DataError', cause: err });
|
H A D | rsa.js | 151 { name: 'OperationError', cause: err }); 220 'Invalid keyData', { name: 'DataError', cause: err }); 234 'Invalid keyData', { name: 'DataError', cause: err });
|
/third_party/node/lib/internal/fs/ |
H A D | watchers.js | 325 throw new AbortError(undefined, { cause: signal?.reason }); 331 reject(new AbortError(undefined, { cause: signal?.reason })); 373 throw new AbortError(undefined, { cause: signal?.reason });
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/ |
H A D | deqp.go | 34 "../cause" 104 return nil, cause.Wrap(err, "Couldn't open '%s' for loading test results", path) 121 return cause.Wrap(err, "couldn't make '%s' for saving test results", filepath.Dir(path)) 126 return cause.Wrap(err, "Couldn't open '%s' for saving test results", path) 133 return cause.Wrap(err, "Couldn't encode test results") 146 return nil, cause.Wrap(err, "Could not generate temporary directory") 186 // which may cause us to run out of handles. This maximum was
|
/third_party/node/test/fixtures/wpt/streams/writable-streams/ |
H A D | start.any.js | 115 }, 'controller.error() during start should cause writes to fail'); 139 }, 'controller.error() during async start should cause existing writes to fail');
|
/third_party/python/Lib/unittest/ |
H A D | mock.py | 938 cause = expected if isinstance(expected, Exception) else None 939 raise AssertionError(_error_message()) from cause 965 cause = next((e for e in expected if isinstance(e, Exception)), None) 969 if cause is None: 980 ) from cause 996 ) from cause 1006 cause = expected if isinstance(expected, Exception) else None 1008 if cause or expected not in _AnyComparer(actual): 1012 ) from cause 2297 cause [all...] |