HomeSort by relevance Sort by last modified time
    Searched refs:onFulfilled (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseTest.cpp 110 String onFulfilled, onRejected;
111 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
114 EXPECT_EQ(String(), onFulfilled);
120 EXPECT_EQ(String(), onFulfilled);
125 EXPECT_EQ("hello", onFulfilled);
133 String onFulfilled, onRejected;
135 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
138 EXPECT_EQ(String(), onFulfilled);
143 EXPECT_EQ("hello", onFulfilled);
151 String onFulfilled, onRejected
    [all...]
ScriptPromiseResolverTest.cpp 91 String onFulfilled, onRejected;
95 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
98 EXPECT_EQ(String(), onFulfilled);
103 EXPECT_EQ(String(), onFulfilled);
113 EXPECT_EQ(String(), onFulfilled);
118 EXPECT_EQ("hello", onFulfilled);
125 EXPECT_EQ("hello", onFulfilled);
139 String onFulfilled, onRejected;
143 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
146 EXPECT_EQ(String(), onFulfilled);
    [all...]
ScriptPromise.cpp 103 ScriptPromise ScriptPromise::then(v8::Handle<v8::Function> onFulfilled, v8::Handle<v8::Function> onRejected)
115 if (!onFulfilled.IsEmpty()) {
116 resultPromise = resultPromise->Then(onFulfilled);
ScriptPromise.h 63 ScriptPromise then(v8::Handle<v8::Function> onFulfilled, v8::Handle<v8::Function> onRejected = v8::Handle<v8::Function>());
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStreamTest.cpp 209 String onFulfilled, onRejected;
217 promise.then(createCaptor(&onFulfilled), createCaptor(&onRejected));
223 EXPECT_TRUE(onFulfilled.isNull());
227 EXPECT_TRUE(onFulfilled.isNull());
259 String onFulfilled, onRejected;
266 stream->wait(scriptState()).then(createCaptor(&onFulfilled), createCaptor(&onRejected));
269 EXPECT_TRUE(onFulfilled.isNull());
275 EXPECT_EQ("undefined", onFulfilled);
282 String onFulfilled, onRejected;
290 stream->wait(scriptState()).then(createCaptor(&onFulfilled), createCaptor(&onRejected))
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-exception.js 26 description('An exception thrown from an onFulfilled callback should reject the Promise.');
36 testFailed('Unexpected invocation of onFulfilled');
Promise-resolve-with-then-fulfill.js 31 then: function(onFulfilled) {
35 onFulfilled('hello');
Promise-resolve-with-then-reject.js 31 then: function(onFulfilled, onRejected) {
  /external/chromium_org/ui/file_manager/file_manager/background/js/
background.js 294 new Promise(function(onFulfilled, onRejected) {
296 onFulfilled(opt_profileId);
300 onFulfilled(currentId);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_model.js 767 return new Promise(function(onFulfilled, onRejected) {
770 onFulfilled.bind(null, newEntry));
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/common/js/
util.js 1107 return new Promise(function(onFulfilled) {
1110 onFulfilled(currentId !== displayedId);
    [all...]

Completed in 236 milliseconds