Searched defs:pause (Results 26 - 50 of 85) sorted by relevance

1234

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowVideoView.java74 public void pause() { method in class:ShadowVideoView
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
H A DScheduler.java19 * <ul><li>paused ({@link #pause()}): if paused, then no posted events will be run unless the Scheduler
106 public synchronized void pause() { method in class:Scheduler
111 * Un-pause the scheduler. Equivalent to <tt>setIdleState(UNPAUSED)</tt>.
113 * @see #pause()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/media/
H A DBluetoothMediaPlayback.java208 * Gets the currently playing MediaItem to pause
211 public void pause() { method in class:BluetoothMediaPlayback
217 mMediaPlayer.pause();
/external/apache-http/android/src/android/net/http/
H A DRequestHandle.java104 public void pauseRequest(boolean pause) { argument
106 mRequest.setLoadingPaused(pause);
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DGenericRequest.java317 public void pause() { method in class:GenericRequest
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java265 public void setPauseOnAttack(boolean pause) { argument
266 mPauseOnAttack = pause;
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DBaseTween.java34 private boolean isPaused; // true if pause() was called
132 public void pause() { method in class:BaseTween
/external/walt/pywalt/pywalt/
H A Dwalt.py646 self.pause()
722 def pause(self): member in class:TcpServer
/external/libevent/
H A Devrpc.c97 struct evrpc_hook_ctx *pause; local
104 while ((pause = TAILQ_FIRST(&base->paused_requests)) != NULL) {
105 TAILQ_REMOVE(&base->paused_requests, pause, next);
106 mm_free(pause);
541 struct evrpc_hook_ctx *pause; local
550 while ((pause = TAILQ_FIRST(&pool->paused_requests)) != NULL) {
551 TAILQ_REMOVE(&pool->paused_requests, pause, next);
552 mm_free(pause);
766 struct evrpc_hook_ctx *pause = mm_malloc(sizeof(*pause)); local
782 struct evrpc_hook_ctx *pause; local
[all...]
/external/skia/debugger/QT/
H A DSkDebuggerGUI.cpp453 QIcon pause; local
454 pause.addFile(QString::fromUtf8(":/pause.png"), QSize(),
458 fActionPause.setIcon(pause);
/external/skqp/debugger/QT/
H A DSkDebuggerGUI.cpp453 QIcon pause; local
454 pause.addFile(QString::fromUtf8(":/pause.png"), QSize(),
458 fActionPause.setIcon(pause);
/external/webrtc/talk/media/base/
H A Dvideocapturer.cc172 bool VideoCapturer::Pause(bool pause) { argument
173 if (pause) {
180 LOG(LS_ERROR) << "Cannot pause a stopped camera.";
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
H A Dbootstrap.js281 this.options.pause == 'hover' && this.$element
282 .on('mouseenter', $.proxy(this.pause, this))
311 return this.pause().cycle()
317 , pause: function (e) {
345 isCycling && this.pause()
398 , pause: 'hover'
/external/ImageMagick/MagickCore/
H A Danimate.c2029 pause;
2031 pause=MagickFalse;
2059 pause=MagickTrue;
2082 pause=MagickTrue;
2147 if (pause != MagickFalse)
2148 for (i=0; i < (ssize_t) resource_info->pause; i++)
2019 pause; local
H A Dxwindow-private.h291 pause; member in struct:_XResourceInfo
/external/libchrome/base/message_loop/
H A Dmessage_loop_test.cc75 void SlowFunc(TimeDelta pause, int* quit_counter) { argument
76 PlatformThread::Sleep(pause);
157 // If we get a large pause in execution (due to a context switch) here, this
H A Dmessage_loop_unittest.cc147 static void SlowFunc(TimeDelta pause, int* quit_counter) { argument
148 PlatformThread::Sleep(pause);
/external/syslinux/dos/
H A Dsyslinux.c41 void pause(void) function
49 # define pause() ((void)0) macro
/external/okhttp/website/static/
H A Dbootstrap.min.js6 !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n) (…)
/external/pdfium/fpdfsdk/
H A Dfpdfview.cpp79 IFSDK_PAUSE_Adapter* pause) {
129 pContext->m_pRenderer->Start(pause);
937 // pause after each image mask.
1275 IFSDK_PAUSE_Adapter* pause) {
1283 flags, bNeedToRestore, pause);
73 RenderPageImpl(CPDF_PageRenderContext* pContext, CPDF_Page* pPage, const CFX_Matrix& matrix, const FX_RECT& clipping_rect, int flags, bool bNeedToRestore, IFSDK_PAUSE_Adapter* pause) argument
1266 FPDF_RenderPage_Retail(CPDF_PageRenderContext* pContext, FPDF_PAGE page, int start_x, int start_y, int size_x, int size_y, int rotate, int flags, bool bNeedToRestore, IFSDK_PAUSE_Adapter* pause) argument
/external/pdfium/samples/
H A Dpdfium_test.cc1221 // need the rendering to pause instead of always saying |true|. This is for
1264 // progressive calls. The progressive calls are if you need to pause the
1269 IFSDK_PAUSE pause; local
1270 pause.version = 1;
1271 pause.NeedToPauseNow = &NeedToPauseNow;
1274 height, 0, FPDF_ANNOT, &pause);
1276 rv = FPDF_RenderPage_Continue(page, &pause);
/external/v8/src/inspector/
H A Dv8-debugger-agent-impl.cc631 Response V8DebuggerAgentImpl::pause() { function in class:v8_inspector::V8DebuggerAgentImpl
689 return Response::Error("Unknown pause on exceptions mode: " +
858 // Do not ever loose user's pause request until we have actually paused.
H A Dv8-debugger.cc330 void V8Debugger::setPauseOnNextStatement(bool pause) { argument
332 if (pause)
/external/v8/src/
H A Dlog.cc573 void pause() { paused_ = true; } function in class:v8::internal::Profiler
1384 profiler_->pause();
/external/vulkan-validation-layers/demos/
H A Dcube.cpp369 bool pause; member in struct:Demo
449 demo->pause = !demo->pause;
545 pause{false},
959 pause = false;
2486 pause = !pause;
2506 if (pause) {
2550 pause = !pause;
[all...]

Completed in 2707 milliseconds

1234