Home
last modified time | relevance | path

Searched refs:Coordinate (Results 1 – 18 of 18) sorted by relevance

/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
DPosition.java17 private Coordinate lat;
20 private Coordinate lng;
35 lat = new Coordinate(dblLat, Coordinate.LAT); in Position()
36 lng = new Coordinate(dblLng, Coordinate.LNG); in Position()
61 lat = new Coordinate(latDeg, latMin, Coordinate.LAT, latQuad); in Position()
62 lng = new Coordinate(lngDeg, lngMin, Coordinate.LNG, lngQuad); in Position()
72 this.lat = new Coordinate(lat); in Position()
73 this.lng = new Coordinate(lng); in Position()
90 quad = Coordinate.N; in Position()
92 quad = Coordinate.S; in Position()
[all …]
DCoordinate.java16 public class Coordinate { class
55 public Coordinate(int deg, float minsDecMins, int coOrdinate, in Coordinate() method in Coordinate
71 public Coordinate(double decCoordinate, int coOrdinate) throws InvalidPositionException { in Coordinate() method in Coordinate
98 public Coordinate(String coOrdinate) throws InvalidPositionException { in Coordinate() method in Coordinate
109 buildCoOrdinate(deg, minsDecMins, Coordinate.LAT, Coordinate.N); in Coordinate()
112 buildCoOrdinate(deg, minsDecMins, Coordinate.LAT, Coordinate.S); in Coordinate()
115 buildCoOrdinate(deg, minsDecMins, Coordinate.LNG, Coordinate.E); in Coordinate()
118 buildCoOrdinate(deg, minsDecMins, Coordinate.LNG, Coordinate.W); in Coordinate()
220 … decCoordinate = nu.Round(this.deg + (float) this.minsDecMins / 60, Coordinate.MINPRECISION); in buildCoOrdinate()
227 … decCoordinate = nu.Round(this.deg - ((float) this.minsDecMins / 60), Coordinate.MINPRECISION); in buildCoOrdinate()
[all …]
/external/webkit/Source/WebCore/platform/graphics/
DTiledBackingStore.cpp76 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); in invalidate()
77 …Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY())… in invalidate()
81 RefPtr<Tile> currentTile = tileAt(Tile::Coordinate(xCoordinate, yCoordinate)); in invalidate()
135 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); in paint()
136 …Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY())… in paint()
140 Tile::Coordinate currentCoordinate(xCoordinate, yCoordinate); in paint()
186 double TiledBackingStore::tileDistance(const IntRect& viewport, const Tile::Coordinate& tileCoordin… in tileDistance()
192 Tile::Coordinate centerCoordinate = tileCoordinateForPoint(viewCenter); in tileDistance()
230 Vector<Tile::Coordinate> tilesToCreate; in createTiles()
232 Tile::Coordinate topLeft = tileCoordinateForPoint(coverRect.location()); in createTiles()
[all …]
DTiledBackingStore.h87 PassRefPtr<Tile> tileAt(const Tile::Coordinate&) const;
88 void setTile(const Tile::Coordinate& coordinate, PassRefPtr<Tile> tile);
89 void removeTile(const Tile::Coordinate& coordinate);
96 IntRect tileRectForCoordinate(const Tile::Coordinate&) const;
97 Tile::Coordinate tileCoordinateForPoint(const IntPoint&) const;
98 double tileDistance(const IntRect& viewport, const Tile::Coordinate&);
100 void paintCheckerPattern(GraphicsContext*, const IntRect&, const Tile::Coordinate&);
105 typedef HashMap<Tile::Coordinate, RefPtr<Tile> > TileMap;
DTile.h45 typedef IntPoint Coordinate; typedef
47 …static PassRefPtr<Tile> create(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) … in create()
57 const Tile::Coordinate& coordinate() const { return m_coordinate; } in coordinate()
63 Tile(TiledBackingStore*, const Coordinate&);
66 Coordinate m_coordinate;
/external/webkit/Source/WebKit2/UIProcess/
DTiledDrawingAreaProxy.cpp200 …wingAreaTile> TiledDrawingAreaProxy::createTile(const TiledDrawingAreaTile::Coordinate& coordinate) in createTile()
238 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); in invalidate()
239 …TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), d… in invalidate()
243 Vector<TiledDrawingAreaTile::Coordinate> tilesToRemove; in invalidate()
247 …RefPtr<TiledDrawingAreaTile> currentTile = tileAt(TiledDrawingAreaTile::Coordinate(xCoordinate, yC… in invalidate()
336 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); in paint()
337 …TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), d… in paint()
341 TiledDrawingAreaTile::Coordinate currentCoordinate(xCoordinate, yCoordinate); in paint()
380 …roxy::tileDistance(const IntRect& viewport, const TiledDrawingAreaTile::Coordinate& tileCoordinate) in tileDistance()
386 TiledDrawingAreaTile::Coordinate centerCoordinate = tileCoordinateForPoint(viewCenter); in tileDistance()
[all …]
DTiledDrawingAreaTile.h48 typedef WebCore::IntPoint Coordinate; typedef
50 …static PassRefPtr<TiledDrawingAreaTile> create(TiledDrawingAreaProxy* proxy, const Coordinate& til… in create()
62 const TiledDrawingAreaTile::Coordinate& coordinate() const { return m_coordinate; } in coordinate()
71 …TiledDrawingAreaTile(TiledDrawingAreaProxy* proxy, const TiledDrawingAreaTile::Coordinate& tileCoo…
74 Coordinate m_coordinate;
DTiledDrawingAreaProxy.h126 PassRefPtr<TiledDrawingAreaTile> createTile(const TiledDrawingAreaTile::Coordinate&);
140 PassRefPtr<TiledDrawingAreaTile> tileAt(const TiledDrawingAreaTile::Coordinate&) const;
141 …void setTile(const TiledDrawingAreaTile::Coordinate& coordinate, RefPtr<TiledDrawingAreaTile> tile…
142 void removeTile(const TiledDrawingAreaTile::Coordinate& coordinate);
150 WebCore::IntRect tileRectForCoordinate(const TiledDrawingAreaTile::Coordinate&) const;
151 TiledDrawingAreaTile::Coordinate tileCoordinateForPoint(const WebCore::IntPoint&) const;
152 double tileDistance(const WebCore::IntRect& viewport, const TiledDrawingAreaTile::Coordinate&);
163 typedef HashMap<TiledDrawingAreaTile::Coordinate, RefPtr<TiledDrawingAreaTile> > TileMap;
/external/harfbuzz/src/
Dharfbuzz-gdef-private.h53 HB_Short Coordinate; /* x or y value (in design units) */ member
70 HB_Short Coordinate; /* x or y value (in design units) */ member
Dharfbuzz-gdef.c406 cv->cvf.cvf1.Coordinate = GET_Short(); in Load_CaretValue()
426 cv->cvf.cvf3.Coordinate = GET_Short(); in Load_CaretValue()
/external/mesa3d/docs/
DMESA_copy_sub_buffer.spec69 <width> and <height> indicate the size in pixels. Coordinate (0,0)
/external/webkit/Source/WebKit2/UIProcess/qt/
DTiledDrawingAreaTileQt.cpp44 TiledDrawingAreaTile::TiledDrawingAreaTile(TiledDrawingAreaProxy* proxy, const Coordinate& tileCoor… in TiledDrawingAreaTile()
/external/webkit/Source/WebCore/platform/graphics/qt/
DTileQt.cpp58 Tile::Tile(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) in Tile()
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
DSDL_QuartzWM.m142 Coordinate conversion functions, for convenience
/external/skia/third_party/glu/libtess/
DREADME149 that the value has been clamped. (Coordinate values must be small
/external/webkit/Source/WebKit/mac/
DChangeLog8724 …REGRESSION: Coordinate system for Core Animation NPAPI plug-ins is flipped with accelerated compos…
/external/jmonkeyengine/
DNOTICE3212 ==> engine/src/desktop/jme3tools/navigation/Coordinate.java <==
3218 * Coordinate class. Used to store a coordinate in [DD]D MM.M format.
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1630050 [Gtk] Build fix - pass a Coordinate to Geoposition::create
30057 Pass a Coordinate to Geoposition::create.