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

  /external/webkit/Source/WebCore/bindings/js/
JSCoordinatesCustom.cpp 29 #include "Coordinates.h"
37 Coordinates* imp = impl();
45 Coordinates* imp = impl();
53 Coordinates* imp = impl();
61 Coordinates* imp = impl();
  /external/webkit/Source/WebCore/page/
Geoposition.h 29 #include "Coordinates.h"
38 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
40 return adoptRef(new Geoposition(coordinates, timestamp));
49 Coordinates* coords() const { return m_coordinates.get(); }
52 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
53 : m_coordinates(coordinates)
59 RefPtr<Coordinates> m_coordinates;
Geoposition.idl 29 readonly attribute Coordinates coords;
Coordinates.h 35 class Coordinates : public RefCounted<Coordinates> {
37 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)); }
39 PassRefPtr<Coordinates> threadSafeCopy() const
41 return Coordinates::create(m_latitude, m_longitude, m_canProvideAltitude, m_altitude, m_accuracy, m_canProvideAltitudeAccuracy, m_altitudeAccuracy, m_canProvideHeading, m_heading, m_canProvideSpeed, m_speed);
58 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
Coordinates.idl 28 interface [OmitConstructor] Coordinates {
GeolocationPositionCache.cpp 172 RefPtr<Coordinates> coordinates = Coordinates::create(statement.getColumnDouble(0), // latitude local
185 m_cachedPosition = Geoposition::create(coordinates.release(), timestamp);
Geolocation.cpp 42 #include "Coordinates.h"
64 RefPtr<Coordinates> coordinates = Coordinates::create(position->latitude(), position->longitude(), position->canProvideAltitude(), position->altitude(),
67 return Geoposition::create(coordinates.release(), convertSecondsToDOMTimeStamp(position->timestamp()));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CoordinatesCustom.cpp 29 #include "Coordinates.h"
37 INC_STATS("DOM.Coordinates.altitude._get");
39 Coordinates* imp = V8Coordinates::toNative(holder);
47 INC_STATS("DOM.Coordinates.altitudeAccuracy._get");
49 Coordinates* imp = V8Coordinates::toNative(holder);
57 INC_STATS("DOM.Coordinates.heading._get");
59 Coordinates* imp = V8Coordinates::toNative(holder);
67 INC_STATS("DOM.Coordinates.speed._get");
69 Coordinates* imp = V8Coordinates::toNative(holder);
  /external/eigen/bench/
sparse_setter.cpp 44 typedef std::vector<Vector2i> Coordinates;
47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals);
48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals);
49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals);
50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals);
51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals);
52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals);
53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals);
54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals);
55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals)
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
position-string.js 23 shouldBe('position.coords.toString()', '"[object Coordinates]"');
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 166 RefPtr<Coordinates> coordinates = Coordinates::create(m_latitude, m_longitude, local
169 m_lastPosition = Geoposition::create(coordinates.release(), m_timestamp * 1000.0);
  /external/skia/tests/
BitmapCopyTest.cpp 99 // struct Coordinates
193 struct Coordinates {
198 explicit Coordinates(int _length): length(_length)
201 ~Coordinates(){
212 // at all coordinates indicated by coords. Simplifies verification of
215 Coordinates& coords,
236 static void writeCoordPixels(SkBitmap& bm, const Coordinates& coords) {
494 Coordinates coords(subW * subH);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 237 milliseconds