Searched refs:dx (Results 1 - 25 of 1151) sorted by path

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java546 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
548 if (dx.isZero())
560 ECFieldElement gamma = dy.divide(dx);
623 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2);
624 if (dx.isZero())
633 ECFieldElement C = dx.square();
639 Z3 = dx;
906 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
908 if (dx.isZero())
925 ECFieldElement X = dx
[all...]
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Druler_track.js115 var dx = x2 - x1;
117 var len = Math.sqrt(dx * dx + dy * dy);
119 var bx = x1 + perc * dx;
121 var ux = dx / len;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwScrollOffsetManager.java309 private static int computeDurationInMilliSec(int dx, int dy) { argument
310 int distance = Math.max(Math.abs(dx), Math.abs(dy));
322 int dx = x - scrollX;
325 if (dx == 0 && dy == 0)
328 mScroller.startScroll(scrollX, scrollY, dx, dy, computeDurationInMilliSec(dx, dy));
/external/chromium_org/ash/wm/dock/
H A Ddocked_window_layout_manager_unittest.cc123 int dx, int dy) {
125 window->bounds().origin() + gfx::Vector2d(dx, dy);
132 void DragMove(int dx, int dy) { argument
133 resizer_->Drag(initial_location_in_parent_ + gfx::Vector2d(dx, dy), 0);
157 // horizontally to the edge with an added offset from the edge of |dx|.
158 void DragRelativeToEdge(DockedEdge edge, aura::Window* window, int dx) { argument
162 dx,
174 int dx,
177 DragVerticallyAndRelativeToEdge(edge, window, dx, y - initial_bounds.y());
181 // horizontally to the edge with an added offset from the edge of |dx|
122 DragStartAtOffsetFromwindowOrigin(aura::Window* window, int dx, int dy) argument
172 DragToVerticalPositionRelativeToEdge(DockedEdge edge, aura::Window* window, int dx, int y) argument
182 DragVerticallyAndRelativeToEdge(DockedEdge edge, aura::Window* window, int dx, int dy) argument
[all...]
H A Ddocked_window_resizer_unittest.cc131 int dx, int dy) {
133 window->bounds().origin() + gfx::Vector2d(dx, dy);
141 int dx, int dy,
144 window->bounds().origin() + gfx::Vector2d(dx, dy);
151 void DragMove(int dx, int dy) { argument
152 resizer_->Drag(initial_location_in_parent_ + gfx::Vector2d(dx, dy), 0);
175 // horizontally to the edge with an added offset from the edge of |dx|.
178 int dx) {
182 dx,
196 int dx,
130 DragStartAtOffsetFromWindowOrigin(aura::Window* window, int dx, int dy) argument
140 ResizeStartAtOffsetFromWindowOrigin(aura::Window* window, int dx, int dy, int window_component) argument
176 DragRelativeToEdge(DockedEdge edge, aura::Window* window, int dx) argument
194 DragToVerticalPositionRelativeToEdge(DockedEdge edge, aura::Window* window, int dx, int y) argument
207 DragVerticallyAndRelativeToEdge(DockedEdge edge, aura::Window* window, int dx, int dy, int grab_x, int grab_y) argument
[all...]
/external/chromium_org/ash/wm/panels/
H A Dpanel_window_resizer_unittest.cc79 void DragMove(int dx, int dy) { argument
80 resizer_->Drag(CalculateDragPoint(*resizer_, dx, dy), 0);
94 // dragging out by the vector (dx, dy).
95 void DetachReattachTest(aura::Window* window, int dx, int dy) { argument
105 DragMove(dx * 5, dy * 5);
110 DragMove(dx * 100, dy * 100);
111 EXPECT_EQ(initial_bounds.x() + dx * 100, window->GetBoundsInScreen().x());
123 DragMove(dx * -95, dy * -95);
147 void DragAlongShelfReorder(int dx, int dy) { argument
161 DragMove(400 * dx, 40
[all...]
/external/chromium_org/ash/wm/
H A Dtoplevel_window_event_handler_unittest.cc82 void DragFromCenterBy(aura::Window* window, int dx, int dy) { argument
84 generator.DragMouseBy(dx, dy);
87 void TouchDragFromCenterBy(aura::Window* window, int dx, int dy) { argument
89 generator.PressMoveAndReleaseTouchBy(dx, dy);
/external/chromium_org/athena/wm/
H A Dwindow_manager_impl.cc368 int dx = window->bounds().x() - next_window->bounds().x(); local
370 dx -= (next_window->bounds().width() - window->bounds().width()) / 2;
372 if (dx) {
374 transform.Translate(dx, 0);
/external/chromium_org/cc/animation/
H A Dtransform_operations_unittest.cc207 SkMScalar dx = 1; local
211 expected_matrix.Translate3d(dx, dy, dz);
222 SkMScalar dx = 1; local
228 operations.AppendTranslate(dx, dy, dz);
234 expected_translate_matrix.Translate3d(dx, dy, dz);
/external/chromium_org/cc/resources/
H A Dlayer_quad.h41 void move_x(float dx) { x_ += dx; } argument
44 void move(float dx, float dy, float dz) { argument
45 x_ += dx;
83 void InflateX(float dx) { argument
84 left_.move_z(dx);
85 right_.move_z(dx);
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_render_widget_host_view_mac_delegate_browsertest.cc68 void SendWheelEvent(int dx, int dy, blink::WebMouseWheelEvent::Phase phase) { argument
72 event.deltaX = dx;
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_py_tests.py444 dx = 3
449 math.sqrt(dx * dx + dy * dy) * flickTouchEventsPerSecond / speed)
468 self._driver.TouchFlick(div, dx, dy, speed)
/external/chromium_org/content/browser/android/
H A Dcontent_view_core_impl.cc995 jfloat x, jfloat y, jfloat dx, jfloat dy) {
998 event.data.scrollUpdate.deltaX = -dx / dpi_scale();
994 ScrollBy(JNIEnv* env, jobject obj, jlong time_ms, jfloat x, jfloat y, jfloat dx, jfloat dy) argument
H A Dcontent_view_core_impl.h128 jfloat x, jfloat y, jfloat dx, jfloat dy);
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_view_aura_browsertest.cc938 const int dx = 20; local
964 touch.MovePoint(0, bounds.x() + 20 + 1 * dx, bounds.y() + 100);
980 touch.MovePoint(0, bounds.x() + 20 + i * dx, bounds.y() + 100);
986 SyntheticWebGestureEventBuilder::BuildScrollUpdate(dx, 5, 0);
/external/chromium_org/content/common/input/
H A Dsynthetic_web_input_event_builders.cc57 WebMouseWheelEvent SyntheticWebMouseWheelEventBuilder::Build(float dx, argument
63 result.deltaX = dx;
65 if (dx)
66 result.wheelTicksX = dx > 0.0f ? 1.0f : -1.0f;
111 float dx,
116 result.data.scrollUpdate.deltaX = dx;
110 BuildScrollUpdate( float dx, float dy, int modifiers) argument
H A Dsynthetic_web_input_event_builders.h29 static blink::WebMouseWheelEvent Build(float dx,
46 static blink::WebGestureEvent BuildScrollUpdate(float dx,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java1640 * @param dx The X offset in pixels to shift touch events.
1643 public void setCurrentMotionEventOffsets(float dx, float dy) { argument
1644 mCurrentTouchOffsetX = dx;
/external/chromium_org/content/renderer/input/
H A Dinput_handler_proxy.cc71 gfx::Vector2dF dx(scroll_update_event.data.scrollUpdate.deltaX,
73 if (gfx::DotProduct(current_fling_velocity, dx) <= 0)
82 gfx::ScaleVector2d(dx, 1. / time_since_last_boost_event);
656 "dx",
/external/chromium_org/content/renderer/pepper/
H A Dfullscreen_container.h27 virtual void ScrollRect(int dx, int dy, const blink::WebRect&) = 0;
H A Dpepper_graphics_2d_host.cc470 int32 dx = amount.x;
472 if (dx <= -image_data_->width() || dx >= image_data_->width() ||
476 operation.scroll_dx = dx;
734 int dx,
737 gfx::ScrollCanvas(image_data_->GetCanvas(), clip, gfx::Vector2d(dx, dy));
733 ExecuteScroll(const gfx::Rect& clip, int dx, int dy, gfx::Rect* invalidated_rect) argument
H A Dpepper_graphics_2d_host.h135 int dx,
H A Dpepper_plugin_instance_impl.cc779 void PepperPluginInstanceImpl::ScrollRect(int dx, argument
787 fullscreen_container_->ScrollRect(dx, dy, rect);
H A Dpepper_plugin_instance_impl.h182 void ScrollRect(int dx, int dy, const gfx::Rect& rect);
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.cc302 int dx, int dy, const blink::WebRect& rect) {
301 ScrollRect( int dx, int dy, const blink::WebRect& rect) argument

Completed in 4859 milliseconds

1234567891011>>