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

1 2 3 4 5 6 7 8 91011

  /hardware/bsp/intel/peripheral/libupm/src/hmc5883l/
javaupm_hmc5883l.i 16 %typemap(out) int16_t *coordinates {
hmc5883l.h 80 * Returns a pointer to an int[3] that contains the coordinates as ints
84 int16_t* coordinates();
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hmc5883l.cxx 39 // Print out the coordinates, heading, and direction every second
41 compass->update(); // Update the coordinates
42 pos = compass->coordinates();
  /hardware/bsp/intel/peripheral/libupm/examples/python/
hmc5883l.py 34 pos = hmc.coordinates() # Read raw coordinates
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
ShortcutMenuAccessibilityDelegate.java 54 final int[] coordinates = new int[2]; local
55 final long screenId = findSpaceOnWorkspace(item, coordinates);
61 screenId, coordinates[0], coordinates[1]);
LauncherAccessibilityDelegate.java 164 final int[] coordinates = new int[2]; local
165 final long screenId = findSpaceOnWorkspace(item, coordinates);
174 screenId, coordinates[0], coordinates[1]);
184 screenId, coordinates, info.spanX, info.spanY);
196 final int[] coordinates = new int[2]; local
197 final long screenId = findSpaceOnWorkspace(item, coordinates);
200 screenId, coordinates[0], coordinates[1]);
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
DragAction.java 66 UiController uiController, float[] coordinates, float[] precision) {
68 uiController, coordinates, precision)
101 UiController uiController, float[] coordinates, float[] precision) {
102 return performDoubleTap(uiController, coordinates, precision);
132 UiController uiController, float[] coordinates, float[] precision) {
134 uiController, coordinates, precision)
136 return performLongPress(uiController, coordinates, precision);
167 UiController uiController, float[] coordinates, float[] precision) {
169 uiController, coordinates, precision)
187 uiController, coordinates, precision).down
    [all...]
MouseClickAction.java 43 public Tapper.Status sendTap(UiController uiController, float[] coordinates,
45 Tapper.Status stat = sendSingleTap(uiController, coordinates, precision);
58 stat = sendSingleTap(uiController, coordinates, precision);
75 float[] coordinates, float[] precision) {
76 DownResultHolder res = MotionEvents.sendDown(uiController, coordinates, precision);
97 * @param coordinatesProvider the provider of the event coordinates
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
EuclideanIntegerPoint.java 26 * A simple implementation of {@link Clusterable} for points with integer coordinates.
35 /** Point coordinates. */
109 final int[] coordinates = getPoint(); local
110 for (int i = 0; i < coordinates.length; i++) {
111 buff.append(coordinates[i]);
112 if (i < coordinates.length - 1) {
  /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];
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 98 private List<LatLng> coordinates; local
107 coordinates = new ArrayList<LatLng>();
112 coordinates.add(latLng);
122 if (coordinates == null || coordinates.isEmpty()) {
129 mMap.addPolyline(new PolylineOptions().geodesic(true).addAll(coordinates));
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 98 private List<LatLng> coordinates; local
107 coordinates = new ArrayList<LatLng>();
112 coordinates.add(latLng);
122 if (coordinates == null || coordinates.isEmpty()) {
129 mMap.addPolyline(new PolylineOptions().geodesic(true).addAll(coordinates));
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/
PhoneMainActivity.java 98 private List<LatLng> coordinates; local
107 coordinates = new ArrayList<LatLng>();
112 coordinates.add(latLng);
122 if (coordinates == null || coordinates.isEmpty()) {
129 mMap.addPolyline(new PolylineOptions().geodesic(true).addAll(coordinates));
  /hardware/bsp/intel/peripheral/libupm/examples/java/
Hmc5883lSample.java 47 // Update the coordinates
50 pos = compas.coordinates();
  /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...]
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
hmc5883l.js 36 // Print out the coordinates, heading, and direction every second
39 myCompass.update(); // Update the coordinates
40 coordsObj = myCompass.coordinates();
  /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...]
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java 248 final int[] coordinates = CoordinateUtils.newCoordinateArray(length); local
252 CoordinateUtils.setXYInArray(coordinates, i,
255 CoordinateUtils.setXYInArray(coordinates, i,
259 return coordinates;
  /external/ImageMagick/MagickCore/
draw.c 735 coordinates,
757 coordinates=0;
767 if (coordinates <= 0)
769 coordinates=(ssize_t) primitive_info[i].coordinates;
774 coordinates--;
786 if (coordinates > 0)
727 coordinates, local
1277 coordinates; local
4225 coordinates, local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 39 * Represents the coordinates of elements inside a CanvasConversationHeaderView
41 * and record the coordinates of each element after layout. This will allows us
58 * hide/show optional views and determine the correct coordinates for that item configuration.
246 Utils.traceBeginSection("CIV coordinates constructor");
302 // Records coordinates.
437 * Returns the x coordinates of a view by tracing up its hierarchy.
449 * Returns the y coordinates of a view by tracing up its hierarchy.
473 * Returns coordinates for elements inside a conversation header view given
479 ConversationItemViewCoordinates coordinates = cache.getCoordinates(cacheKey); local
480 if (coordinates != null)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragController.java 200 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
527 final int[] coordinates = mCoordinatesTemp; local
528 DropTarget dropTarget = findDropTarget(x, y, coordinates);
529 mDragObject.x = coordinates[0];
530 mDragObject.y = coordinates[1];
656 final int[] coordinates = mCoordinatesTemp;
659 DropTarget dropTarget = findDropTarget(location[0], location[1], coordinates);
660 mDragObject.x = coordinates[0];
661 mDragObject.y = coordinates[1];
705 final int[] coordinates = mCoordinatesTemp
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 193 // shouldn't be overridden by the "typed key" coordinates
288 * @param coordinates the x, y coordinates of the key in the CoordinateUtils format
290 public void setComposingWord(final int[] codePoints, final int[] coordinates) {
296 CoordinateUtils.xFromArray(coordinates, i),
297 CoordinateUtils.yFromArray(coordinates, i)));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 285 final int[] coordinates; local
286 coordinates = keyboard.getCoordinates(codePoints);
287 composer.setComposingWord(codePoints, coordinates);

Completed in 9131 milliseconds

1 2 3 4 5 6 7 8 91011