Home
last modified time | relevance | path

Searched refs:isActive (Results 1 – 25 of 207) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/platform/
DAsyncMethodRunner.h62 ASSERT(!m_timer.isActive()); in runAsync()
68 if (!m_timer.isActive()) in runAsync()
81 if (!m_timer.isActive()) in suspend()
106 ASSERT(!m_timer.isActive()); in stop()
113 if (m_timer.isActive()) in stop()
117 bool isActive() const in isActive() function
119 return m_timer.isActive(); in isActive()
DTimer.h58 bool isActive() const;
135 inline bool TimerBase::isActive() const in isActive() function
160 if (isActive()) { in restart()
168 using TimerBase::isActive;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
Dwidget.js55 if (!cvox.Widget.ref_ || !cvox.Widget.ref_.isActive()) {
65 cvox.Widget.prototype.isActive = function() { method in cvox.Widget
74 if (this.isActive()) {
130 if (this.isActive()) {
193 cvox.Widget.isActive = function() { function in cvox.Widget
194 return (cvox.Widget.ref_ && cvox.Widget.ref_.isActive()) || false;
/external/chromium_org/remoting/webapp/
Dfullscreen_v2.js27 this.notifyCallbacksOnRestore_ = this.isActive();
51 if (this.isActive() == fullscreen) {
66 } else if (this.isActive()) {
72 this.activate(!this.isActive());
75 remoting.FullscreenAppsV2.prototype.isActive = function() { method in remoting.FullscreenAppsV2
Dfullscreen_v1.js42 if (this.isActive() == fullscreen) {
63 this.activate(!this.isActive());
66 remoting.FullscreenAppsV1.prototype.isActive = function() { method in remoting.FullscreenAppsV1
90 this.eventSource_.raiseEvent(this.kEventName_, this.isActive());
/external/deqp/framework/delibs/deutil/
DdeTimer.c165 deBool isActive; member
195 timer->isActive = DE_FALSE; in deTimer_create()
210 return timer->isActive; in deTimer_isActive()
219 if (timer->isActive) in deTimer_scheduleSingle()
230 timer->isActive = DE_TRUE; in deTimer_scheduleSingle()
240 if (timer->isActive) in deTimer_scheduleInterval()
251 timer->isActive = DE_TRUE; in deTimer_scheduleInterval()
270 timer->isActive = DE_FALSE; in deTimer_disable()
403 deBool isActive = DE_FALSE; in deTimer_isActive() local
406 isActive = timer->curThread->state != TIMERSTATE_LAST; in deTimer_isActive()
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
Dtabs_api_handler.js51 if (!cvox.ChromeVox.isActive) {
67 if (!cvox.ChromeVox.isActive) {
78 if (!cvox.ChromeVox.isActive) {
102 if (!cvox.ChromeVox.isActive) {
122 if (!cvox.ChromeVox.isActive) {
Daccessibility_api_handler.js65 !cvox.ChromeVox.isActive);
67 if (cvox.ChromeVox.isActive) {
184 if (!cvox.ChromeVox.isActive) {
197 if (!cvox.ChromeVox.isActive) {
213 if (!cvox.ChromeVox.isActive) {
222 if (!cvox.ChromeVox.isActive) {
235 if (!cvox.ChromeVox.isActive) {
256 if (!cvox.ChromeVox.isActive) {
293 if (!cvox.ChromeVox.isActive) {
308 if (!cvox.ChromeVox.isActive) {
[all …]
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
DHTMLImportTreeRoot.cpp67 if (m_recalcTimer.isActive() || !m_document->isActive()) in scheduleRecalcState()
70 if (m_recalcTimer.isActive() || !m_document) in scheduleRecalcState()
100 } while (m_recalcTimer.isActive()); in recalcTimerFired()
DHTMLImportStateResolver.cpp68 inline bool HTMLImportStateResolver::isActive() const in isActive() function in blink::HTMLImportStateResolver
77 if (isActive()) in resolve()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
Dabstract_host.js136 if (active == cvox.ChromeVox.isActive) {
142 cvox.ChromeVox.isActive = true;
154 cvox.ChromeVox.isActive = false;
161 cvox.ChromeVox.isActive = false;
/external/chromium_org/third_party/WebKit/Source/core/frame/
DPlatformEventController.cpp28 ASSERT(!m_timer.isActive()); in oneShotCallback()
38 if (hasLastData() && !m_timer.isActive()) { in startUpdating()
52 if (m_timer.isActive()) in stopUpdating()
DSuspendableTimer.cpp49 return isActive(); in hasPendingActivity()
63 m_active = isActive(); in suspend()
/external/chromium_org/third_party/skia/include/views/
DSkTouchGesture.h17 bool isActive() const { return fActive; } in isActive() function
40 bool isActive() { return fFlinger.isActive(); } in isActive() function
/external/skia/include/views/
DSkTouchGesture.h17 bool isActive() const { return fActive; } in isActive() function
40 bool isActive() { return fFlinger.isActive(); } in isActive() function
/external/aac/libFDK/src/
DFDK_crc.cpp248 hCrcInfo->crcRegData[i].isActive = 0; in FDKcrcReset()
262 FDK_ASSERT(hCrcInfo->crcRegData[reg].isActive==0); in FDKcrcStartReg()
263 hCrcInfo->crcRegData[reg].isActive = 1; in FDKcrcStartReg()
279 FDK_ASSERT((reg==(INT)hCrcInfo->regStop)&&(hCrcInfo->crcRegData[reg].isActive==1)); in FDKcrcEndReg()
294 hCrcInfo->crcRegData[reg].isActive = 0; in FDKcrcEndReg()
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
DInsertionPoint.cpp131 return isActive() && !hasDistribution(); in shouldUseFallbackElements()
141 bool InsertionPoint::isActive() const in isActive() function in blink::InsertionPoint
163 return isHTMLShadowElement(*this) && isActive(); in isShadowInsertionPoint()
168 return isHTMLContentElement(*this) && isActive(); in isContentInsertionPoint()
185 return !isActive() && HTMLElement::rendererIsNeeded(style); in rendererIsNeeded()
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dfocus_row.js118 var isActive = index >= 0 && index < this.items.length;
119 if (isActive == !!wasActive)
122 if (isActive)
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
Dmathjax.js65 cvox.MathJax.isActive(msg.id);
178 cvox.MathJax.isActive = function(callbackId) { function in cvox.MathJax
181 {'status': cvox.MathJaxExternalUtil.isActive()});
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DV8GCForContextDispose.cpp50 if (!m_didDisposeContextForMainFrame && !m_pseudoIdleTimer.isActive()) in notifyContextDisposed()
56 if (!m_didDisposeContextForMainFrame && m_pseudoIdleTimer.isActive()) { in notifyIdleSooner()
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DMediaControlElements.cpp130 if (m_transitionTimer.isActive()) in stopTimer()
403 if (!inDocument() || !document().isActive()) in defaultEventHandler()
434 return inDocument() && document().isActive(); in willRespondToMouseClickEvents()
480 if (!inDocument() || !document().isActive()) in defaultEventHandler()
495 if (!inDocument() || !document().isActive()) in willRespondToMouseMoveEvents()
503 if (!inDocument() || !document().isActive()) in willRespondToMouseClickEvents()
739 ASSERT(cue->isActive()); in updateDisplay()
740 if (!cue->track() || !cue->track()->isRendered() || !cue->isActive()) in updateDisplay()
755 if (!document().isActive()) in updateSizes()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DFilterBar.js117 var isActive = false;
119 if (this._filters[i].isActive())
188 isActive: function() { }, method in WebInspector.FilterUI
242 isActive: function() method in WebInspector.TextFilterUI
495 isActive: function() method in WebInspector.NamedBitSetFilterUI
615 isActive: function() method in WebInspector.ComboBoxFilterUI
697 isActive: function() method in WebInspector.CheckboxFilterUI
/external/chromium_org/third_party/WebKit/Source/core/loader/
DTextTrackLoader.cpp102 if (!m_cueLoadTimer.isActive()) in notifyFinished()
129 if (m_cueLoadTimer.isActive()) in newCuesParsed()
147 if (!m_cueLoadTimer.isActive()) in fileFailedToParse()
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
DGeolocationClientMock.cpp92 if (m_pendingPermissions.isEmpty() && m_permissionTimer.isActive()) in cancelPermissionRequest()
109 if (!m_permissionTimer.isActive()) in asyncUpdatePermission()
156 if (m_isActive && !m_controllerTimer.isActive()) in asyncUpdateController()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
Dapi_implementation.js141 if (cvox.ChromeVox.isActive) {
158 if (cvox.ChromeVox.isActive) {
188 if (cvox.ChromeVox.isActive) {
231 if (cvox.ChromeVox.isActive) {
259 if (!cvox.ChromeVox.isActive) {

123456789