HomeSort by relevance Sort by last modified time
    Searched defs:coordinates (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebKit/android/jni/
MockGeolocation.cpp 31 #include "Coordinates.h"
49 RefPtr<Coordinates> coordinates = Coordinates::create(latitude, local
56 RefPtr<Geoposition> position = Geoposition::create(coordinates.release(), WTF::currentTimeMS());
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 172 RefPtr<Coordinates> coordinates = Coordinates::create(statement.getColumnDouble(0), // latitude local
185 m_cachedPosition = Geoposition::create(coordinates.release(), timestamp);
  /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/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMarker.cpp 79 FloatRect coordinates = RenderSVGContainer::repaintRectInLocalCoordinates(); local
82 coordinates = localToParentTransform().mapRect(coordinates);
84 return markerTransformation.mapRect(coordinates);
141 // The 'origin' coordinate maps to SVGs refX/refY, given in coordinates relative to the viewport established by the marker
  /external/chromium/chrome/browser/resources/ntp/
drag_drop_controller.js 18 // canDropOn(coordinates) -->
19 // returns true if the coordinates (relative to the drag container)
22 // setDragPlaceholder(coordinates) -->
24 // the specified coordinates.
79 // Shifts the client coordinates, |xy|, so they are relative to the top left
83 var coordinates = {
88 // If we're in an RTL language, reflect the coordinates so the delegate
91 coordinates.x = this.delegate_.dragContainer.offsetWidth - coordinates.x;
93 return coordinates;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 35 * Represents the coordinates of elements inside a CanvasConversationHeaderView
37 * and record the coordinates of each element after layout. This will allows us
94 // Cache to save Coordinates based on view width.
166 * Returns the x coordinates of a view by tracing up its hierarchy.
179 * Returns the y coordinates of a view by tracing up its hierarchy.
239 * Returns coordinates for elements inside a conversation header view given
243 MessageListItemCoordinates coordinates = mCache.get(width); local
244 if (coordinates == null) {
245 coordinates = new MessageListItemCoordinates();
246 mCache.put(width, coordinates);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
GyroscopeTestActivity.java 255 float[] coordinates = { local
267 for (int i = 0; i < coordinates.length; i++) {
268 mVertexBuffer.put(coordinates[i]);
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 773 float [] coordinates = new float[] {hv.mCropRect.centerX(), local
775 getImageMatrix().mapPoints(coordinates);
776 zoomTo(zoom, coordinates[0], coordinates[1], 300F);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 170 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
204 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
249 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
463 final int[] coordinates = mCoordinatesTemp; local
464 DropTarget dropTarget = findDropTarget(x, y, coordinates);
465 mDragObject.x = coordinates[0];
466 mDragObject.y = coordinates[1];
569 final int[] coordinates = mCoordinatesTemp; local
570 final DropTarget dropTarget = findDropTarget((int) x, (int) y, coordinates);
572 mDragObject.x = coordinates[0]
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
jcommon-1.0.12.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 575 milliseconds