HomeSort by relevance Sort by last modified time
    Searched refs:getCurrentPosition (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
argument-types.js 36 test('navigator.geolocation.getCurrentPosition()', true);
38 test('navigator.geolocation.getCurrentPosition(undefined)', true);
39 test('navigator.geolocation.getCurrentPosition(null)', true);
40 test('navigator.geolocation.getCurrentPosition({})', true);
41 test('navigator.geolocation.getCurrentPosition(objectThrowingException)', true);
42 test('navigator.geolocation.getCurrentPosition(emptyFunction)', false);
43 test('navigator.geolocation.getCurrentPosition(Math.abs)', false);
44 test('navigator.geolocation.getCurrentPosition(layoutTestController.setGeolocationPermission)', false);
45 test('navigator.geolocation.getCurrentPosition(true)', true);
46 test('navigator.geolocation.getCurrentPosition(42)', true)
    [all...]
reentrant-permission-denied.js 17 navigator.geolocation.getCurrentPosition(function(p) {
31 navigator.geolocation.getCurrentPosition(function(p) {
maximum-age.js 35 navigator.geolocation.getCurrentPosition(function(p) {
48 navigator.geolocation.getCurrentPosition(function(p) {
62 navigator.geolocation.getCurrentPosition(function(p) {
73 navigator.geolocation.getCurrentPosition(function(p) {
permission-denied-already-error.js 11 navigator.geolocation.getCurrentPosition(function(p) {
28 navigator.geolocation.getCurrentPosition(function(p) {
permission-denied-already-success.js 11 navigator.geolocation.getCurrentPosition(function(p) {
25 navigator.geolocation.getCurrentPosition(function(p) {
reentrant-error.js 14 navigator.geolocation.getCurrentPosition(function(p) {
37 navigator.geolocation.getCurrentPosition(function(p) {
reentrant-success.js 17 navigator.geolocation.getCurrentPosition(function(p) {
41 navigator.geolocation.getCurrentPosition(function(p) {
callback-to-remote-context.js 5 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
callback-to-remote-context2.js 6 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
delayed-permission-denied.js 13 navigator.geolocation.getCurrentPosition(function() {
error.js 13 navigator.geolocation.getCurrentPosition(function(p) {
notimer-after-unload.js 10 navigator.geolocation.getCurrentPosition(
success.js 16 navigator.geolocation.getCurrentPosition(function(p) {
timeout.js 16 navigator.geolocation.getCurrentPosition(function(p) {
delayed-permission-allowed-for-multiple-requests.js 29 navigator.geolocation.getCurrentPosition(function() {
disconnected-frame-already.js 15 iframeGeolocation.getCurrentPosition(function () {
disconnected-frame.js 15 iframeGeolocation.getCurrentPosition(function () {
multiple-requests.js 27 navigator.geolocation.getCurrentPosition(function(p) {
  /external/webkit/Source/WebCore/page/
Geolocation.idl 29 [Custom] void getCurrentPosition(in PositionCallback successCallback, in PositionErrorCallback errorCallback, in PositionOptions options);
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageOrderManagerTest.java 77 assertEquals(0, mom.getCurrentPosition());
97 assertEquals(0, mom.getCurrentPosition());
105 assertEquals(1, mom.getCurrentPosition());
112 assertEquals(0, mom.getCurrentPosition());
119 assertEquals(0, mom.getCurrentPosition());
125 assertEquals(1, mom.getCurrentPosition());
132 assertEquals(2, mom.getCurrentPosition());
139 assertEquals(3, mom.getCurrentPosition());
146 assertEquals(3, mom.getCurrentPosition());
151 assertEquals(2, mom.getCurrentPosition());
    [all...]
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
MediaPlayerProxy.java 46 int getCurrentPosition();
SingleThreadedMediaPlayerProxy.java 93 public synchronized int getCurrentPosition() {
94 return mDelegate.getCurrentPosition();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerGetCurrentPositionStateUnitTest.java 25 * MediaPlayer.getCurrentPosition() method can be called.
31 * 1. It is valid to call getCurrentPosition() in the following states:
33 * 2. It is invalid to call getCurrentPosition() in the following states:
56 player.getCurrentPosition();
66 return "getCurrentPosition()";
  /frameworks/base/media/libmediaplayerservice/
TestPlayerStub.h 89 virtual status_t getCurrentPosition(int *p) {
90 return mPlayer->getCurrentPosition(p);
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerTest.java 68 int pos = mp.getCurrentPosition();
73 assertEquals(pos + seekDuration, mp.getCurrentPosition(), tolerance);
120 int posBefore = mMediaPlayer.getCurrentPosition();
122 int posAfter = mMediaPlayer.getCurrentPosition();
132 posBefore = mMediaPlayer.getCurrentPosition();
134 posAfter = mMediaPlayer.getCurrentPosition();
142 posBefore = mMediaPlayer.getCurrentPosition();
144 posAfter = mMediaPlayer.getCurrentPosition();

Completed in 359 milliseconds

1 2 3 4