Searched defs:startPoint (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebCore/platform/graphics/filters/
H A DFilterEffect.cpp68 FloatPoint startPoint = FloatPoint(srcRect.x() - scaledSubRegion().x(), srcRect.y() - scaledSubRegion().y()); local
69 FloatRect drawingRect = FloatRect(startPoint, srcRect.size());
/external/webkit/WebCore/svg/
H A DSVGLinearGradientElement.cpp109 FloatPoint startPoint; local
112 startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage());
115 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this));
119 RefPtr<Gradient> gradient = Gradient::create(startPoint, endPoint);
142 linearGradient->setGradientStart(startPoint);
/external/webkit/JavaScriptCore/runtime/
H A DExceptionHelpers.cpp134 int startPoint = divotPoint - (startOffset ? startOffset - 4 : 0); // -4 for "new " local
136 while (startPoint < divotPoint && isStrWhiteSpace(data[startPoint]))
137 startPoint++;
139 UString errorMessage = createErrorMessage(exec, codeBlock, line, startPoint, divotPoint, value, "not a constructor");
/external/srec/tools/grxmlcompile/
H A Dsub_grph.cpp369 void SubGraph::RemoveRuleStarts (int startPoint, int endPoint) argument
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) argument
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) argument
413 if (startPoint
446 RemoveForwardConnections(int startPoint, int endPoint) argument
518 RemoveBackwardConnections(int startPoint, int endPoint) argument
589 RemoveUnreachedConnections(int startPoint, int endPoint) argument
609 RemoveUnreachedConnectionsDebug(int startPoint, int endPoint) argument
754 RemoveTagConnections(int startPoint, int endPoint) argument
[all...]
/external/webkit/WebCore/platform/graphics/wince/
H A DPlatformPathWince.cpp215 const PathPoint& startPoint = poly.last(); local
216 double curAngle = startPoint - data.m_center;
220 if (endAngle <= curAngle || startPoint == data.m_end)
224 if (endAngle >= curAngle || startPoint == data.m_end)
419 PathPoint startPoint; local
420 startPoint = lastPoint;
423 std::swap(startPoint, endPoint);
425 int q0 = quadrant(startPoint, data.m_center);
430 if (startPoint.m_x == endPoint.m_x || isQuadrantOnBottom(q0) != startPoint
677 PathPoint startPoint; local
[all...]
/external/webkit/WebCore/rendering/
H A DInlineTextBox.cpp761 IntPoint startPoint(tx + m_x, ty + selectionTop());
765 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, startPoint, h, startPosition, endPosition));
766 start = markerRect.x() - startPoint.x();
836 IntPoint startPoint = IntPoint(m_x, y); local
839 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, startPoint, h, sPos, ePos));
H A DRenderObject.cpp492 RenderLayer* RenderObject::findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, argument
507 for (RenderObject* curr = startPoint ? startPoint->nextSibling() : firstChild();

Completed in 129 milliseconds