HomeSort by relevance Sort by last modified time
    Searched defs:playState (Results 1 - 7 of 7) sorted by null

  /frameworks/wilhelm/tests/sandbox/
urimime.c 137 SLuint32 playState;
138 result = (*playerPlay)->GetPlayState(playerPlay, &playState);
140 if (SL_PLAYSTATE_PLAYING != playState) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.cpp 431 EAnimPlayState playState = (primitiveValue->getValueID() == CSSValuePaused) ? AnimPlayStatePaused : AnimPlayStatePlaying;
432 layer->setPlayState(playState);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AbstractCinematicEvent.java 37 import com.jme3.cinematic.PlayState;
55 protected PlayState playState = PlayState.Stopped;
104 playState = PlayState.Playing;
123 if (playState == PlayState.Playing) {
147 playState = PlayState.Stopped
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestSendToPresetReverb.cpp 284 SLuint32 playState;
286 result = (*playItf)->GetPlayState(playItf, &playState);
288 if (playState != SL_PLAYSTATE_PLAYING)
307 assert(playState == SL_PLAYSTATE_STOPPED);
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
CSSAnimationData.h 119 EAnimPlayState playState() const { return static_cast<EAnimPlayState>(m_playState); }
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.cpp 42 SLresult aplayer_setPlayState(const android::sp<android::GenericPlayer> &ap, SLuint32 playState,
47 switch (playState) {
65 SL_LOGE(ERROR_PLAYERSETPLAYSTATE_INVALID_OBJECT_STATE_D, playState);
83 SL_LOGE(ERROR_PLAYERSETPLAYSTATE_INVALID_OBJECT_STATE_D, playState);
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
media_controls.js 499 var playState = JSON.stringify({
505 document.location.search + '#' + playState;
528 var playState = JSON.parse(hash);
529 if (!('time' in playState))
532 this.media_.currentTime = playState.time;
534 if (playState.play)
    [all...]

Completed in 387 milliseconds