HomeSort by relevance Sort by last modified time
    Searched refs:thrower (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
MiniIntermediateClass.java 21 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition); local
23 thrower.canThrow2();
24 thrower.canThrow1();
IntermediateClass.java 29 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition); local
31 thrower.canThrow2();
32 thrower.canThrow1();
54 ClassInSecondaryDex thrower = new ClassInSecondaryDex(condition); local
56 thrower.canThrow2();
57 thrower.canThrow1();
  /external/v8/test/mjsunit/compiler/
osr-infinite.js 9 function thrower() { function
11 if (x == 5) %OptimizeOsr(thrower.caller);
15 %NeverOptimizeFunction(thrower); // Don't want to inline the thrower.
26 while (true) thrower();
30 while (true) while (true) thrower();
34 while (true) while (true) while (true) thrower();
38 while (true) while (true) while (true) while (true) thrower();
43 thrower();
52 thrower();
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-465298.js 9 var foreign = { thrower: thrower, debugme: debugme }
27 function thrower() { throw "boom"; } function
32 var thrower = foreign.thrower;
43 thrower();
regress-string-from-char-code-tonumber.js 7 var thrower = { [Symbol.toPrimitive]: function() { FAIL } };
11 func(thrower);
regress-4815.js 5 var thrower = { [Symbol.toPrimitive]: () => FAIL };
12 nativeFunc(thrower);
regress-2410.js 33 'thrower',
35 var obj = { thrower: 'local' };
36 assertEquals(['thrower'], Object.getOwnPropertyNames(obj));
  /ndk/tests/device/test-stlport_shared-exception/jni/
cleanup2.cpp 12 static int thrower () function
37 : X(thrower ()) // throws, so X::X is never called
  /ndk/tests/device/test-stlport_static-exception/jni/
cleanup2.cpp 12 static int thrower () function
37 : X(thrower ()) // throws, so X::X is never called
  /external/v8/src/wasm/
wasm-js.cc 39 v8::Local<v8::Value> source, ErrorThrower* thrower) {
52 thrower->Error("ArrayBuffer argument is empty");
66 thrower->Error("ArrayBuffer argument is empty");
69 thrower->Error("Argument 0 must be an ArrayBuffer or Uint8Array");
78 ErrorThrower thrower(isolate, "Wasm.verifyModule()");
81 thrower.Error("Argument 0 must be a buffer source");
84 RawBuffer buffer = GetRawBufferSource(args[0], &thrower);
85 if (thrower.error()) return;
93 thrower.Failed("", result);
102 ErrorThrower thrower(isolate, "Wasm.verifyFunction()")
    [all...]
wasm-module.cc 216 bool AllocateMemory(ErrorThrower* thrower, Isolate* isolate,
222 thrower->Error("Out of memory: wasm memory too large");
229 thrower->Error("Out of memory: wasm memory");
237 bool AllocateGlobals(ErrorThrower* thrower, Isolate* isolate,
245 thrower->Error("Out of memory: wasm globals");
354 static MaybeHandle<JSFunction> ReportFFIError(ErrorThrower& thrower,
359 thrower.Error("Import #%d module=\"%.*s\" function=\"%.*s\" error: %s",
363 thrower.Error("Import #%d module=\"%.*s\" error: %s", index,
366 thrower.Error("Import ");
371 ErrorThrower& thrower, Factory* factory, Handle<JSReceiver> ffi
    [all...]
  /external/v8/test/mjsunit/harmony/
async-function-stacktrace.js 22 function thrower() { throw new Error("NOPE"); } function
38 try { await thrower(); } catch (e) { throw new Error("FAIL"); }
58 try { await thrower(); } catch (e) { throw new Error("FAIL"); }
78 try { await thrower(); } catch (e) { throw new Error("FAIL"); }
96 await thrower();
async-function-debug-scopes.js 11 async function thrower() { throw 'Exception'; }
78 try { let z = await thrower(); }
117 try { await thrower(); } catch (e) { debugger; } }, [1],
155 try { var b = 2; let z = await thrower(); }
194 try { let r = await thrower(); }
233 try { let y = await thrower(); }
272 try { let y = await thrower(); }
317 try { let q = await thrower(); }
365 try { let y = await thrower(); }
414 try { await thrower(); }
    [all...]
async-function-debug-evaluate.js 96 async function thrower() {
123 await thrower();
do-expressions.js 180 function thrower() { throw new MyError(); }
181 function fn3(exception = do { try { thrower(); } catch (e) { e } }) {
async-await-basic.js 172 () => ({ async thrower(e) { throw new MyError(e); } }).thrower("boom!1!"),
  /external/v8/test/mjsunit/es6/
string-raw.js 195 var thrower = {};
197 thrower.toString = function() {
201 callSiteObj.raw = [thrower];
208 String.raw(callSiteObj, thrower);
215 var thrower = {};
217 thrower.toString = null;
218 thrower.valueOf = function() {
222 callSiteObj.raw = [thrower];
229 String.raw(callSiteObj, thrower);
  /external/v8/test/mjsunit/
stack-traces-2.js 33 var thrower = { valueOf: function() { FAIL; },
41 new nativeFunc(thrower);
53 nativeFunc(thrower);
79 testNotOmittedBuiltin(function(){ [thrower, 2].sort(function (a,b) {
stack-traces.js 226 var thrower = { valueOf: function() { FAIL; },
234 new nativeFunc(thrower);
246 nativeFunc(thrower);
301 testOmittedBuiltin(function(){ [thrower, 2].sort(function (a,b) {
306 testOmittedBuiltin(function(){ thrower + 2; }, "ADD");
cross-realm-filtering.js 29 function assertNotIn(thrower, error) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 72 assertContains(signatures, "void thrower[] throws []");
73 assertFalse(signatures.contains("void thrower[] throws [java.lang.Exception]"));
74 assertEquals(Sub.class, Sub.class.getMethod("thrower").getDeclaringClass());
134 public void thrower() throws Exception {} method in class:MethodOverridesTest.Super
143 @Override public void thrower() {} method in class:MethodOverridesTest.Sub
  /external/v8/src/compiler/
wasm-compiler.h 42 WasmCompilationUnit(wasm::ErrorThrower* thrower, Isolate* isolate,
52 static Handle<Code> CompileWasmFunction(wasm::ErrorThrower* thrower,
56 WasmCompilationUnit unit(thrower, isolate, module_env, function, 0);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 410 final long thrower; // use id not ref to avoid weak cycles field in class:ForkJoinTask.ExceptionNode
417 this.thrower = Thread.currentThread().getId();
549 if (e.thrower != Thread.currentThread().getId()) {
    [all...]
  /art/test/100-reflect2/src/
Main.java 227 m = Main.class.getDeclaredMethod("thrower");
236 private static void thrower() { method in class:Main
  /art/test/046-reflect/src/
Main.java 382 Thrower thrower = Thrower.class.newInstance(); local
392 Constructor<Thrower> constructor = Thrower.class.getDeclaredConstructor();
393 Thrower thrower = constructor.newInstance(); local
859 class Thrower {
860 public Thrower() throws UnsupportedOperationException {

Completed in 666 milliseconds

1 2