HomeSort by relevance Sort by last modified time
    Searched refs:coordinates (Results 26 - 50 of 63) sorted by null

12 3

  /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]);
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_actions.h 253 LPARAM coordinates = (1 << 16) | 1; local
256 ::PostMessage(hwnd, WM_RBUTTONDOWN, 0, coordinates);
257 ::PostMessage(hwnd, WM_RBUTTONUP, 0, coordinates);
chrome_frame_ui_test_utils.cc 244 LOG(ERROR) << "Could not convert from screen to client coordinates for "
534 // For some reason, it seems that menus expect screen coordinates.
553 LPARAM coordinates = MAKELPARAM(x, y);
554 ::PostMessage(container_window, button_down, 0, coordinates);
555 ::PostMessage(container_window, button_up, 0, coordinates);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 137 double coordinates[coordinatesInQuad]; local
141 if (!quadArray->get(i)->asNumber(coordinates + i))
144 quad->setP1(FloatPoint(coordinates[0], coordinates[1]));
145 quad->setP2(FloatPoint(coordinates[2], coordinates[3]));
146 quad->setP3(FloatPoint(coordinates[4], coordinates[5]));
147 quad->setP4(FloatPoint(coordinates[6], coordinates[7]))
    [all...]
  /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);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_array.spec 279 with each set of window coordinates (x,y) that lie within a primitive;
525 how the 4-tuple is mapped into the coordinates used for sampling. The
532 Note that not all four components of the texture coordinates <coord>
536 coordinates used
553 coordinate mappings. The "coordinates used" column indicate the
    [all...]
  /external/mesa3d/docs/
MESA_texture_array.spec 279 with each set of window coordinates (x,y) that lie within a primitive;
525 how the 4-tuple is mapped into the coordinates used for sampling. The
532 Note that not all four components of the texture coordinates <coord>
536 coordinates used
553 coordinate mappings. The "coordinates used" column indicate the
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 121 private static final String PERF_TAG_CALCULATE_COORDINATES = "CCHV.coordinates";
165 // Dimensions and coordinates.
321 public void drawFolders(Canvas canvas, ConversationItemViewCoordinates coordinates) {
325 final int xMinStart = coordinates.foldersX;
326 final int xEnd = coordinates.foldersXEnd;
327 final int y = coordinates.foldersY;
328 final int height = coordinates.foldersHeight;
329 int textBottomPadding = coordinates.foldersTextBottomPadding;
331 sFoldersPaint.setTextSize(coordinates.foldersFontSize);
332 sFoldersPaint.setTypeface(coordinates.foldersTypeface)
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_win.cc 212 // Map to window coordinates.
753 // Send the invalid rect in screen coordinates.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 37 #include "modules/geolocation/Coordinates.h"
54 RefPtr<Coordinates> coordinates = Coordinates::create(position->latitude(), position->longitude(), position->canProvideAltitude(), position->altitude(),
57 return Geoposition::create(coordinates.release(), convertSecondsToDOMTimeStamp(position->timestamp()));
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_view.js 216 * @param {Rect} deviceRect Rectangle in the device coordinates.
684 * @param {Rect} screenRect Target rectangle in screen coordinates.
699 * @param {Rect} imageCropRect The crop rectangle in image coordinates.
741 * @param {Rect} imageCropRect The crop rectangle in image coordinates.
989 * should be given in device coordinates (accounting for devicePixelRatio).
    [all...]
commands.js 367 * @param {Rect} imageRect Crop rectange in image coordinates.
image_editor.js 692 * @return {Object} A pair of x,y in page coordinates.
706 * @return {object?} A pair of x,y in page coordinates.
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 701 * Test the coordinates of 3 buttons side by side verifying vertical and
702 * horizontal coordinates.
810 // dialog with the detected pointers motion coordinates is displayed.
824 assertTrue("All Y axis coordinates for pointer 1 must be the same", p1s.y == p1e.y);
825 assertTrue("All Y axis coordinates for pointer 2 must be the same", p2s.y == p2e.y);
826 assertTrue("All Y axis coordinates for both pointers must be the same", p1s.y == p2s.y);
998 String coordinates = pointers[pointerNumber].split(":")[edge]; local
    [all...]
  /external/chromium_org/tools/traceline/svgui/
traceline.js 304 // scrolled, and coordinates are always at 0. We keep the scene in millisecond
307 // draw the update into the static SVG element... Y coordinates are still
527 // Remember, for now, Y (height) coordinates are still in pixels, since we
528 // don't zoom or scroll in this direction. X coordinates are milliseconds.
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/src/com/android/uiautomator/tests/cts/
CtsUiAutomatorTest.java 675 * Test the coordinates of 3 buttons side by side verifying vertical and
676 * horizontal coordinates.
784 // dialog with the detected pointers motion coordinates is displayed.
798 assertTrue("All Y axis coordinates for pointer 1 must be the same", p1s.y == p1e.y);
799 assertTrue("All Y axis coordinates for pointer 2 must be the same", p2s.y == p2e.y);
800 assertTrue("All Y axis coordinates for both pointers must be the same", p1s.y == p2s.y);
972 String coordinates = pointers[pointerNumber].split(":")[edge]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 527 coordlist is sequence of coordinates
557 coordlist is sequence of coordinates
631 fun must be a function with two arguments, the coordinates
646 fun must be a function with two arguments, the coordinates
665 fun must be a function with two arguments, the coordinates of the
686 fun must be a function with two arguments, the coordinates
770 coordinates = self.cv.coords(item)
772 while coordinates:
773 x, y = coordinates[:2]
776 coordinates = coordinates[2:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 527 coordlist is sequence of coordinates
557 coordlist is sequence of coordinates
631 fun must be a function with two arguments, the coordinates
646 fun must be a function with two arguments, the coordinates
665 fun must be a function with two arguments, the coordinates of the
686 fun must be a function with two arguments, the coordinates
770 coordinates = self.cv.coords(item)
772 while coordinates:
773 x, y = coordinates[:2]
776 coordinates = coordinates[2:
    [all...]
  /external/libpng/
CHANGES     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pprof     [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pprof     [all...]

Completed in 2928 milliseconds

12 3