HomeSort by relevance Sort by last modified time
    Searched refs:startPoint (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceLinearGradient.cpp 53 FloatPoint startPoint;
55 linearGradientElement->calculateStartEndPoints(m_attributes, startPoint, endPoint);
57 gradientData->gradient = Gradient::create(startPoint, endPoint);
SVGRenderTreeAsText.cpp 617 FloatPoint startPoint;
619 linearGradientElement->calculateStartEndPoints(attributes, startPoint, endPoint);
621 ts << " [start=" << startPoint << "] [end=" << endPoint << "]\n";
  /libcore/luni/src/main/java/java/math/
Primality.java 102 BigInt startPoint = ni.copy();
105 // Fix startPoint to "next odd number":
106 startPoint.addPositiveInt(BigInt.remainderByPositiveInt(ni, 2) + 1);
109 // j = startPoint.bitLength();
116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
134 probPrime.putCopy(startPoint);
141 startPoint.addPositiveInt(gapSize);
Conversion.java 273 int startPoint = currentChar + 1;
275 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
279 if (endPoint - startPoint >= 1) {
373 int startPoint = currentChar + 1;
375 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
379 if (endPoint - startPoint >= 1) {
  /external/webkit/Source/WebCore/svg/
SVGLinearGradientElement.h 37 void calculateStartEndPoints(const LinearGradientAttributes&, FloatPoint& startPoint, FloatPoint& endPoint);
SVGLinearGradientElement.cpp 200 void SVGLinearGradientElement::calculateStartEndPoints(const LinearGradientAttributes& attributes, FloatPoint& startPoint, FloatPoint& endPoint)
204 startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage());
207 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this));
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
Doodle.java 51 public Doodle(int color, PointF startPoint) {
53 normalizedPath.moveTo(startPoint.x, startPoint.y);
54 points.add(startPoint);
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 369 void SubGraph::RemoveRuleStarts (int startPoint, int endPoint)
371 if (startPoint == -1 && endPoint == -1) {
372 startPoint= startId;
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
390 void SubGraph::RemoveRuleEnds (int startPoint, int endPoint)
392 if (startPoint == -1 && endPoint == -1) {
393 startPoint= startId;
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
411 void SubGraph::RemoveNulls (int startPoint, int endPoint)
413 if (startPoint == -1 && endPoint == -1)
    [all...]
sub_grph.h 171 void RemoveUnreachedConnections (int startPoint, int endPoint);
172 void RemoveUnreachedConnectionsDebug (int startPoint, int endPoint);
173 void RemoveTagConnections (int startPoint, int endPoint);
237 void RemoveNulls (int startPoint, int endPoint);
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 98 * @param startPoint The starting point for the ray in world units.
109 public boolean castRay(Vector2 startPoint, Vector2 endPoint, Vector2 movementDirection,
117 executeRay(startPoint, endPoint, hitPoint, hitNormal, mTileSegmentTester) != -1) {
126 if (testSegmentAgainstList(mTemporarySegments, startPoint, endPoint, tempHitPoint,
131 final float firstCollisionDistance = startPoint.distance2(hitPoint);
132 if (firstCollisionDistance > startPoint.distance2(tempHitPoint)) {
235 public void addTemporarySurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal,
239 newSegment.set(startPoint, endPoint, normal);
270 * @param startPoint The starting point for the ray, in world space.
277 protected int executeStraigtRay(final Vector2 startPoint, final Vector2 endPoint,
    [all...]
SolidSurfaceComponent.java 75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) {
76 mStartPoints.add(startPoint);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 276 final int startPoint, final int endPoint, final boolean vcardType21) {
277 if (startPoint < 1 || startPoint > endPoint) {
278 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
297 callsCursor.moveToPosition(startPoint - 1);
300 if (startPoint == endPoint) {
315 if (startPoint == endPoint) {
336 public final int composeAndSendPhonebookVcards(Operation op, final int startPoint,
338 if (startPoint < 1 || startPoint > endPoint)
    [all...]
BluetoothPbapObexServer.java 570 int startPoint = listStartOffset;
571 int endPoint = startPoint + requestSize;
577 for (int j = startPoint; j < endPoint; j++) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.cpp 215 const PathPoint& startPoint = poly.last();
216 double curAngle = startPoint - data.m_center;
220 if (endAngle <= curAngle || startPoint == data.m_end)
224 if (endAngle >= curAngle || startPoint == data.m_end)
418 PathPoint startPoint;
419 startPoint = lastPoint;
422 std::swap(startPoint, endPoint);
424 int q0 = quadrant(startPoint, data.m_center);
429 if (startPoint.m_x == endPoint.m_x || isQuadrantOnBottom(q0) != startPoint.m_x > endPoint.m_x)
    [all...]
GraphicsContextWinCE.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 363 FloatPoint startPoint(startX, point.y());
364 drawGlyphBuffer(context, glyphBuffer, startPoint);
383 FloatPoint startPoint(point);
384 float nextX = startPoint.x();
391 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
396 startPoint.setX(nextX);
402 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
435 FloatPoint startPoint(point.x() + middleOfLastGlyph - offsetToMiddleOfGlyph(markFontData, markGlyph), point.y());
446 drawGlyphBuffer(context, markBuffer, startPoint);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 95 FloatPoint startPoint(startX, point.y());
96 drawGlyphBuffer(context, glyphBuffer, startPoint);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 110 FloatPoint startPoint(startX, point.y());
111 drawGlyphBuffer(context, glyphBuffer, startPoint);
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 150 FloatPoint startPoint(startX, point.y());
151 drawGlyphBuffer(context, glyphBuffer, startPoint);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 46 int startPoint;
141 mLines[i].startPoint = Integer.valueOf(idx[0]);
282 ThreeDPoint start = mRotatedPoints[l.startPoint];
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 256 FloatPoint startPoint = FloatPoint(point1.x() + v01.width() * rate,
279 startPoint.x(), startPoint.y(),
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 870 FloatPoint startPoint = origin;
885 startPoint.setY(startPoint.y() - 1);
892 drawLine(IntPoint(startPoint.x(), startPoint.y()), IntPoint(endPoint.x(), endPoint.y()));
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp     [all...]
RenderObject.cpp 498 RenderLayer* RenderObject::findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint,
513 for (RenderObject* curr = startPoint ? startPoint->nextSibling() : firstChild();
    [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp 667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2)
690 if( startPoint.x < 0 )
692 if( startPoint.y < 0)
697 else if( startPoint.y > imageSize.height-1 )
708 else if ( startPoint.x > imageSize.width-1 )
710 if( startPoint.y < 0 )
715 else if ( startPoint.y > imageSize.height-1 )
728 if( startPoint.y < 0 )
730 if( startPoint.x < imageSize.width/2 )
741 else if( startPoint.y > imageSize.height-1
    [all...]

Completed in 573 milliseconds

1 2