Searched defs:centerX (Results 1 - 21 of 21) sorted by last modified time

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient_gpu.cpp832 SkScalar centerX() const { return fInfo.fCenterEnd.fX; } function in class:CircleInside2PtConicalEffect
998 SkScalar centerX = data.centerX(); local
1004 if (fCachedCenterX != centerX || fCachedCenterY != centerY ||
1007 uman.set2f(fCenterUni, SkScalarToFloat(centerX), SkScalarToFloat(centerY));
1010 fCachedCenterX = centerX;
1045 SkScalar centerX() const { return fInfo.fCenterEnd.fX; } function in class:CircleOutside2PtConicalEffect
1249 SkScalar centerX = data.centerX(); local
1256 if (fCachedCenterX != centerX || fCachedCenter
[all...]
/external/skia/include/core/
H A DSkRect.h87 int centerX() const { return (fRight + fLeft) >> 1; } function in struct:SkIRect
475 SkScalar centerX() const { return SkScalarHalf(fLeft + fRight); }
/external/replicaisland/src/com/replica/replicaisland/
H A DBackgroundCollisionComponent.java360 int bottom, int top, float centerX, Vector2 hitPoint, Vector2 hitNormal,
367 mTestPointStart.x = (centerX);
359 sweepVertical(Vector2 previousPosition, Vector2 currentPosition, Vector2 delta, int bottom, int top, float centerX, Vector2 hitPoint, Vector2 hitNormal, GameObject parentObject) argument
H A DOrbitalMagnetComponent.java67 private void applyMagnetism(GameObject target, float centerX, float centerY, float timeDelta) { argument
68 mCenter.set(centerX, centerY);
H A DSphereCollisionVolume.java27 public SphereCollisionVolume(float radius, float centerX, float centerY) { argument
30 mCenter = new Vector2(centerX, centerY);
35 public SphereCollisionVolume(float radius, float centerX, float centerY, int hit) { argument
38 mCenter = new Vector2(centerX, centerY);
109 final float centerX = deltaX / 2.0f;
113 mWorkspaceVector2.x += centerX;
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCanvas.java170 public float centerX; field in class:ShadowCanvas.CirclePaintHistoryEvent
174 private CirclePaintHistoryEvent(float centerX, float centerY, float radius, Paint paint) { argument
176 this.centerX = centerX;
/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp308 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols; local
313 float fx = centerX + 0.9f * deFloatCos((float)i*2.0f*DE_PI / (float)numVertices) / (float)numCols;
375 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols; local
378 m_positions.push_back(centerX);
385 float fx = centerX + 0.9f * deFloatCos((float)i*2.0f*DE_PI / (float)numArcVertices) / (float)numCols;
/external/chromium_org/third_party/skia/include/core/
H A DSkRect.h87 int centerX() const { return (fRight + fLeft) >> 1; } function in struct:SkIRect
473 SkScalar centerX() const { return SkScalarHalf(fLeft + fRight); }
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient_gpu.cpp841 SkScalar centerX() const { return fInfo.fCenterEnd.fX; } function in class:CircleInside2PtConicalEffect
1013 SkScalar centerX = data.centerX(); local
1019 if (fCachedCenterX != centerX || fCachedCenterY != centerY ||
1022 pdman.set2f(fCenterUni, SkScalarToFloat(centerX), SkScalarToFloat(centerY));
1025 fCachedCenterX = centerX;
1058 SkScalar centerX() const { return fInfo.fCenterEnd.fX; } function in class:CircleOutside2PtConicalEffect
1270 SkScalar centerX = data.centerX(); local
1277 if (fCachedCenterX != centerX || fCachedCenter
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrDashingEffect.cpp558 SkScalar centerX = dce.getCenterX(); local
560 if (radius != fPrevRadius || centerX != fPrevCenterX || intervalLength != fPrevIntervalLength) {
561 pdman.set3f(fParamUniform, radius - 0.5f, centerX, intervalLength);
563 fPrevCenterX = centerX;
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DBasicShapeFunctions.cpp78 circleValue->setCenterX(valueForCenterCoordinate(pool, style, circle->centerX(), HORIZONTAL));
88 ellipseValue->setCenterX(valueForCenterCoordinate(pool, style, ellipse->centerX(), HORIZONTAL));
215 circle->setCenterX(convertToCenterCoordinate(state, circleValue->centerX()));
226 ellipse->setCenterX(convertToCenterCoordinate(state, ellipseValue->centerX()));
270 FloatPoint floatPointForCenterCoordinate(const BasicShapeCenterCoordinate& centerX, const BasicShapeCenterCoordinate& centerY, FloatSize boxSize) argument
272 float x = floatValueForLength(centerX.computedLength(), boxSize.width());
H A DCSSBasicShapes.cpp44 static String buildCircleString(const String& radius, const String& centerX, const String& centerY, const String& box) argument
53 if (!centerX.isNull() || !centerY.isNull()) {
58 result.append(centerX);
147 static String buildEllipseString(const String& radiusX, const String& radiusY, const String& centerX, const String& centerY, const String& box) argument
165 if (!centerX.isNull() || !centerY.isNull()) {
170 result.append(centerX);
H A DCSSBasicShapes.h73 CSSPrimitiveValue* centerX() const { return m_centerX.get(); } function in class:blink::FINAL
77 void setCenterX(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> centerX) { m_centerX = centerX; } argument
99 CSSPrimitiveValue* centerX() const { return m_centerX.get(); } function in class:blink::FINAL
104 void setCenterX(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> centerX) { m_centerX = centerX; } argument
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp4166 // where position defines centerX and centerY using a CSS <position> data type.
4186 RefPtrWillBeRawPtr<CSSValue> centerX = nullptr; local
4188 parseFillPosition(args, centerX, centerY);
4189 if (centerX && centerY && !args->current()) {
4190 ASSERT(centerX->isPrimitiveValue());
4192 shape->setCenterX(toCSSPrimitiveValue(centerX.get()));
4214 // where position defines centerX and centerY using a CSS <position> data type.
4238 RefPtrWillBeRawPtr<CSSValue> centerX = nullptr;
4240 parseFillPosition(args, centerX, centerY);
4241 if (!centerX || !center
6536 RefPtrWillBeRawPtr<CSSValue> centerX = nullptr; local
6797 RefPtrWillBeRawPtr<CSSValue> centerX = nullptr; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DImagePainter.cpp113 LayoutUnit centerX = (usableWidth - imageSize.width()) / 2; local
114 if (centerX < 0)
115 centerX = 0;
119 imageOffset = LayoutSize(leftBorder + leftPad + centerX + borderWidth, topBorder + topPad + centerY + borderWidth);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBasicShapes.h156 const BasicShapeCenterCoordinate& centerX() const { return m_centerX; } function in class:blink::FINAL
161 void setCenterX(BasicShapeCenterCoordinate centerX) { m_centerX = centerX; } argument
184 const BasicShapeCenterCoordinate& centerX() const { return m_centerX; } function in class:blink::FINAL
190 void setCenterX(BasicShapeCenterCoordinate centerX) { m_centerX = centerX; } argument
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp1329 PassRefPtrWillBeRawPtr<StaticNodeList> Internals::nodesFromRect(Document* document, int centerX, int centerY, unsigned topPadding, unsigned rightPadding, argument
1346 LayoutPoint point = roundedLayoutPoint(FloatPoint(centerX * zoomFactor + frameView->scrollX(), centerY * zoomFactor + frameView->scrollY()));
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 1695 milliseconds