Home
last modified time | relevance | path

Searched refs:throw (Results 1 – 25 of 1259) sorted by relevance

12345678910>>...51

/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); } in Exception()
34 virtual ~Exception() throw() {} in ~Exception()
35 virtual const char* what() const throw() { return what_.c_str(); } in what()
38 void SetMessage(const char* message) throw() { in SetMessage()
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {} in IndexOutOfBoundException()
51 explicit IndexOutOfBoundException(const char* message) throw() in IndexOutOfBoundException()
53 IndexOutOfBoundException(const char* message, int32_t index) throw() { in IndexOutOfBoundException()
62 virtual ~IndexOutOfBoundException() throw() {} in ~IndexOutOfBoundException()
67 IOException() throw() : Exception("I/O exception") {} in IOException()
68 explicit IOException(const char* message) throw() : Exception(message) {} in IOException()
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); } in Exception()
34 virtual ~Exception() throw() {} in ~Exception()
35 virtual const char* what() const throw() { return what_.c_str(); } in what()
38 void SetMessage(const char* message) throw() { in SetMessage()
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {} in IndexOutOfBoundException()
51 explicit IndexOutOfBoundException(const char* message) throw() in IndexOutOfBoundException()
53 IndexOutOfBoundException(const char* message, int32_t index) throw() { in IndexOutOfBoundException()
62 virtual ~IndexOutOfBoundException() throw() {} in ~IndexOutOfBoundException()
67 IOException() throw() : Exception("I/O exception") {} in IOException()
68 explicit IOException(const char* message) throw() : Exception(message) {} in IOException()
[all …]
/third_party/typescript/tests/baselines/reference/
DthrowStatements.types57 throw aNumber;
64 throw aString;
73 throw aDate;
81 throw anObject;
88 throw anAny;
97 throw anOtherAny;
104 throw anUndefined;
112 throw aClass;
120 throw aGenericClass;
129 throw anObjectLiteral;
[all …]
DreachabilityChecks8.types4 (function () { throw "1"; })();
5 >(function () { throw "1"; })() : never
6 >(function () { throw "1"; }) : () => never
7 >function () { throw "1"; } : () => never
10 (function () { throw "2"; })();
11 >(function () { throw "2"; })() : never
12 >(function () { throw "2"; }) : () => never
13 >function () { throw "2"; } : () => never
16 (function () { throw "3"; })()
17 >(function () { throw "3"; })() : never
[all …]
DthrowStatements.symbols64 throw aNumber;
70 throw aString;
77 throw aDate;
84 throw anObject;
90 throw anAny;
97 throw anOtherAny;
104 throw anUndefined;
111 throw aClass;
118 throw aGenericClass;
125 throw anObjectLiteral;
[all …]
DthrowInEnclosingStatements.types6 throw x;
10 <T>(x: T) => { throw x; }
11 ><T>(x: T) => { throw x; } : <T>(x: T) => never
24 throw y;
28 throw y;
41 throw z;
45 for (var i = 0; ;) { throw i; }
50 for (var idx in {}) { throw idx; }
55 do { throw null; }while(true)
63 while (j < 0) { throw j; }
[all …]
DfunctionsMissingReturnStatementsAndExpressions.errors.txt59 // Fine since we consist of a single throw statement.
60 throw undefined;
64 // Fine since we consist of a single throw statement.
65 throw undefined;
69 // Fine since we consist of a single throw statement.
70 throw undefined;
74 // Not fine, since we can *only* consist of a single throw statement
76 throw undefined;
77 throw null;
82 throw undefined;
[all …]
DfunctionsMissingReturnStatementsAndExpressions.types77 // Fine since we consist of a single throw statement.
78 throw undefined;
85 // Fine since we consist of a single throw statement.
86 throw undefined;
93 // Fine since we consist of a single throw statement.
94 throw undefined;
101 // Not fine, since we can *only* consist of a single throw statement
103 throw undefined;
106 throw null;
114 throw undefined;
[all …]
DthrowInEnclosingStatements.symbols6 throw x;
10 <T>(x: T) => { throw x; }
23 throw y;
27 throw y;
37 throw z;
41 for (var i = 0; ;) { throw i; }
45 for (var idx in {}) { throw idx; }
49 do { throw null; }while(true)
54 while (j < 0) { throw j; }
69 throw this.value;
[all …]
DfunctionsMissingReturnStatementsAndExpressions.symbols74 // Fine since we consist of a single throw statement.
75 throw undefined;
82 // Fine since we consist of a single throw statement.
83 throw undefined;
90 // Fine since we consist of a single throw statement.
91 throw undefined;
98 // Not fine, since we can *only* consist of a single throw statement
100 throw undefined;
103 throw null;
110 throw undefined;
[all …]
DcomputedPropertyNames49_ES6.types4 …t [1 + 1]() { throw 10; }, get [1 + 1]() { return 10; }, set [1 + 1]() {…
16 throw 10;
36 // just throw
37 throw 10;
DcomputedPropertyNames49_ES5.types4 …t [1 + 1]() { throw 10; }, get [1 + 1]() { return 10; }, set [1 + 1]() {…
16 throw 10;
36 // just throw
37 throw 10;
DcomputedPropertyNames50_ES5.types4 … } }, get [1 + 1]() { throw 10; }, set [1 + 1]() { // just throw
28 throw 10;
38 // just throw
39 throw 10;
DcomputedPropertyNames50_ES6.types4 … } }, get [1 + 1]() { throw 10; }, set [1 + 1]() { // just throw
28 throw 10;
38 // just throw
39 throw 10;
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/
Drecording_canvas.dart55 throw 'apply';
60 throw 'clipPath';
65 throw 'clipRRect';
70 throw 'clipRect';
75 throw 'computePaintBounds';
80 throw 'debugDumpCommands';
85 throw 'debugEnforceArbitraryPaint';
90 throw 'debugPrintCommands';
98 throw 'drawCircle';
103 throw 'drawColor';
[all …]
Dpath.dart27 throw 'addArc';
32 throw 'addOval';
37 throw 'addPath';
42 throw 'addPolygon';
63 throw 'addRect';
69 throw 'arcTo';
78 throw 'arcToPoint';
83 throw 'close';
88 throw 'computeMetrics';
93 throw 'conicTo';
[all …]
/third_party/ejdb/src/bindings/ejdb2_flutter/example/lib/utils/
Dassertions.dart18 throw AssertionException('assertTrue', message);
24 throw AssertionException('assertFalse', message);
30 throw AssertionException('assertEqual', message);
36 throw AssertionException('assertIdentical', message);
42 throw AssertionException('assertNotIdentical', message);
51 throw AssertionException('assertDeepEquals', message);
60 throw AssertionException('assertNotDeepEquals', message);
66 throw AssertionException('assertNotEquals', message);
72 throw AssertionException('assertNotNull', message);
78 throw AssertionException('assertNull', message);
/third_party/toybox/toys/other/
Dshred.c47 int fd = open(*try, O_RDWR), iter = 0, throw; local
90 throw = sizeof(toybuf);
91 if (FLAG(x) && len-pos < throw) throw = len-pos;
93 if (iter != TT.n) xgetrandom(toybuf, throw, 0);
94 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
95 pos += throw;
/third_party/toybox/scripts/
Dconfig2help.c345 struct symbol *throw = 0, *catch; in main() local
359 if (!throw) usage = that; in main()
363 if (!throw) len = that-usage; in main()
367 if (!throw) { in main()
368 throw = catch; in main()
375 tusage = dlist_zap(&throw->help); in main()
376 tdashlines = grab_dashlines(&throw->help, &tfrom, &tlen); in main()
397 if (tfrom && tfrom != throw->help) { in main()
398 if (throw->help || catch->help) dlist_add(&cfrom, strdup("")); in main()
403 while (throw->help && throw->help != tfrom) in main()
[all …]
/third_party/node/test/es-module/
Dtest-esm-forbidden-globals.mjs5 throw new Error('not an ESM');
8 throw new Error('not an ESM');
11 throw new Error('not an ESM');
14 throw new Error('not an ESM');
17 throw new Error('not an ESM');
20 throw new Error('not an ESM');
23 throw new Error('not an ESM');
/third_party/skia/third_party/externals/brotli/csharp/
Dinjected_code.txt10 get {throw new System.NotSupportedException();}
13 get {throw new System.NotSupportedException();}
14 set {throw new System.NotSupportedException();}
17 throw new System.NotSupportedException();
20 throw new System.NotSupportedException();
26 throw new System.NotSupportedException();
29 throw new System.NotSupportedException();
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Ddom_canvas.dart31 throw UnimplementedError();
36 throw UnimplementedError();
41 throw UnimplementedError();
60 throw UnimplementedError();
65 throw UnimplementedError();
130 throw UnimplementedError();
135 throw UnimplementedError();
140 throw UnimplementedError();
145 throw UnimplementedError();
150 throw UnimplementedError();
[all …]
/third_party/jerryscript/tests/debugger/
Ddo_throw_adv.expected4 Exception throw detected (to disable automatic stop type exception 0)
10 Exception throw detected (to disable automatic stop type exception 0)
14 Exception throw detected (to disable automatic stop type exception 0)
18 Exception throw detected (to disable automatic stop type exception 0)
22 Exception throw detected (to disable automatic stop type exception 0)
26 Exception throw detected (to disable automatic stop type exception 0)
30 Exception throw detected (to disable automatic stop type exception 0)
34 Exception throw detected (to disable automatic stop type exception 0)
38 Exception throw detected (to disable automatic stop type exception 0)
/third_party/vk-gl-cts/framework/platform/ios/
DtcuIOSPlatform.mm51 throw ResourceError("View is already is in use");
85 throw NotSupportedError("Unsupported surface type");
90 throw;
114 throw NotSupportedError("Requested GL API is not supported on iOS");
126 throw ResourceError("Failed to create EAGL context");
131 throw ResourceError("Failed to set current EAGL context");
138 throw InternalError("Unsupproted API for loading functions");
146 throw;
202 throw;
223 throw NotSupportedError("Multisample config is not supported");
[all …]
/third_party/node/test/message/
Dsource_map_throw_set_immediate.out1 *uglify-throw-original.js:5
2 throw Error('goodbye');
6 at Hello *uglify-throw-original.js:5:9*
7 at *uglify-throw-original.js:9:3*

12345678910>>...51