/external/v8/test/webkit/fast/js/ |
D | Promise-static-all.js | 50 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 …]
|
D | Promise-static-race.js | 40 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
|
D | Promise-chained-then.js | 31 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
|
D | Promise-then.js | 38 var secondPromise = firstPromise.then(function(localResult) { argument 50 secondPromise.then(undefined, 37).then(function(localResult) { argument 56 }, function(localResult) { argument
|
D | Promise-init.js | 53 promise.then(undefined, function(localResult) { argument 61 }).then(function(localResult) { argument 66 }, function(localResult) { argument
|
D | Promise-exception.js | 35 }).then(function(localResult) { argument 37 }, function(localResult) { argument
|
D | Promise-catch.js | 38 var secondPromise = firstPromise.catch(function(localResult) { argument 46 secondPromise.then(function(localResult) { argument
|
D | Promise-resolve-chain.js | 43 promise3.then(function(localResult) { argument 53 }, function(localResult) { argument
|
D | Promise-then-without-callbacks.js | 31 ).then(function(localResult) { argument
|
D | Promise-static-reject.js | 33 }, function(localResult) { argument
|
D | Promise-already-rejected.js | 37 }, function(localResult) { argument
|
D | Promise-resolve.js | 33 }).then(function(localResult) { argument
|
D | Promise-simple.js | 36 }).then(function(localResult) { argument
|
D | Promise-static-resolve.js | 33 promise.then(function(localResult) { argument
|
D | Promise-resolve-with-then-exception.js | 36 }, function(localResult) { argument
|
D | Promise-already-resolved.js | 36 }).then(function(localResult) { argument
|
D | Promise-resolve-with-then-fulfill.js | 41 }).then(function(localResult) { argument
|
D | Promise-resolve-with-then-reject.js | 44 }, function(localResult) { argument
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 96 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 …]
|