OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:derivedPromise
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.h
106
// |
derivedPromise
| and |originator| must be a Promise instance.
108
// Propagate |originator|'s state to |
derivedPromise
|.
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*);
111
// |
derivedPromise
| must be a Promise instance.
112
// Propagate a value to |
derivedPromise
|.
113
static void updateDerivedFromValue(v8::Handle<v8::Object>
derivedPromise
, v8::Handle<v8::Function> onFulfilled, v8::Handle<v8::Value>, v8::Isolate*);
115
// |
derivedPromise
| must be a Promise instance.
116
// Propagate a failure reason to |
derivedPromise
|.
117
static void updateDerivedFromReason(v8::Handle<v8::Object>
derivedPromise
, v8::Handle<v8::Function> onRejected, v8::Handle<v8::Value>, v8::Isolate*);
119
// |
derivedPromise
| and |promise| must be a Promise instance
[
all
...]
V8PromiseCustom.cpp
162
// Add a tuple (|
derivedPromise
|, |onFulfilled|, |onRejected|) to
165
// |
derivedPromise
| must be a Promise instance.
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)
185
ASSERT(!
derivedPromise
.IsEmpty());
186
derivedPromises->Set(derivedPromises->Length(),
derivedPromise
);
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*);
320
void updateDerivedFromReason(v8::Handle<v8::Object>
derivedPromise
, v8::Handle<v8::Function> onRejected, 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*);
396
v8::Local<v8::Object>
derivedPromise
= derivedPromises->Get(i).As<v8::Object>()
[
all
...]
Completed in 27 milliseconds