Home
last modified time | relevance | path

Searched defs:localResult (Results 1 – 19 of 19) sorted by relevance

/external/v8/test/webkit/fast/js/
DPromise-static-all.js50 return Promise.all([]).then(function(localResult) { argument
58 return Promise.all([p1, p2, p3]).then(function(localResult) { argument
69 return Promise.all([p1, p6, p5]).then(function(localResult) { argument
71 }, function(localResult) { argument
77 return Promise.all([p9]).then(function(localResult) { argument
87 return Promise.all([p9,,,]).then(function(localResult) { argument
94 }, function(localResult) { argument
100 return Promise.all([p9,42]).then(function(localResult) { argument
106 }, function(localResult) { argument
110 return Promise.all({}).then(function(localResult) { argument
[all …]
DPromise-static-race.js40 Promise.race([p4, p5]).then(function(localResult) { argument
47 Promise.race([]).then(function(localResult) { argument
53 Promise.race().then(function(localResult) { argument
58 return Promise.race({}).then(function(localResult) { argument
64 return Promise.race([p4, p1, p6]).then(function(localResult) { argument
72 return Promise.race([p4, p6, p1]).then(function(localResult) { argument
74 }, function(localResult) { argument
80 return Promise.race([p9]).then(function(localResult) { argument
89 return Promise.race([p4,,]).then(function(localResult) { argument
99 return Promise.race([p4,42]).then(function(localResult) { argument
DPromise-chained-then.js31 promise.then(function(localResult) { // fulfilled - continue argument
39 .then(function(localResult) { // fulfilled - throw an exception argument
48 }, function(localResult) { argument
56 }, function(localResult) { argument
61 }).then(function(localResult) { // fulfilled - the last argument
DPromise-then.js38 var secondPromise = firstPromise.then(function(localResult) { argument
50 secondPromise.then(undefined, 37).then(function(localResult) { argument
56 }, function(localResult) { argument
DPromise-init.js53 promise.then(undefined, function(localResult) { argument
61 }).then(function(localResult) { argument
66 }, function(localResult) { argument
DPromise-exception.js35 }).then(function(localResult) { argument
37 }, function(localResult) { argument
DPromise-catch.js38 var secondPromise = firstPromise.catch(function(localResult) { argument
46 secondPromise.then(function(localResult) { argument
DPromise-resolve-chain.js43 promise3.then(function(localResult) { argument
53 }, function(localResult) { argument
DPromise-then-without-callbacks.js31 ).then(function(localResult) { argument
DPromise-static-reject.js33 }, function(localResult) { argument
DPromise-already-rejected.js37 }, function(localResult) { argument
DPromise-resolve.js33 }).then(function(localResult) { argument
DPromise-simple.js36 }).then(function(localResult) { argument
DPromise-static-resolve.js33 promise.then(function(localResult) { argument
DPromise-resolve-with-then-exception.js36 }, function(localResult) { argument
DPromise-already-resolved.js36 }).then(function(localResult) { argument
DPromise-resolve-with-then-fulfill.js41 }).then(function(localResult) { argument
DPromise-resolve-with-then-reject.js44 }, function(localResult) { argument
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java96 Local<Constructable> localResult = code.newLocal(constructable); in testNewInstance() local
141 Local<Integer> localResult = code.newLocal(TypeId.INT); in testInvokeStatic() local
187 Local<Integer> localResult = code.newLocal(TypeId.INT); in testInvokeVirtual() local
250 Local<Integer> localResult = superHashCode.newLocal(TypeId.INT); in testInvokeSuper() local
279 Local<Object> localResult = code.newLocal(TypeId.OBJECT); in testInvokeInterface() local
348 Local<Boolean> localResult = code.newLocal(TypeId.BOOLEAN); in testInvokeTypeSafety() local
894 Local<T1> localResult = code.newLocal(valueAType); in binaryOpMethod() local
1101 Local<Boolean> localResult = code.newLocal(TypeId.BOOLEAN); in testInstanceOf() local
1127 Local<Integer> localResult = code.newLocal(TypeId.INT); in testForLoop() local
1172 Local<Integer> localResult = code.newLocal(TypeId.INT); in testWhileLoop() local
[all …]