Home
last modified time | relevance | path

Searched refs:fatal (Results 1 - 25 of 67) sorted by relevance

123

/third_party/node/test/fixtures/wpt/encoding/streams/
H A Ddecode-attributes.any.js26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue });
27 assert_false(stream.fatal, 'fatal should be false');
28 }, `setting fatal to '${falseValue}' should set the attribute to false`);
38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue });
39 assert_true(stream.fatal, 'fatal should be true');
40 }, `setting fatal to '${trueValue}' should set the attribute to true`);
62 get fatal() { throw new Error(); }
64 }, 'a throwing fatal membe
[all...]
/third_party/mesa3d/src/gallium/tools/trace/
H A Dtracediff.sh37 fatal() function
132 fatal "Too many input filenames specified."
142 fatal "Not enough input file(s) specified!"
151 strip_dump "$INFILE1" "$TEMP1" "$@" || fatal "Could not dump '${INFILE1}."
152 strip_dump "$INFILE2" "$TEMP2" "$@" || fatal "Could not dump '${INFILE2}."
155 mkfifo "$TEMP1" || fatal "Could not create fifo 1"
156 mkfifo "$TEMP2" || fatal "Could not create fifo 2"
/third_party/skia/third_party/externals/angle2/scripts/
H A Dangle_presubmit_utils.py27 fatal = False variable in _PresubmitResult
34 return self.fatal == other.fatal and self.should_prompt == other.should_prompt \
42 fatal = True variable in _PresubmitError
/third_party/skia/infra/bots/task_drivers/fm_driver/
H A Dfm_driver.go53 fatal := func(ctx context.Context, err error) {
65 fatal = td.Fatal
70 fatal(ctx, fmt.Errorf("Please pass an fm binary."))
81 fatal(ctx, err)
90 fatal(ctx, err)
114 fatal(ctx, err)
168 fatal(ctx, err)
177 fatal(ctx, err)
249 fatal(ctx, err)
271 fatal(ct
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource1.js45 fatal(): boolean;
54 public fatal(): boolean { return false; }
71 this._fatal = this.logger.fatal();
79 public fatal(): boolean { return this._fatal; }
92 public fatal(): boolean { return false; }
196 NullLogger.prototype.fatal = function () { return false; };
209 this._fatal = this.logger.fatal();
215 LoggerAdapter.prototype.fatal = function () { return this._fatal; };
230 BufferedLogger.prototype.fatal = function () { return false; };
/third_party/glslang/Test/
H A Dvalidate-shaders.sh19 function fatal() { echo "ERROR: $@"; exit 5; } function
63 [[ -x "$EXE" ]] || fatal "Unable to locate $(basename "$EXE") executable"
64 [[ -x "$VAL" ]] || fatal "Unable to locate spirv-val executable"
65 [[ -x "$DIS" ]] || fatal "Unable to locate spirv-dis executable"
68 [[ -r "$gtest" ]] || fatal "Unable to locate source file: $(basename $gtest)"
174 --*) fatal "Unknown command line option: $1";;
/third_party/node/lib/internal/webstreams/
H A Dencoding.js145 * fatal? : boolean,
181 get fatal() {
184 return this[kHandle].fatal;
222 fatal: this[kHandle].fatal,
238 fatal: kEnumerableProperty,
/third_party/alsa-utils/seq/aplaymidi/
H A Darecordmidi.c110 static void fatal(const char *msg, ...) in fatal() function
125 fatal("Out of memory"); in check_mem()
132 fatal("Cannot %s - %s", operation, snd_strerror(err)); in check_snd()
175 fatal("Invalid port %s - %s", port_name, snd_strerror(err)); in parse_ports()
188 fatal("Invalid port %s - %s", arg, snd_strerror(err)); in init_metronome()
200 fatal("Invalid time signature (%s)", arg); in time_signature()
204 fatal("Invalid time signature (%s)", arg); in time_signature()
313 fatal("Invalid SMPTE frames %d", frames); in create_queue()
318 fatal("Cannot set queue tempo (%u/%i)", in create_queue()
378 fatal("Canno in connect_ports()
[all...]
H A Daplaymidi.c97 static void fatal(const char *msg, ...) in fatal() function
112 fatal("Out of memory"); in check_mem()
119 fatal("Cannot %s - %s", operation, snd_strerror(err)); in check_snd()
162 fatal("Invalid port %s - %s", port_name, snd_strerror(err)); in parse_ports()
211 fatal("Cannot connect to port %d:%d - %s", in connect_ports()
641 fatal("aborted"); in handle_big_sysex()
683 fatal("Invalid event type %d!", ev->type); in fill_legacy_event()
/third_party/skia/third_party/externals/brotli/research/
H A Ddurchschlag.cc50 static void fatal(const char* error) { in fatal() function
259 if (sliceLen != slice_len) fatal("slice_len is too large"); in durchschlag_prepare()
260 if (sliceLen < 1) fatal("slice_len is too small"); in durchschlag_prepare()
268 if (delta != sample_sizes[i]) fatal("sample is too large"); in durchschlag_prepare()
269 if (delta == 0) fatal("0-length samples are prohibited"); in durchschlag_prepare()
271 if (next_total <= total) fatal("corpus is too large"); in durchschlag_prepare()
276 if (total < sliceLen) fatal("slice_len is larger than corpus size"); in durchschlag_prepare()
338 if (sliceLen != slice_len) fatal("slice_len is too large"); in durchschlag_prepare()
339 if (sliceLen < 1) fatal("slice_len is too small"); in durchschlag_prepare()
348 if (delta != sample_sizes[i]) fatal("sampl in durchschlag_prepare()
[all...]
/third_party/node/benchmark/util/
H A Dtext-decoder.js8 fatal: [0, 1],
14 function main({ encoding, len, n, ignoreBOM, type, fatal }) {
15 const decoder = new TextDecoder(encoding, { ignoreBOM, fatal });
/third_party/node/test/parallel/
H A Dtest-whatwg-encoding-custom-textdecoder.js19 // Test TextDecoder, UTF-8, fatal: false, ignoreBOM: false
37 // Test TextDecoder, UTF-8, fatal: false, ignoreBOM: true
67 // Test TextDecoder, UTF-8, fatal: true, ignoreBOM: false
70 const dec = new TextDecoder(i, { fatal: true });
81 const dec = new TextDecoder(i, { fatal: true });
87 () => new TextDecoder('utf-8', { fatal: true }),
91 message: '"fatal" option is not supported on Node.js compiled without ICU'
99 assert.strictEqual(dec.fatal, false);
126 ' fatal: false,\n' +
137 ' fatal
[all...]
/third_party/python/Lib/distutils/
H A Dlog.py54 def fatal(self, msg, *args): member in Log
63 fatal = _global_log.fatal variable
/third_party/node/lib/internal/
H A Dencoding.js401 flags |= options.fatal ? CONVERTER_FLAGS_FATAL : 0;
409 this[kFatal] = Boolean(options?.fatal);
484 if (options.fatal) {
485 throw new ERR_NO_ICU('"fatal" option');
563 get fatal() {
581 obj.fatal = this.fatal;
/third_party/ltp/testcases/kernel/mce-test/tools/
H A Dpage-types.c222 static void fatal(const char *x, ...) in fatal() function
256 fatal("index overflow: %lu\n", index); in do_u64_read()
269 fatal("partial read: %lu bytes\n", bytes); in do_u64_read()
315 fatal("unknown flag bit %d\n", i); in page_flag_name()
541 fatal("hash table full: bump up HASH_SHIFT?\n"); in hash_slot()
642 fatal("too many addr ranges\n"); in add_addr_range()
740 fatal("invalid name or number: %s\n", str); in parse_number()
817 fatal("invalid range: %lu,%lu\n", in parse_addr_range()
833 fatal("too much bit filters\n"); in add_bits_filter()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
H A Ddebug.h31 void fatal(const char* msg, ...);
40 #define MARL_FATAL(msg, ...) marl::fatal(msg "\n", ##__VA_ARGS__);
/third_party/ltp/testcases/kernel/mce-test/cases/soft-inj/panic/
H A Dcases.sh35 fatal*)
50 fatal|fatal_irq|fatal_over)
/third_party/python/Mac/BuildScript/
H A Dbuild-installer.py496 def fatal(msg): function
498 A fatal error, bail out.
543 fatal("Framework configuration file not found: %s" % configfile)
550 fatal("Version variable %s not found in framework configuration file: %s"
559 fatal("This script must be run with Python 2.7 (or later)")
562 fatal("This script should be run on a macOS 10.5 (or later) system")
565 fatal("This script should be run on a macOS 10.5 (or later) system")
583 fatal("Please install a link to a current %s %s as %s so "
587 fatal("Please rename %s to avoid possible dynamic load issues."
591 fatal("Th
[all...]
/third_party/alsa-utils/seq/aseqdump/
H A Daseqdump.c52 static void fatal(const char *msg, ...) in fatal() function
67 fatal("Out of memory"); in check_mem()
74 fatal("Cannot %s - %s", operation, snd_strerror(err)); in check_snd()
113 fatal("Invalid port %s - %s", port_name, snd_strerror(err)); in parse_ports()
138 fatal("Cannot connect from port %d:%d - %s", in connect_ports()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMJIT.cpp656 // Sets *fatal to true if a diagnostic is received which makes a routine invalid or unusable.
659 FatalDiagnosticsHandler(bool *fatal)
660 : fatal(fatal)
669 *fatal = true;
675 *fatal = true;
687 bool *fatal;
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Ddebug.cpp27 void fatal(const char* msg, ...) { in fatal() function
/third_party/python/Lib/distutils/tests/
H A Dtest_log.py27 log.fatal('Fαtal\tÈrrōr')
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dhttp_server.c125 syslog(LOG_ERR, "fatal: error detaching from parent process group: %s", in spawn_loop()
153 syslog(LOG_ERR, "fatal: internal error: " in spawn_loop()
173 syslog(LOG_ERR, "fatal: waitpid(): %s", strerror(errno)); in spawn_loop()
192 syslog(LOG_ERR, "fatal: RAND_poll() failed"); in spawn_loop()
205 syslog(LOG_ERR, "fatal: internal error: no free child slots"); in spawn_loop()
399 goto fatal; in http_server_get_asn1_req()
481 goto fatal; in http_server_get_asn1_req()
495 fatal: in http_server_get_asn1_req()
/third_party/openssl/apps/lib/
H A Dhttp_server.c125 syslog(LOG_ERR, "fatal: error detaching from parent process group: %s", in spawn_loop()
153 syslog(LOG_ERR, "fatal: internal error: " in spawn_loop()
173 syslog(LOG_ERR, "fatal: waitpid(): %s", strerror(errno)); in spawn_loop()
192 syslog(LOG_ERR, "fatal: RAND_poll() failed"); in spawn_loop()
205 syslog(LOG_ERR, "fatal: internal error: no free child slots"); in spawn_loop()
399 goto fatal; in http_server_get_asn1_req()
481 goto fatal; in http_server_get_asn1_req()
495 fatal: in http_server_get_asn1_req()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_xmp_sdk.cpp79 #define CATCH_XMP(routine, fatal)\
100 if (fatal) ThrowProgramError ();\
106 if (fatal) ThrowProgramError ();\

Completed in 14 milliseconds

123