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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geoposition.h 31 #include "modules/geolocation/Coordinates.h"
38 static Geoposition* create(Coordinates* coordinates, DOMTimeStamp timestamp)
40 return new Geoposition(coordinates, timestamp);
49 Coordinates* coords() const { return m_coordinates.get(); }
52 Geoposition(Coordinates* coordinates, DOMTimeStamp timestamp)
53 : m_coordinates(coordinates)
60 Member<Coordinates> m_coordinates;
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
Tap.java 34 public Tapper.Status sendTap(UiController uiController, float[] coordinates,
38 checkNotNull(coordinates);
40 DownResultHolder res = MotionEvents.sendDown(uiController, coordinates, precision);
55 public Tapper.Status sendTap(UiController uiController, float[] coordinates,
58 checkNotNull(coordinates);
61 MotionEvent downEvent = MotionEvents.sendDown(uiController, coordinates, precision).down;
82 public Tapper.Status sendTap(UiController uiController, float[] coordinates,
85 checkNotNull(coordinates);
87 Tapper.Status stat = SINGLE.sendTap(uiController, coordinates, precision);
92 Tapper.Status secondStat = SINGLE.sendTap(uiController, coordinates, precision)
    [all...]
Tapper.java 49 * @param coordinates a float[] with x and y values of center of the tap.
53 public Status sendTap(UiController uiController, float[] coordinates, float[] precision);
MotionEvents.java 47 UiController uiController, float[] coordinates, float[] precision) {
49 checkNotNull(coordinates);
64 coordinates[0],
65 coordinates[1],
123 static boolean sendUp(UiController uiController, MotionEvent downEvent, float[] coordinates) {
126 checkNotNull(coordinates);
134 coordinates[0],
135 coordinates[1],
198 float[] coordinates) {
201 checkNotNull(coordinates);
    [all...]
GeneralClickAction.java 70 float[] coordinates = coordinatesProvider.calculateCoordinates(view); local
98 status = tapper.sendTap(uiController, coordinates, precision);
124 "describer: %s. Tried %s times. With Rollback? %s", coordinates[0], coordinates[1],
GeneralLocation.java 86 float[] coordinates = {x, y}; local
87 return coordinates;
  /frameworks/base/core/java/android/transition/
VisibilityPropagation.java 32 * The property key used for the center of the View in screen coordinates. This is an
109 int[] coordinates = (int[]) values.values.get(PROPNAME_VIEW_CENTER); local
110 if (coordinates == null) {
114 return coordinates[coordinateIndex];
  /external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/
ValidationMessageBubble.java 95 final RenderCoordinates coordinates = contentViewCore.getRenderCoordinates(); local
98 coordinates.fromLocalCssToPix(anchorX),
99 coordinates.fromLocalCssToPix(anchorY) + yOffset,
100 coordinates.fromLocalCssToPix(anchorX + anchorWidth),
101 coordinates.fromLocalCssToPix(anchorY + anchorHeight) + yOffset);
120 private void measure(RenderCoordinates coordinates) {
128 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportWidthPixInt(),
130 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportHeightPixInt(),
146 final RenderCoordinates coordinates = contentViewCore.getRenderCoordinates(); local
147 final int viewWidth = coordinates.getLastFrameViewportWidthPixInt()
    [all...]
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 97 private List<LatLng> coordinates; local
106 coordinates = new ArrayList<LatLng>();
111 coordinates.add(latLng);
121 if (coordinates == null || coordinates.isEmpty()) {
128 mMap.addPolyline(new PolylineOptions().geodesic(true).addAll(coordinates));
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
viewport.js 180 * @return {Rect} The image bounds in image coordinates.
185 * @return {Rect} The screen bounds in screen coordinates.
190 * @return {Rect} The visible part of the image, in image coordinates.
195 * @return {Rect} The visible part of the image, in screen coordinates.
213 * @return {Rect} The image bounds in screen coordinates.
224 * @param {number} size Size in screen coordinates.
225 * @return {number} Size in image coordinates.
232 * @param {number} x X in screen coordinates.
233 * @return {number} X in image coordinates.
240 * @param {number} y Y in screen coordinates
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
viewport.js 180 * @return {Rect} The image bounds in image coordinates.
185 * @return {Rect} The screen bounds in screen coordinates.
190 * @return {Rect} The visible part of the image, in image coordinates.
195 * @return {Rect} The visible part of the image, in screen coordinates.
213 * @return {Rect} The image bounds in screen coordinates.
224 * @param {number} size Size in screen coordinates.
225 * @return {number} Size in image coordinates.
232 * @param {number} x X in screen coordinates.
233 * @return {number} X in image coordinates.
240 * @param {number} y Y in screen coordinates
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
Monolith.java 41 float[] coordinates = { local
53 for (int i = 0; i < coordinates.length; i++) {
54 mVertexBuffer.put(coordinates[i]);
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 274 ("x", self.coordinates[j][0]),
275 ("y", self.coordinates[j][1]),
292 coordinates = GlyphCoordinates()
300 coordinates.append((safeEval(attrs["x"]), safeEval(attrs["y"])))
303 if not hasattr(self, "coordinates"):
304 self.coordinates = coordinates
306 self.endPtsOfContours = [len(coordinates)-1]
308 self.coordinates.extend (coordinates)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMarker.cpp 81 FloatRect coordinates = RenderSVGContainer::paintInvalidationRectInLocalCoordinates(); local
84 coordinates = localToParentTransform().mapRect(coordinates);
86 return markerTransformation.mapRect(coordinates);
154 // The 'origin' coordinate maps to SVGs refX/refY, given in coordinates relative to the viewport established by the marker
  /external/chromium_org/chrome/browser/extensions/api/location/
location_manager.cc 295 location::Coordinates* coordinates) {
296 coordinates->latitude = position.latitude;
297 coordinates->longitude = position.longitude;
299 coordinates->altitude.reset(new double(position.altitude));
300 coordinates->accuracy = position.accuracy;
302 coordinates->altitude_accuracy.reset(
306 coordinates->heading.reset(new double(position.heading));
308 coordinates->speed.reset(new double(position.speed));
location_manager.h 27 struct Coordinates;
69 // |coordinates|.
72 api::location::Coordinates* coordinates);
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_sprite_point.spec 34 coordinates at each vertex. This extension effectively turns points
44 1. How are the texture coordinates computed?
53 texture coordinates. The r and q coordinates may have been computed
74 texture and appropriate texture r coordinates could be used to
125 texture coordinates are computed as follows:
133 where x, y, z, w are the point's window coordinates, r and q are the
134 point's 3rd and 4th texture coordinates and r is half the point's
141 The new texture coordinates are not effected by texgen or the texture
142 matrix. Note, however, that the texture r and q coordinates are passe
    [all...]
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 34 coordinates at each vertex. This extension effectively turns points
44 1. How are the texture coordinates computed?
53 texture coordinates. The r and q coordinates may have been computed
74 texture and appropriate texture r coordinates could be used to
125 texture coordinates are computed as follows:
133 where x, y, z, w are the point's window coordinates, r and q are the
134 point's 3rd and 4th texture coordinates and r is half the point's
141 The new texture coordinates are not effected by texgen or the texture
142 matrix. Note, however, that the texture r and q coordinates are passe
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygonTest.cpp 40 FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule)
45 (*vertices)[i / 2] = FloatPoint(coordinates[i], coordinates[i + 1]);
226 #define TEST_EMPTY(coordinates) \
228 FloatPolygonTestValue emptyPolygonTestValue(coordinates, SIZEOF_ARRAY(coordinates), RULE_NONZERO); \
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 174 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
207 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
488 final int[] coordinates = mCoordinatesTemp; local
489 DropTarget dropTarget = findDropTarget(x, y, coordinates);
490 mDragObject.x = coordinates[0];
491 mDragObject.y = coordinates[1];
644 final int[] coordinates = mCoordinatesTemp;
646 mDragObject.x = coordinates[0];
647 mDragObject.y = coordinates[1];
672 final int[] coordinates = mCoordinatesTemp
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragController.java 164 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
197 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
484 final int[] coordinates = mCoordinatesTemp; local
485 DropTarget dropTarget = findDropTarget(x, y, coordinates);
486 mDragObject.x = coordinates[0];
487 mDragObject.y = coordinates[1];
641 final int[] coordinates = mCoordinatesTemp;
643 mDragObject.x = coordinates[0];
644 mDragObject.y = coordinates[1];
669 final int[] coordinates = mCoordinatesTemp
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java 224 final int[] coordinates = CoordinateUtils.newCoordinateArray(length); local
228 CoordinateUtils.setXYInArray(coordinates, i,
231 CoordinateUtils.setXYInArray(coordinates, i,
235 return coordinates;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp 827 std::pair<double, double> coordinates; local
830 coordinates.first = m_textPosition;
831 coordinates.second = m_computedLinePosition;
833 return coordinates;
837 coordinates.first = 100 - m_textPosition;
838 coordinates.second = m_computedLinePosition;
840 return coordinates;
844 coordinates.first = 100 - m_computedLinePosition;
845 coordinates.second = m_textPosition;
847 return coordinates;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 40 * Represents the coordinates of elements inside a CanvasConversationHeaderView
42 * and record the coordinates of each element after layout. This will allows us
64 * hide/show optional views and determine the correct coordinates for that item configuration.
275 Utils.traceBeginSection("CIV coordinates constructor");
334 // Records coordinates.
495 * Returns the x coordinates of a view by tracing up its hierarchy.
507 * Returns the y coordinates of a view by tracing up its hierarchy.
531 * Returns coordinates for elements inside a conversation header view given
537 ConversationItemViewCoordinates coordinates = cache.getCoordinates(cacheKey); local
538 if (coordinates != null)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 217 // shouldn't be overridden by the "typed key" coordinates
310 * @param coordinates the x, y coordinates of the key in the CoordinateUtils format
312 public void setComposingWord(final int[] codePoints, final int[] coordinates) {
318 CoordinateUtils.xFromArray(coordinates, i),
319 CoordinateUtils.yFromArray(coordinates, i)));

Completed in 2247 milliseconds

1 2 3 4