HomeSort by relevance Sort by last modified time
    Searched refs:x_diff (Results 1 - 3 of 3) sorted by null

  /development/ndk/sources/android/ndk_helper/
tapCamera.cpp 213 float x_diff; local
215 vec.Value( x_diff, y_diff );
217 pinch_start_distance_SQ_ = x_diff * x_diff + y_diff * y_diff;
218 camera_rotation_start_ = atan2f( y_diff, x_diff );
250 float x_diff, y_diff; local
252 vec.Value( x_diff, y_diff );
254 float fDistanceSQ = x_diff * x_diff + y_diff * y_diff;
273 float fRotation = atan2f( y_diff, x_diff );
    [all...]
  /external/chromium_org/ui/events/gesture_detection/
snap_scroll_controller.cc 85 int x_diff = static_cast<int>(std::abs(event.GetX() - first_touch_x_)); local
87 if (x_diff > kSnapBound && y_diff < kSnapBound) {
89 } else if (x_diff < kSnapBound && y_diff > kSnapBound) {
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 330 int x_diff = 0; local
334 x_diff = mouse.x() - (left + margin);
338 x_diff = mouse.x() - (right - margin);
341 x = left + x_diff;
365 if (x_diff != 0 || y_diff != 0)

Completed in 131 milliseconds