Home
last modified time | relevance | path

Searched refs:isStarted (Results 1 – 21 of 21) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowAnimationDrawable.java15 private boolean isStarted; field in ShadowAnimationDrawable
29 isStarted = true; in start()
32 public boolean isStarted() { in isStarted() method in ShadowAnimationDrawable
33 return isStarted; in isStarted()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DTimelineManager.js53 isStarted: function() method in WebInspector.TimelineManager
55 return this._dispatcher.isStarted();
114 isStarted: function() method in WebInspector.TimelineDispatcher
DScreencastView.js85 this._timelineActive = WebInspector.timelineManager.isStarted();
/external/chromium_org/third_party/sqlite/src/src/
Dtest_async.c102 volatile int isStarted = 0; in testAsyncStart() local
103 ClientData threadData = (ClientData)&isStarted; in testAsyncStart()
116 while( isStarted==0 ) { /* Busy loop */ } in testAsyncStart()
/external/chromium_org/content/renderer/
Dwebsharedworker_proxy.cc119 bool WebSharedWorkerProxy::isStarted() { in isStarted() function in content::WebSharedWorkerProxy
131 DCHECK(!isStarted()); in startWorkerContext()
Dwebsharedworker_proxy.h38 virtual bool isStarted();
/external/chromium_org/third_party/WebKit/public/web/
DWebSharedWorkerConnector.h50 virtual bool isStarted() = 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
DSMILTimeContainer.h58 bool isStarted() const;
DSMILTimeContainer.cpp128 bool SMILTimeContainer::isStarted() const in isStarted() function in WebCore::SMILTimeContainer
/external/chromium_org/third_party/WebKit/Source/core/editing/
DSpellCheckRequester.h57 bool isStarted() const { return m_requester; } in isStarted() function
/external/chromium_org/third_party/WebKit/Source/web/
DWebSharedWorkerImpl.h92 virtual bool isStarted();
DSharedWorkerRepositoryClientImpl.cpp107 if (m_webWorkerConnector->isStarted()) { in load()
DWebSharedWorkerImpl.cpp228 bool WebSharedWorkerImpl::isStarted() in isStarted() function in blink::WebSharedWorkerImpl
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorTimelineAgent.cpp291 } else if (isStarted()) { in restore()
316 if (isStarted()) { in start()
340 bool InspectorTimelineAgent::isStarted() in isStarted() function in WebCore::InspectorTimelineAgent
381 if (!isStarted()) { in stop()
798 if (!isStarted()) { in consoleTimeline()
821 …if (!m_consoleTimelines.size() && isStarted() && !m_state->getBoolean(TimelineAgentState::startedF… in consoleTimelineEnd()
DInspectorTimelineAgent.h302 bool isStarted();
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
DInvalidationService.java504 private static void setIsClientStarted(boolean isStarted) { in setIsClientStarted() argument
505 sIsClientStarted = isStarted; in setIsClientStarted()
/external/srec/srec/Recognizer/include/
DSR_RecognizerImpl.h231 ESR_BOOL isStarted; member
/external/libnfc-nxp/src/
DphFriNfc_FelicaMap.c79 …ic NFCSTATUS phFriNfc_Felica_HUpdateAttrBlkForWrOp(phFriNfc_NdefMap_t *NdefMap,uint8_t isStarted);
959 …tic NFCSTATUS phFriNfc_Felica_HUpdateAttrBlkForWrOp(phFriNfc_NdefMap_t *NdefMap,uint8_t isStarted) in phFriNfc_Felica_HUpdateAttrBlkForWrOp() argument
970 (( isStarted == FELICA_WRITE_STARTED )? in phFriNfc_Felica_HUpdateAttrBlkForWrOp()
1052 if (isStarted == FELICA_WRITE_STARTED ) in phFriNfc_Felica_HUpdateAttrBlkForWrOp()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGSVGElement.cpp494 …ocument().processingLoadEvent() && document().loadEventFinished() && !timeContainer()->isStarted()) in insertedInto()
/external/srec/srec/Recognizer/src/
DRecognizerImpl.c683 impl->isStarted = ESR_FALSE; in SR_RecognizerCreate()
1022 impl->isStarted = ESR_TRUE; in SR_RecognizerStartImpl()
1069 if (!impl->isStarted) in SR_RecognizerStopImpl()
1259 impl->isStarted = ESR_FALSE; in SR_RecognizerStopImpl()
1732 if (!impl->isStarted) in SR_RecognizerPutAudioImpl()
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
DAppMenu.java554 assert mIsByHardwareButton != mDragScrolling.isStarted(); in handleDragging()