OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:onFulfilled
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.h
90
// |
onFulfilled
| and |onRejected| can be an empty value respectively.
91
// Appends |
onFulfilled
| and/or |onRejected| handlers to |promise|.
92
static v8::Local<v8::Object> then(v8::Handle<v8::Object> promise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Isolate*);
107
// |
onFulfilled
| and |onRejected| can be an empty value respectively.
109
static void updateDerived(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Object> originator, v8::Isolate*);
113
static void updateDerivedFromValue(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Value>, v8::Isolate*);
120
// |
onFulfilled
| and |onRejected| can be an empty value respectively.
122
static void updateDerivedFromPromise(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Object> promise, v8::Isolate*);
V8PromiseCustom.cpp
162
// Add a tuple (|derivedPromise|, |
onFulfilled
|, |onRejected|) to
166
// |
onFulfilled
| and |onRejected| can be an empty value respectively.
167
void addToDerived(v8::Handle<v8::Object> internal, v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Isolate* isolate)
173
if (
onFulfilled
.IsEmpty()) {
176
fulfillCallbacks->Set(fulfillCallbacks->Length(),
onFulfilled
);
236
UpdateDerivedTask(v8::Handle<v8::Object> promise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Object> originatorValueObject, v8::Isolate* isolate, ExecutionContext* context)
238
, m_onFulfilled(isolate,
onFulfilled
)
318
void updateDerived(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Object> originator, v8::Isolate*);
319
void updateDerivedFromValue(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Value>, v8::Isolate*);
321
void updateDerivedFromPromise(v8::Handle<v8::Object> derivedPromise, v8::Handle<v8::Function>
onFulfilled
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Object> promise, v8::Isolate*)
[
all
...]
Completed in 510 milliseconds