HomeSort by relevance Sort by last modified time
    Searched refs:delay (Results 326 - 350 of 472) sorted by null

<<111213141516171819

  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 743 int delay = exec->argument(1).toInt32(exec); local
746 int result = impl()->setTimeout(action.release(), delay, ec);
758 int delay = exec->argument(1).toInt32(exec); local
764 int result = impl()->setInterval(action.release(), delay, ec);
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 164 -webkit-animation-delay
302 -webkit-transition-delay
  /frameworks/base/services/java/com/android/server/accessibility/
TouchExplorer.java 89 // The delay for sending a hover enter event.
212 // Deliver hover enter with a delay to have a change to detect
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MoreSuggestionsView.java 137 public void setKeyPreviewPopupEnabled(boolean previewEnabled, int delay) {
139 // delay of 0. The delay does not matter actually since the popup is not shown anyway.
  /external/qemu/
trace.c 557 _interlock_def(int reg, int delay)
560 interlocks[reg] = interlock_base + delay;
566 int delay = 0; local
570 delay = interlocks[reg] - interlock_base;
571 if (delay < 0)
572 delay = 0;
574 return delay;
    [all...]
net-android.c     [all...]
vl-android.c 362 /* -cpu-delay option value. */
3756 long delay = strtol(android_op_cpu_delay, &end, 0); local
    [all...]
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp     [all...]
CompositeAnimation.cpp 95 bool isActiveTransition = anim->duration() || anim->delay() > 0;
248 } else if ((anim->duration() || anim->delay()) && anim->iterationCount() && animationName != none) {
  /external/bluetooth/bluez/audio/
unix.c     [all...]
avdtp.c 251 uint16_t delay; member in struct:delay_req
289 uint16_t delay; member in struct:delay_req
376 uint16_t delay; /* AVDTP 1.3 Delay Reporting feature */ member in struct:avdtp_stream
1065 avdtp_delay_report(session, stream, stream->delay);
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
AECMobile.m 120 % Check delay (calculate the delay offset (if we can))
147 % End of "Check delay"
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 62 // We will try creating a new allocator from scratch after a delay of this
769 uint32 delay = writable() ? WRITABLE_DELAY : UNWRITABLE_DELAY; local
770 thread()->PostDelayed(delay, this, MSG_PING);
797 // maximum acceptable ping delay.
    [all...]
  /external/v8/test/mjsunit/
debug-script.js 68 // Test a builtins delay loaded script.
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 216 void TiledDrawingAreaProxy::setTileCreationDelay(double delay)
218 m_tileCreationDelay = delay;
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 26 * can be set up to play together, in sequence, or after a specified delay.
104 // The amount of time in ms to delay starting the animation after start() is called
369 * The amount of time, in milliseconds, to delay starting the animation after
372 * @return the number of milliseconds to delay running the animation
380 * The amount of time, in milliseconds, to delay starting the animation after
383 * @param startDelay The amount of the delay, in milliseconds
    [all...]
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 95 * The amount of time we delay in the filter when the user presses the delete key.
129 // delay 500ms when deleting
137 long delay = constraint.length() < mPreviousLength ? DELETE_KEY_POST_DELAY : 0;
139 return delay;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 612 long delay = getConfig().getTypingUpdateSuggestionsDelayMillis(); local
613 mHandler.postDelayed(mUpdateSuggestionsTask, delay);
  /external/kernel-headers/original/linux/mtd/
cfi.h 10 #include <linux/delay.h>
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java 555 long delay; local
571 delay = NTP_INTERVAL;
574 delay = RETRY_INTERVAL;
581 mHandler.sendMessageDelayed(Message.obtain(mHandler, INJECT_NTP_TIME), delay); local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 591 Contains Function Prototypes like create, bind, pass, and delay.
614 if (options.delay) return setTimeout(returns, options.delay);
641 delay: function(delay, bind, args){
642 return this.create({bind: bind, arguments: args, delay: delay})();
1238 fireEvent: function(type, args, delay){
1242 fn.create({'bind': this, 'delay': delay, 'arguments': args})()
    [all...]
  /frameworks/base/cmds/stagefright/
stagefright.cpp 379 int64_t delay = getNowUs() - startTime; local
381 printf("avg. %.2f fps\n", n * 1E6 / delay);
394 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
    [all...]
  /frameworks/base/libs/rs/
rsContext.cpp 267 uint64_t delay = rsc->runRootScript() * 1000000; local
268 targetTime = rsc->getTime() + delay;
269 doWait = (delay == 0);
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaDataConnectionTracker.java 521 private void startAlarmForReconnect(int delay, String reason) {
524 + (delay / 1000) + "s");
533 SystemClock.elapsedRealtime() + delay, mReconnectIntent);
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 437 /** Calculate delay from a reference time */
439 unsigned long long st, end, delay; local
446 delay = end - st;
448 return delay;
2355 unsigned long long st, end, delay; local
    [all...]

Completed in 1598 milliseconds

<<111213141516171819