Searched refs:didFulfill (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | promise.js | 119 Promise.prototype.then = function (didFulfill, didReject) { argument 121 typeof didFulfill !== "function" && 124 util.classString(didFulfill); 130 return this._then(didFulfill, didReject, undefined, undefined, undefined); 133 Promise.prototype.done = function (didFulfill, didReject) { argument 135 this._then(didFulfill, didReject, undefined, undefined, undefined); 225 didFulfill, argument 254 handler = didFulfill; 275 target._addCallbacks(didFulfill, didReject, promise, receiver, domain);
|
/third_party/node/deps/npm/node_modules/bluebird/js/browser/ |
D | bluebird.core.js | 2256 Promise.prototype.then = function (didFulfill, didReject) { 2258 typeof didFulfill !== "function" && 2261 util.classString(didFulfill); 2267 return this._then(didFulfill, didReject, undefined, undefined, undefined); 2270 Promise.prototype.done = function (didFulfill, didReject) { 2272 this._then(didFulfill, didReject, undefined, undefined, undefined); 2362 didFulfill, 2391 handler = didFulfill; 2412 target._addCallbacks(didFulfill, didReject, promise, receiver, domain);
|
D | bluebird.js | 2904 Promise.prototype.then = function (didFulfill, didReject) { 2906 typeof didFulfill !== "function" && 2909 util.classString(didFulfill); 2915 return this._then(didFulfill, didReject, undefined, undefined, undefined); 2918 Promise.prototype.done = function (didFulfill, didReject) { 2920 this._then(didFulfill, didReject, undefined, undefined, undefined); 3010 didFulfill, 3039 handler = didFulfill; 3060 target._addCallbacks(didFulfill, didReject, promise, receiver, domain);
|