Searched defs:accuracy (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dgeoposition.h11 double accuracy; member in struct:Geoposition
H A Dgeolocation_override_manager_unittest.cc59 double latitude, longitude, accuracy; local
62 ASSERT_TRUE(command.params.GetDouble("accuracy", &accuracy));
65 ASSERT_EQ(geoposition.accuracy, accuracy);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCriteria.java10 private int accuracy = Criteria.NO_REQUIREMENT; field in class:ShadowCriteria
18 accuracy = criteria.getAccuracy();
24 return accuracy;
28 public void setAccuracy(int accuracy) { argument
29 this.accuracy = accuracy;
49 if (criteria.getAccuracy() == accuracy && criteria.getPowerRequirement() == powerRequirement) {
H A DShadowLocation.java22 private float accuracy; field in class:ShadowLocation
59 accuracy = l.getAccuracy();
92 return accuracy;
96 public void setAccuracy(float accuracy) { argument
97 this.accuracy = accuracy;
103 this.accuracy = 0.0f;
213 if (accuracy != that.accuracy) return false;
227 temp = accuracy !
[all...]
/external/chromium_org/content/public/common/
H A Dgeoposition.h34 // A valid fix has a valid latitude, longitude, accuracy and timestamp.
46 double accuracy; member in struct:content::Geoposition
/external/chromium_org/third_party/WebKit/public/web/
H A DWebGeolocationPosition.h43 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
45 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
50 WEBKIT_EXPORT void assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSensorManagerTest.java74 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DCoordinates.h37 static PassRefPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
47 double accuracy() const { return m_accuracy; } function in class:WebCore::Coordinates
53 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
57 , m_accuracy(accuracy)
H A DGeolocationPosition.h37 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); } argument
39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
45 double accuracy() const { return m_accuracy; } function in class:WebCore::GeolocationPosition
57 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy) argument
61 , m_accuracy(accuracy)
73 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
77 , m_accuracy(accuracy)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebGeolocationClientMock.cpp55 void WebGeolocationClientMock::setPosition(double latitude, double longitude, double accuracy) argument
57 WebGeolocationPosition webPosition(currentTime(), latitude, longitude, accuracy, local
92 void WebGeolocationClientMock::setEnableHighAccuracy(bool accuracy) argument
94 m_clientMock->setEnableHighAccuracy(accuracy);
H A DWebGeolocationPosition.cpp35 void WebGeolocationPosition::assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
37 m_private = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
/external/chromium_org/content/browser/geolocation/
H A Dlocation_api_adapter_android.cc24 jboolean has_accuracy, jdouble accuracy,
28 time_stamp, has_altitude, altitude, has_accuracy, accuracy,
105 bool has_accuracy, double accuracy,
115 position.accuracy = accuracy;
19 NewLocationAvailable(JNIEnv* env, jclass, jdouble latitude, jdouble longitude, jdouble time_stamp, jboolean has_altitude, jdouble altitude, jboolean has_accuracy, jdouble accuracy, jboolean has_heading, jdouble heading, jboolean has_speed, jdouble speed) argument
102 OnNewLocationAvailable( double latitude, double longitude, double time_stamp, bool has_altitude, double altitude, bool has_accuracy, double accuracy, bool has_heading, double heading, bool has_speed, double speed) argument
H A Dlocation_arbitrator_impl_unittest.cc48 double accuracy) {
53 position.accuracy = accuracy;
97 // readable. Note |gps_| will only be set when there is a high accuracy
126 double accuracy) {
131 EXPECT_DOUBLE_EQ(accuracy, geoposition.accuracy);
250 // Advance time, and set a low accuracy position
45 SetPositionFix(MockLocationProvider* provider, double latitude, double longitude, double accuracy) argument
124 CheckLastPositionInfo(double latitude, double longitude, double accuracy) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DLocationProvider.java68 * @param gpsEnabled Whether or not we're interested in high accuracy GPS.
224 * @param gpsEnabled Whether or not we're interested in high accuracy GPS.
265 boolean hasAccuracy, double accuracy,
262 nativeNewLocationAvailable( double latitude, double longitude, double timeStamp, boolean hasAltitude, double altitude, boolean hasAccuracy, double accuracy, boolean hasHeading, double heading, boolean hasSpeed, double speed) argument
H A DDeviceMotionAndOrientation.java170 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_PhysicsSpace.cpp67 (JNIEnv * env, jobject object, jlong spaceId, jfloat tpf, jint maxSteps, jfloat accuracy) {
74 space->stepSimulation(tpf, maxSteps, accuracy);
66 Java_com_jme3_bullet_PhysicsSpace_stepSimulation(JNIEnv * env, jobject object, jlong spaceId, jfloat tpf, jint maxSteps, jfloat accuracy) argument
H A DjmePhysicsSpace.cpp65 void jmePhysicsSpace::stepSimulation(jfloat tpf, jint maxSteps, jfloat accuracy) { argument
66 dynamicsWorld->stepSimulation(tpf, maxSteps, accuracy);
/external/replicaisland/src/com/replica/replicaisland/
H A DAndouKun.java723 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java113 private float accuracy = 1f / 60f; field in class:PhysicsSpace
324 dynamicsWorld.stepSimulation(time, maxSteps, accuracy);
611 * each frame but is determined by the accuracy of the physics space.
764 * when the physics has the default accuracy of 60 fps. Note that setting this
773 * get the current accuracy of the physics computation
774 * @return the current accuracy
777 return accuracy;
781 * sets the accuracy of the physics computation, default=1/60s<br>
782 * @param accuracy
784 public void setAccuracy(float accuracy) { argument
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
H A DPhysicsSpace.java96 private float accuracy = 1f / 60f; field in class:PhysicsSpace
348 stepSimulation(physicsSpaceId, time, maxSteps, accuracy);
351 private native void stepSimulation(long space, float time, int maxSteps, float accuracy); argument
668 * each frame but is determined by the accuracy of the physics space.
821 * when the physics has the default accuracy of 60 fps. Note that setting this
830 * get the current accuracy of the physics computation
831 * @return the current accuracy
834 return accuracy;
838 * sets the accuracy of the physics computation, default=1/60s<br>
839 * @param accuracy
841 setAccuracy(float accuracy) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp1143 void InspectorPageAgent::setGeolocationOverride(ErrorString* error, const double* latitude, const double* longitude, const double* accuracy) argument
1156 if (latitude && longitude && accuracy)
1157 m_geolocationPosition = GeolocationPosition::create(currentTimeMS(), *latitude, *longitude, *accuracy);
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dts.h160 accuracy Accuracy OPTIONAL,
176 TS_ACCURACY *accuracy; member in struct:TS_tst_info_st
433 int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy);
508 ASN1_INTEGER *seconds; /* accuracy, 0 means not specified. */
509 ASN1_INTEGER *millis; /* accuracy, 0 means not specified. */
510 ASN1_INTEGER *micros; /* accuracy, 0 means not specified. */
/external/openssl/include/openssl/
H A Dts.h160 accuracy Accuracy OPTIONAL,
176 TS_ACCURACY *accuracy; member in struct:TS_tst_info_st
433 int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy);
508 ASN1_INTEGER *seconds; /* accuracy, 0 means not specified. */
509 ASN1_INTEGER *millis; /* accuracy, 0 means not specified. */
510 ASN1_INTEGER *micros; /* accuracy, 0 means not specified. */
/external/chromium_org/third_party/gpsd/release-3.1/
H A Dgps.h610 /* ura, SV accuracy, 4 bits unsigned index */
881 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10695
915 bool accuracy; /* fix quality */ member in struct:ais_t::__anon10694::__anon10696
1168 bool accuracy; /* position accuracy, <10m if true */ member in struct:ais_t::__anon10694::__anon10709::__anon10710::__anon10716
1240 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10717
1313 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10724
1335 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10725
1378 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10727
1473 bool accuracy; /* position accuracy */ member in struct:ais_t::__anon10694::__anon10738
[all...]
/external/qemu/hw/
H A Dbt.h1303 uint16_t accuracy; member in struct:__anon24776

Completed in 706 milliseconds

12