Lines Matching refs:then
40 Promise.all([p1, p2, p5]).then(function(result) {
46 Promise.all().then(function() {
50 return Promise.all([]).then(function(localResult) {
57 }).then(function() {
58 return Promise.all([p1, p2, p3]).then(function(localResult) {
68 }).then(function() {
69 return Promise.all([p1, p6, p5]).then(function(localResult) {
76 }).then(function() {
77 return Promise.all([p9]).then(function(localResult) {
85 }).then(function() {
87 return Promise.all([p9,,,]).then(function(localResult) {
97 }).then(function() {
100 return Promise.all([p9,42]).then(function(localResult) {
109 }).then(function() {
110 return Promise.all({}).then(function(localResult) {
115 }).then(finishJSTest, finishJSTest);