HomeSort by relevance Sort by last modified time
    Searched refs:pauseState (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorDebuggerAgent.cpp 338 ScriptDebugServer::PauseOnExceptionsState pauseState;
340 pauseState = ScriptDebugServer::DontPauseOnExceptions;
342 pauseState = ScriptDebugServer::PauseOnAllExceptions;
344 pauseState = ScriptDebugServer::PauseOnUncaughtExceptions;
349 scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(pauseState));
350 if (scriptDebugServer().pauseOnExceptionsState() != pauseState)
InspectorDebuggerAgent.h 98 void setPauseOnExceptions(ErrorString*, const String& pauseState);
  /system/media/mca/filterpacks/videosrc/java/
MediaSource.java 422 synchronized public void pauseVideo(boolean pauseState) {
424 if (pauseState && !mPaused) {
426 } else if (!pauseState && mPaused) {
430 mPaused = pauseState;

Completed in 3150 milliseconds