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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 181 long pauseState = m_state->getLong(DebuggerAgentState::pauseOnExceptionsState);
183 setPauseOnExceptionsImpl(&error, pauseState);
661 ScriptDebugServer::PauseOnExceptionsState pauseState;
663 pauseState = ScriptDebugServer::DontPauseOnExceptions;
665 pauseState = ScriptDebugServer::PauseOnAllExceptions;
667 pauseState = ScriptDebugServer::PauseOnUncaughtExceptions;
672 setPauseOnExceptionsImpl(errorString, pauseState);
675 void InspectorDebuggerAgent::setPauseOnExceptionsImpl(ErrorString* errorString, int pauseState)
677 scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(pauseState));
678 if (scriptDebugServer().pauseOnExceptionsState() != pauseState)
    [all...]
InspectorDebuggerAgent.h 107 virtual void setPauseOnExceptions(ErrorString*, const String& pauseState);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
MediaSource.java 429 synchronized public void pauseVideo(boolean pauseState) {
431 if (pauseState && !mPaused) {
433 } else if (!pauseState && mPaused) {
437 mPaused = pauseState;

Completed in 623 milliseconds