Searched refs:startPoint (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceLinearGradient.cpp46 FloatPoint RenderSVGResourceLinearGradient::startPoint(const LinearGradientAttributes& attributes) const function in class:blink::RenderSVGResourceLinearGradient
58 gradientData->gradient = Gradient::create(startPoint(m_attributes), endPoint(m_attributes));
H A DRenderSVGResourceLinearGradient.h46 FloatPoint startPoint(const LinearGradientAttributes&) const;
H A DSVGRenderTreeAsText.cpp557 ts << " [start=" << gradient->startPoint(attributes) << "] [end=" << gradient->endPoint(attributes) << "]\n";
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java138 AnnotationEndpoint startPoint = annotatations.get(cursor);
139 if (startPoint == null) {
154 AnnotationItem existingRangeAnnotation = startPoint.rangeAnnotation;
201 // If startPoint is null, we need to create a new one and add it to annotations. Otherwise, we just need to add
204 if (startPoint == null) {
205 startPoint = new AnnotationEndpoint();
206 annotatations.put(cursor, startPoint);
209 startPoint.pointAnnotations.add(new AnnotationItem(indentLevel, formattedMsg));
211 startPoint.rangeAnnotation = new AnnotationItem(indentLevel, formattedMsg);
/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...]
H A Dsub_grph.h171 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/
H A DCollisionSystem.java98 * @param startPoint The starting point for the ray in world units.
109 public boolean castRay(Vector2 startPoint, Vector2 endPoint, Vector2 movementDirection, argument
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, argument
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, fina argument
330 executeRay(Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, TileVisitor visitor) argument
431 testSegmentAgainstList(FixedSizeArray<LineSegment> segments, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, Vector2 movementDirection, GameObject excludeObject) argument
600 visit(CollisionTile tile, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, int tileX, int tileY) argument
647 visit(CollisionTile tile, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, int tileX, int tileY) argument
[all...]
H A DSolidSurfaceComponent.java75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) { argument
76 mStartPoints.add(startPoint);
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp67 void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) { argument
68 fPath->moveTo(startPoint.x, startPoint.y);
H A DSkDWriteGeometrySink.h37 virtual void STDMETHODCALLTYPE BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) SK_OVERRIDE;
/external/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp67 void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) { argument
68 fPath->moveTo(startPoint.x, startPoint.y);
H A DSkDWriteGeometrySink.h37 virtual void STDMETHODCALLTYPE BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) SK_OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.cpp723 FloatPoint startPoint(point.x() + initialAdvance, point.y());
724 return drawGlyphBuffer(context, runInfo, glyphBuffer, startPoint);
742 FloatPoint startPoint(point);
743 FloatPoint nextPoint = startPoint + glyphBuffer.advanceAt(0);
758 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
761 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint, runInfo.bounds);
765 startPoint = nextPoint;
774 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
777 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint, runInfo.bounds);
813 FloatPoint startPoint(poin
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DFontComplexTextMac.cpp113 FloatPoint startPoint(startX, point.y());
114 return drawGlyphBuffer(context, runInfo, glyphBuffer, startPoint);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp235 LayoutPoint RenderBoxModelObject::adjustedPositionRelativeToOffsetParent(const LayoutPoint& startPoint) const
242 LayoutPoint referencePoint = startPoint;
285 // startPoint to adjustedPositionRelativeToOffsetParent.
292 // startPoint to adjustedPositionRelativeToOffsetParent.
H A DInlineTextBox.cpp979 FloatPoint startPoint(boxOrigin.x(), boxOrigin.y() - deltaY);
983 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, startPoint, selHeight, startPosition, endPosition));
984 start = markerRect.x() - startPoint.x();
H A DRenderObject.cpp538 RenderLayer* RenderObject::findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, argument
553 for (RenderObject* curr = startPoint ? startPoint->nextSibling() : slowFirstChild();
H A DRenderObject.h200 RenderLayer* findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, bool checkParent = true);
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp839 XPS_POINT startPoint; local
842 startPoint = xps_point(info.fPoint[0]);
848 startPoint = xps_point(info.fPoint[0], localMatrix);
865 &startPoint,
1124 XPS_POINT startPoint = xps_point(points[0]); variable
1127 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint, xpsQuad),
1340 XPS_POINT startPoint = xps_point(points[0]); local
1342 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint,
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp840 XPS_POINT startPoint; local
843 startPoint = xps_point(info.fPoint[0]);
849 startPoint = xps_point(info.fPoint[0], localMatrix);
866 &startPoint,
1125 XPS_POINT startPoint = xps_point(points[0]); variable
1128 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint, xpsQuad),
1341 XPS_POINT startPoint = xps_point(points[0]); local
1343 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint,
/external/opencv/cvaux/src/
H A Dcvepilines.cpp667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) argument
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
[all...]
/external/opencv/cvaux/include/
H A Dcvaux.h638 CVAPI(int) icvGetAngleLine( CvPoint2D64f startPoint, CvSize imageSize,CvPoint2D64f *point1,CvPoint2D64f *point2);
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c1821 Addr startPoint = forClient ? aspacem_cStart : aspacem_vStart; local
1909 i = find_nsegment_idx(startPoint);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp3724 WebPoint startPoint(rect.x, rect.y);
3726 VisiblePosition startVisiblePosition = frame->visiblePositionForWindowPoint(startPoint);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 498 milliseconds

12