/external/webkit/Source/WebCore/platform/ |
ScrollAnimator.cpp | 92 float deltaY = verticalScrollbar ? e.deltaY() : 0; 98 || (deltaY < 0 && maxForwardScrollDelta.height() > 0) 99 || (deltaY > 0 && maxBackwardScrollDelta.height() > 0)) { 103 bool negative = deltaY < 0; 104 deltaY = max(max(static_cast<float>(m_scrollableArea->visibleHeight()) * Scrollbar::minFractionToStepWhenPaging(), static_cast<float>(m_scrollableArea->visibleHeight() - Scrollbar::maxOverlapBetweenPages())), 1.0f); 106 deltaY = -deltaY; 109 if (deltaY) 110 scroll(VerticalScrollbar, ScrollByPixel, verticalScrollbar->pixelStep(), -deltaY); [all...] |
PlatformWheelEvent.h | 113 float deltaY() const { return m_deltaY; }
|
/external/webkit/Source/WebCore/svg/ |
SVGRadialGradientElement.cpp | 236 float deltaY = focalPoint.y() - centerPoint.y(); 242 if (sqrt(deltaX * deltaX + deltaY * deltaY) > radiusMax) { 243 float angle = atan2f(deltaY, deltaX); 246 deltaY = sinf(angle) * radiusMax; 247 focalPoint = FloatPoint(deltaX + centerPoint.x(), deltaY + centerPoint.y());
|
/external/webkit/Source/WebKit2/Shared/qt/ |
WebEventFactoryQt.cpp | 104 float deltaY = delta.y(); 109 return WebMouseEvent(type, button, event->pos().toPoint(), event->screenPos(), deltaX, deltaY, 0.0f, clickCount, modifiers, timestamp); 115 float deltaY = 0; 131 deltaY = (fullTick) ? e->delta() / 120.0f : e->delta(); 132 wheelTicksY = deltaY; 140 deltaY *= (fullTick) ? QApplication::wheelScrollLines() * cDefaultQtScrollStep : 1; 143 return WebWheelEvent(WebEvent::Wheel, e->pos().toPoint(), e->screenPos(), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
lbxdeltastr.h | 77 INT8 deltaY; 85 INT8 deltaY;
|
/external/webkit/Source/WebKit2/Shared/win/ |
WebEventFactory.cpp | 413 int deltaY = 0; 429 deltaY = 0; 433 deltaY = delta; 439 deltaY *= static_cast<float>(verticalMultiplier) * cScrollbarPixelsPerLine; 443 return WebWheelEvent(WebEvent::Wheel, position, globalPosition, FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
|
/frameworks/base/services/java/com/android/server/wm/ |
Watermark.java | 149 int deltaY = mDeltaY; 167 y += deltaY;
|
/frameworks/base/test-runner/src/android/test/ |
TouchUtils.java | 539 * @param deltaY Amount to drag vertically in pixels 549 int deltaX, int deltaY) { 550 return dragViewBy((InstrumentationTestCase) test, v, gravity, deltaX, deltaY); 561 * @param deltaY Amount to drag vertically in pixels 571 int deltaY) { 579 int distance = (int) Math.sqrt(deltaX * deltaX + deltaY * deltaY); 581 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance); 630 int deltaY = fromY - toY; 632 int distance = (int)Math.sqrt(deltaX * deltaX + deltaY * deltaY) [all...] |
/external/opencv/cv/src/ |
cvoptflowlk.cpp | 501 float deltaY; 505 deltaY = -(A1B2 * C2 - A2 * C1); 508 velocityY[j] = deltaY * Idelta;
|
cvundistort.cpp | 465 double deltaY = k[2]*(r2 + 2*y*y) + 2*k[3]*x*y; 467 y = (y0 - deltaY)*icdist;
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
GLUtils.cpp | 102 float deltaY = top - bottom; 104 if (!deltaX || !deltaY || !deltaZ) 109 ortho.setM22(2.0f / deltaY); 110 ortho.setM42(-(top + bottom) / deltaY);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebInputEvent.h | 283 float deltaY; 296 , deltaY(0.0f)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ResizeGesture.java | 152 int deltaY = p.y - start.y; 154 if (deltaX == 0 && deltaY == 0) { 162 int newH = Math.abs(b.h + (direction.isTop() ? -deltaY : deltaY)); 165 deltaY = (int) (deltaX / aspectRatio); 167 deltaX = (int) (deltaY * aspectRatio); 199 int ny1 = b.y + deltaY; 210 int ny2 = b.y + b.h + deltaY;
|
GestureManager.java | 818 int deltaY = (int) (scale * (boundingBox.y - p.y)); 820 e.offsetY = -deltaY; [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerRendererChromium.cpp | 65 float deltaY = top - bottom; 67 if (!deltaX || !deltaY) 71 ortho.setM22(2.0f / deltaY); 72 ortho.setM42(-(top + bottom) / deltaY); [all...] |
/frameworks/base/core/java/android/gesture/ |
GestureUtils.java | 295 float deltaY = currentPointY - lstPointY; 296 float distance = (float) Math.sqrt(deltaX * deltaX + deltaY * deltaY); 300 float ny = lstPointY + ratio * deltaY;
|
/frameworks/base/core/java/android/view/ |
GestureDetector.java | 537 final int deltaY = (int) (y - mCurrentDownEvent.getY()); 538 int distance = (deltaX * deltaX) + (deltaY * deltaY); 631 int deltaY = (int) firstDown.getY() - (int) secondDown.getY(); 632 return (deltaX * deltaX + deltaY * deltaY < mDoubleTapSlopSquare);
|
/frameworks/base/media/java/android/media/ |
ThumbnailUtils.java | 360 int deltaY = source.getHeight() - targetHeight; 361 if (!scaleUp && (deltaX < 0 || deltaY < 0)) { 373 int deltaYHalf = Math.max(0, deltaY / 2);
|
/packages/apps/Gallery/src/com/android/camera/ |
ImageViewTouchBase.java | 202 float deltaX = 0, deltaY = 0; 207 deltaY = (viewHeight - height) / 2 - rect.top; 209 deltaY = -rect.top; 211 deltaY = getHeight() - rect.bottom; 226 postTranslate(deltaX, deltaY);
|
Util.java | 157 int deltaY = source.getHeight() - targetHeight; 158 if (!scaleUp && (deltaX < 0 || deltaY < 0)) { 170 int deltaYHalf = Math.max(0, deltaY / 2);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ImageViewTouchBase.java | 490 float deltaX = 0, deltaY = 0; 495 deltaY = (viewHeight - height) / 2 - rect.top; 497 deltaY = -rect.top; 499 deltaY = getHeight() - rect.bottom; 514 mSuppMatrix.postTranslate(deltaX, deltaY);
|
/external/webkit/Source/WebCore/rendering/ |
RenderLayerBacking.cpp | 207 int deltaY = 0; 208 m_owningLayer->convertToLayerCoords(rootLayer, deltaX, deltaY); 209 clippingBounds.move(-deltaX, -deltaY); 359 int deltaX = 0, deltaY = 0; 360 m_owningLayer->convertToLayerCoords(compAncestor, deltaX, deltaY); 361 relativeCompositingBounds.move(deltaX, deltaY); 381 // backgroundRect is relative to compAncestor, so subtract deltaX/deltaY to get back to local coords. 382 IntSize rendererOffset(parentClipRect.location().x() - deltaX, parentClipRect.location().y() - deltaY); 429 IntRect layerBounds = IntRect(deltaX, deltaY, borderBox.width(), borderBox.height()); [all...] |
/external/webkit/Source/WebKit/android/jni/ |
PictureSet.cpp | 410 int deltaY = j * mBucketSizeY; 412 int top = (j == firstTileY) ? rect.fTop - deltaY : 0; 417 addToBucket(bucket, deltaX, deltaY, newRect); [all...] |
/external/webkit/Source/WebKit2/Shared/ |
WebEvent.h | 123 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp); 125 WebMouseEvent(Type, Button, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers, double timestamp, bool didActivateWebView); 132 float deltaY() const { return m_deltaY; }
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Blend.cpp | [all...] |