HomeSort by relevance Sort by last modified time
    Searched defs:then (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/es6/regress/
regress-cr372788.js 33 var thenable = { then: function(f) { x++; f(); } };
36 Promise.resolve(thenable).then(function() { x++; y++; });
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-resolve-with-then-fulfill.js 31 then: function(onFulfilled) {
32 testPassed('value.then is called.');
41 }).then(function(localResult) {
Promise-resolve-with-then-reject.js 31 then: function(onFulfilled, onRejected) {
32 testPassed('value.then is called.');
41 }).then(function() {
  /external/chromium_org/chrome/installer/util/
google_update_experiment_util.cc 48 base::Time::Exploded then = {}; local
49 current_time.UTCExplode(&then);
50 then.year += 1;
51 DCHECK(then.HasValidValues());
55 kDays[then.day_of_week],
56 then.day_of_month,
57 kMonths[then.month - 1],
58 then.year,
59 then.hour,
60 then.minute
    [all...]
  /external/mockito/src/org/mockito/internal/stubbing/
ConsecutiveStubbing.java 23 public OngoingStubbing<T> then(Answer<?> answer) { method in class:ConsecutiveStubbing
OngoingStubbingImpl.java 32 public OngoingStubbing<T> then(Answer<?> answer) { method in class:OngoingStubbingImpl
  /external/mockito/src/org/mockito/stubbing/
OngoingStubbing.java 11 * Simply put: "<b>When</b> the x method is called <b>then</b> return y". E.g:
74 * If throwables contain a checked exception then it has to
80 * if throwable is null then exception will be thrown.
99 * If throwableClasses contain a checked exception then it has to
105 * if throwable is null then exception will be thrown.
130 * // if it isn't safe then you will have trouble stubbing it using this api. Use Mockito.doCallRealMethod() instead.
169 * //using 'then' alias:
170 * when(mock.foo()).then(returnCoolValue());
182 OngoingStubbing<T> then(Answer<?> answer); method in interface:OngoingStubbing
  /external/chromium_org/chrome/browser/ui/webui/options/
automatic_settings_reset_handler.cc 33 const base::Time then = local
35 if (!then.is_null()) {
37 if ((now - then).InDays() < kBannerShowTimeInDays)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromise.cpp 68 ScriptPromise ScriptPromise::then(PassOwnPtr<ScriptFunction> onFulfilled, PassOwnPtr<ScriptFunction> onRejected) function in class:WebCore::ScriptPromise
79 // In fact it is not the exact bahavior of Promise.prototype.then
83 resultPromise = resultPromise->Then(v8OnFulfilled);
85 // v8::Promise::Then may return an empty value, for example when
  /external/qemu/distrib/sdl-1.2.15/src/timer/riscos/
SDL_systimer.c 86 Uint32 now,then,elapsed; local
103 then = SDL_GetTicks();
116 elapsed = (now-then);
117 then = now;
  /external/qemu/distrib/sdl-1.2.15/test/
testgamma.c 83 Uint32 then, timeout; local
141 then = SDL_GetTicks();
143 while ( (SDL_GetTicks()-then) < timeout ) {
testsprite.c 134 blits directly to it, then use page flipping.
161 Uint32 then, now, frames; local
290 then = SDL_GetTicks();
317 if ( now > then ) {
319 ((double)frames*1000)/(now-then));
testvidinfo.c 79 Uint32 then, now; local
94 then = SDL_GetTicks();
121 seconds = (float)(now - then) / 1000.0f;
147 then = SDL_GetTicks();
150 seconds = (float)(now - then) / 1000.0f;
178 then = SDL_GetTicks();
181 seconds = (float)(now - then) / 1000.0f;
209 then = SDL_GetTicks();
212 seconds = (float)(now - then) / 1000.0f;
240 then = SDL_GetTicks()
    [all...]
testwin.c 244 Uint32 then, now; local
367 then = SDL_GetTicks();
370 printf("Time: %d milliseconds\n", now-then);
testoverlay.c 330 Uint32 then, now; local
552 then = SDL_GetTicks();
578 printf("Conversion Time: %d milliseconds\n", now-then);
583 then = SDL_GetTicks();
588 printf("Time: %d milliseconds\n", now-then);
  /external/chromium_org/chrome/browser/resources/google_now/
common_test_util.js 87 return (typeof value === 'object') && isCallable(value.then);
109 function then(onResolve, onReject) {
118 var resolveReject = callResolveRejectFunc(handlerResult.then);
134 return this.then(undefined, onRejected);
142 var thenResolveReject = callResolveRejectFunc(result.then);
147 return {then: then, catch: catchFunc, isPromise: true};
154 arrayOfPromises[i].then(function(result) {
  /external/chromium_org/content/browser/quota/
mock_quota_manager_unittest.cc 190 base::Time then = base::Time(); local
194 GetModifiedOrigins(kTemporary, then);
200 GetModifiedOrigins(kTemporary, then);
210 GetModifiedOrigins(kTemporary, then);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdtdptst.c 197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
214 else then=myDateFormat(format, date2);
215 log_verbose("%s\n", austrdup(then) );
  /external/chromium_org/third_party/libvpx/source/libvpx/
rate_hist.c 77 int64_t then = 0; local
91 then = now;
97 then = hist->pts[i_idx];
98 if (now - then > cfg->rc_buf_sz)
103 if (now == then)
106 avg_bitrate = sum_sz * 8 * 1000 / (now - then);
  /external/icu/icu4c/source/test/cintltst/
cdtdptst.c 197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
214 else then=myDateFormat(format, date2);
215 log_verbose("%s\n", austrdup(then) );
  /external/libvpx/libvpx/
rate_hist.c 77 int64_t then = 0; local
91 then = now;
97 then = hist->pts[i_idx];
98 if (now - then > cfg->rc_buf_sz)
103 if (now == then)
106 avg_bitrate = sum_sz * 8 * 1000 / (now - then);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
rate_hist.c 77 int64_t then = 0; local
91 then = now;
97 then = hist->pts[i_idx];
98 if (now - then > cfg->rc_buf_sz)
103 if (now == then)
106 avg_bitrate = sum_sz * 8 * 1000 / (now - then);
  /external/chromium_org/third_party/icu/source/test/intltest/
astrotst.cpp 152 UDate then = cal->getTime(status); local
153 CalendarAstronomer *myastro = new CalendarAstronomer(then);
  /external/icu/icu4c/source/test/intltest/
astrotst.cpp 150 UDate then = cal->getTime(status); local
151 CalendarAstronomer *myastro = new CalendarAstronomer(then);
  /external/chromium_org/remoting/webapp/js_proto/
dom_proto.js 191 Promise.prototype.then = function (onFulfill, onReject) {};

Completed in 637 milliseconds

1 2 3 4