Lines Matching refs:this

4  * you may not use this file except in compliance with the License.
303 [this](const AVControlCommand& cmd) { HandleOnPlay(cmd); }},
305 [this](const AVControlCommand& cmd) { HandleOnPause(cmd); }},
307 [this](const AVControlCommand& cmd) { HandleOnStop(cmd); }},
309 [this](const AVControlCommand& cmd) { HandleOnPlayNext(cmd); }},
311 [this](const AVControlCommand& cmd) { HandleOnPlayPrevious(cmd); }},
313 [this](const AVControlCommand& cmd) { HandleOnFastForward(cmd); }},
315 [this](const AVControlCommand& cmd) { HandleOnRewind(cmd); }},
317 [this](const AVControlCommand& cmd) { HandleOnSeek(cmd); }},
319 [this](const AVControlCommand& cmd) { HandleOnSetSpeed(cmd); }},
321 [this](const AVControlCommand& cmd) { HandleOnSetLoopMode(cmd); }},
323 [this](const AVControlCommand& cmd) { HandleOnToggleFavorite(cmd); }},
325 [this](const AVControlCommand& cmd) { HandleOnPlayFromAssetId(cmd); }},
327 [this](const AVControlCommand& cmd) { HandleOnAVCallAnswer(cmd); }},
329 [this](const AVControlCommand& cmd) { HandleOnAVCallHangUp(cmd); }},
331 [this](const AVControlCommand& cmd) { HandleOnAVCallToggleCallMute(cmd); }}
335 {MMI::KeyEvent::KEYCODE_MEDIA_PLAY, [this](const AVControlCommand& cmd) { HandleOnPlay(cmd); }},
336 {MMI::KeyEvent::KEYCODE_MEDIA_PAUSE, [this](const AVControlCommand& cmd) { HandleOnPause(cmd); }},
337 {MMI::KeyEvent::KEYCODE_MEDIA_PLAY_PAUSE, [this](const AVControlCommand& cmd) { HandleOnPlayOrPause(cmd); }},
338 {MMI::KeyEvent::KEYCODE_MEDIA_STOP, [this](const AVControlCommand& cmd) { HandleOnPause(cmd); }},
339 {MMI::KeyEvent::KEYCODE_MEDIA_NEXT, [this](const AVControlCommand& cmd) { HandleOnPlayNext(cmd); }},
340 {MMI::KeyEvent::KEYCODE_MEDIA_PREVIOUS, [this](const AVControlCommand& cmd) { HandleOnPlayPrevious(cmd); }},
341 {MMI::KeyEvent::KEYCODE_MEDIA_REWIND, [this](const AVControlCommand& cmd) { HandleOnRewind(cmd); }},
342 {MMI::KeyEvent::KEYCODE_MEDIA_FAST_FORWARD, [this](const AVControlCommand& cmd) { HandleOnFastForward(cmd); }}