/external/srec/tools/grxmlcompile/ |
D | sub_grph.cpp | 369 void SubGraph::RemoveRuleStarts (int startPoint, int endPoint) in RemoveRuleStarts() argument 371 if (startPoint == -1 && endPoint == -1) { in RemoveRuleStarts() 372 startPoint= startId; in RemoveRuleStarts() 382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex); in RemoveRuleStarts() 390 void SubGraph::RemoveRuleEnds (int startPoint, int endPoint) in RemoveRuleEnds() argument 392 if (startPoint == -1 && endPoint == -1) { in RemoveRuleEnds() 393 startPoint= startId; in RemoveRuleEnds() 403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex); in RemoveRuleEnds() 411 void SubGraph::RemoveNulls (int startPoint, int endPoint) in RemoveNulls() argument 413 if (startPoint == -1 && endPoint == -1) { in RemoveNulls() [all …]
|
D | 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/webkit/WebCore/platform/graphics/wince/ |
D | PlatformPathWince.cpp | 215 const PathPoint& startPoint = poly.last(); in addArcPoints() local 216 double curAngle = startPoint - data.m_center; in addArcPoints() 220 if (endAngle <= curAngle || startPoint == data.m_end) in addArcPoints() 224 if (endAngle >= curAngle || startPoint == data.m_end) in addArcPoints() 419 PathPoint startPoint; in inflateRectToContainMe() local 420 startPoint = lastPoint; in inflateRectToContainMe() 423 std::swap(startPoint, endPoint); in inflateRectToContainMe() 425 int q0 = quadrant(startPoint, data.m_center); in inflateRectToContainMe() 430 … if (startPoint.m_x == endPoint.m_x || isQuadrantOnBottom(q0) != startPoint.m_x > endPoint.m_x) { in inflateRectToContainMe() 443 inflateRectToContainPoint(r, startPoint.m_x, startPoint.m_y); in inflateRectToContainMe() [all …]
|
D | GraphicsContextWince.cpp | 1642 FloatPoint startPoint(point.x(), point.y() - fontData->ascent()); in drawText() local 1643 FloatPoint trPoint = m_data->mapPoint(startPoint); in drawText() 1684 trShadowPoint = m_data->mapPoint(startPoint + shadowSize); in drawText()
|
/external/webkit/WebCore/platform/graphics/ |
D | FontFastPath.cpp | 286 FloatPoint startPoint(startX, point.y()); in drawSimpleText() local 287 drawGlyphBuffer(context, glyphBuffer, run, startPoint); in drawSimpleText() 295 FloatPoint startPoint(point); in drawGlyphBuffer() local 296 float nextX = startPoint.x(); in drawGlyphBuffer() 303 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer() 308 startPoint.setX(nextX); in drawGlyphBuffer() 314 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer()
|
/external/webkit/WebCore/svg/ |
D | SVGLinearGradientElement.cpp | 109 FloatPoint startPoint; in buildGradient() local 112 … startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage()); in buildGradient() 115 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this)); in buildGradient() 119 RefPtr<Gradient> gradient = Gradient::create(startPoint, endPoint); in buildGradient() 142 linearGradient->setGradientStart(startPoint); in buildGradient()
|
/external/webkit/JavaScriptCore/runtime/ |
D | ExceptionHelpers.cpp | 134 int startPoint = divotPoint - (startOffset ? startOffset - 4 : 0); // -4 for "new " in createNotAConstructorError() local 136 while (startPoint < divotPoint && isStrWhiteSpace(data[startPoint])) in createNotAConstructorError() 137 startPoint++; in createNotAConstructorError() 139 …UString errorMessage = createErrorMessage(exec, codeBlock, line, startPoint, divotPoint, value, "n… in createNotAConstructorError()
|
/external/webkit/WebCore/platform/graphics/filters/ |
D | FilterEffect.cpp | 68 …FloatPoint startPoint = FloatPoint(srcRect.x() - scaledSubRegion().x(), srcRect.y() - scaledSubReg… in calculateDrawingRect() local 69 FloatRect drawingRect = FloatRect(startPoint, srcRect.size()); in calculateDrawingRect()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | FontComplexTextMac.cpp | 82 FloatPoint startPoint(startX, point.y()); in drawComplexText() local 83 drawGlyphBuffer(context, glyphBuffer, run, startPoint); in drawComplexText()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | FontWin.cpp | 88 FloatPoint startPoint(startX, point.y()); in drawComplexText() local 89 drawGlyphBuffer(context, glyphBuffer, run, startPoint); in drawComplexText()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | FontWx.cpp | 116 FloatPoint startPoint(startX, point.y()); in drawComplexText() local 117 drawGlyphBuffer(context, glyphBuffer, run, startPoint); in drawComplexText()
|
/external/webkit/WebCore/rendering/ |
D | InlineTextBox.cpp | 761 IntPoint startPoint(tx + m_x, ty + selectionTop()); in paintSpellingOrGrammarMarker() local 765 …IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, startPoint, h, startPosition,… in paintSpellingOrGrammarMarker() 766 start = markerRect.x() - startPoint.x(); in paintSpellingOrGrammarMarker() 836 IntPoint startPoint = IntPoint(m_x, y); in computeRectForReplacementMarker() local 839 … IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, startPoint, h, sPos, ePos)); in computeRectForReplacementMarker()
|
D | RenderObject.cpp | 492 RenderLayer* RenderObject::findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, in findNextLayer() argument 507 for (RenderObject* curr = startPoint ? startPoint->nextSibling() : firstChild(); in findNextLayer()
|
D | RenderObject.h | 191 …RenderLayer* findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, bool checkParent = …
|