Searched defs:point (Results 151 - 175 of 224) sorted by relevance

123456789

/external/skia/tests/
H A DPictureTest.cpp478 SkPoint point = SkPoint::Make(10, 10); local
481 canvas->drawText("Q", 1, point.fX, point.fY, SkPaint());
488 canvas->drawPosText("Q", 1, &point, SkPaint());
495 canvas->drawPosTextH("Q", 1, &point.fX, point.fY, SkPaint());
506 canvas->drawTextOnPathHV("Q", 1, path, point.fX, point.fY, SkPaint());
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-linux.c6948 struct vki_iw_point* point; local
6949 point = &((struct vki_iwreq *)ARG3)->u.data;
6952 (Addr)point->pointer, point->length);
8359 One interpretation of this is that ARG3 really does point
9430 struct vki_iw_point* point; local
9431 point = &((struct vki_iwreq *)ARG3)->u.data;
9432 POST_MEM_WRITE((Addr)point->pointer, point->length);
10167 * possible to deduce the size of the array those pointers point t
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYGraphWidget.java323 * @param point
326 public Double getYVal(PointF point) { argument
327 return getYVal(point.y);
349 * @param point
352 public Double getXVal(PointF point) { argument
353 return getXVal(point.x);
786 // convert the label dimensions rect into floating-point:
838 protected void drawPoint(Canvas canvas, PointF point, Paint paint) { argument
839 canvas.drawPoint(point.x, point
1100 setCursorPosition(PointF point) argument
[all...]
H A DXYPlot.java269 * Checks whether the point is within the plot's graph area.
286 * @param point
289 public boolean containsPoint(PointF point) { argument
290 return containsPoint(point.x, point.y);
293 public void setCursorPosition(PointF point) { argument
294 getGraphWidget().setCursorPosition(point);
301 public Number getYVal(PointF point) { argument
302 return getGraphWidget().getYVal(point);
305 public Number getXVal(PointF point) { argument
[all...]
/external/bison/lib/
H A Dvasnprintf.c270 /* Determine the decimal-point character according to the current locale. */
276 const char *point; local
282 point = nl_langinfo (RADIXCHAR);
286 point = &pointbuf[1];
288 point = localeconv () -> decimal_point;
290 /* The decimal point is always a single byte: either '.' or ','. */
291 return (point[0] != '\0' ? point[0] : '.');
571 /* Use a single integer to floating-point conversion. */
1636 + 10; /* sign, decimal point et
[all...]
/external/boringssl/src/crypto/ec/
H A Dp256-64.c15 /* A 64-bit implementation of the NIST P-256 elliptic curve point
1099 * adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity).
1102 * are equal, (while not equal to the point at infinity). This case never
1103 * happens during single point multiplication, so there is no timing leak for
1280 /* Base point pre computation
1284 * Each contain various points on the curve, where each point is three field
1287 * For the base point table, z is usually 1 (0 for the point at infinity).
1289 * index | bits | point
1310 * locations when doing simple scalar multiplies against the base point,
1655 ec_GFp_nistp256_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRenderer.cpp40 typedef double ClipFloat; // floating point type used in clipping
245 // A point on line might be far away, causing clipping ratio (clipLineSegmentEnd) to become extremely close to 1.0
246 // even if the another point is not on the plane. Prevent clipping ratio from saturating by using points on line
253 // Find intersection point of line from v0 to v1 and the current plane. Avoid ratios near 1.0
799 // points are discarded if Z is not in range. (Wide) point clipping is done in the rasterization phase
1222 const pa::Point& point,
1232 // draw point as two triangles
1233 const float offset = point.v0->pointSize / 2.0f;
1234 const tcu::Vec4 w0 = tcu::Vec4(point.v0->position.x() + offset, point
1219 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Point& point, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fMultisampleTests.cpp100 static inline bool isInsideQuad (const IVec2& point, const IVec2& p0, const IVec2& p1, const IVec2& p2, const IVec2& p3) argument
102 int dot0 = (point.x()-p0.x()) * (p1.y()-p0.y()) + (point.y()-p0.y()) * (p0.x()-p1.x());
103 int dot1 = (point.x()-p1.x()) * (p2.y()-p1.y()) + (point.y()-p1.y()) * (p1.x()-p2.x());
104 int dot2 = (point.x()-p2.x()) * (p3.y()-p2.y()) + (point.y()-p2.y()) * (p2.x()-p3.x());
105 int dot3 = (point.x()-p3.x()) * (p0.y()-p3.y()) + (point.y()-p3.y()) * (p3.x()-p0.x());
/external/deqp/modules/gles3/functional/
H A Des3fMultisampleTests.cpp102 static inline bool isInsideQuad (const IVec2& point, const IVec2& p0, const IVec2& p1, const IVec2& p2, const IVec2& p3) argument
104 int dot0 = (point.x()-p0.x()) * (p1.y()-p0.y()) + (point.y()-p0.y()) * (p0.x()-p1.x());
105 int dot1 = (point.x()-p1.x()) * (p2.y()-p1.y()) + (point.y()-p1.y()) * (p1.x()-p2.x());
106 int dot2 = (point.x()-p2.x()) * (p3.y()-p2.y()) + (point.y()-p2.y()) * (p2.x()-p3.x());
107 int dot3 = (point.x()-p3.x()) * (p0.y()-p3.y()) + (point.y()-p3.y()) * (p3.x()-p0.x());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.appserver_3.1.400.v20100427.jar ... CoreException org.eclipse.core.runtime.IExtensionPoint point org.eclipse.core.runtime.IExtension[] extensions ...
/external/freetype/src/autofit/
H A Daflatin.c372 /* now compute min or max point indices and coordinates */
393 /* Avoid single-point contours since they are never rasterized. */
426 /* now check whether the point belongs to a straight or round */
583 /* no hit; adjust first point */
586 /* also adjust first and last on point */
696 /* `on' point is larger than upem/8 (value 8 is heuristic) */
698 /* - if either the first or the last point of the segment is */
699 /* an `off' point, the segment is round, otherwise it is */
1177 /* set up (u,v) in each point */
1180 AF_Point point local
1192 AF_Point point = hints->points; local
1206 AF_Point point = contour[0]; local
[all...]
H A Daflatin2.c236 /* now compute min or max point indices and coordinates */
257 /* Avoid single-point contours since they are never rasterized. */
291 /* now check whether the point belongs to a straight or round */
729 /* set up (u,v) in each point */
732 AF_Point point = hints->points; local
733 AF_Point limit = point + hints->num_points;
736 for ( ; point < limit; point++ )
738 point->u = point
744 AF_Point point = hints->points; local
758 AF_Point point = contour[0]; local
[all...]
/external/freetype/src/base/
H A Dftstroke.c119 /* basically a point; */
215 /* basically a point; */
293 FT_STROKE_TAG_ON = 1, /* on-curve point */
294 FT_STROKE_TAG_CUBIC = 2, /* cubic off-point */
309 FT_Int start; /* index of current sub-path start point */
361 /* copy the last point to the start of this sub-path, since */
424 /* move last point */
435 /* add one point */
537 /* compute start point */
562 /* compute end point */
659 FT_Vector* point = border->points; local
1249 FT_Vector point; local
1334 FT_Vector point; local
2091 FT_Vector* point; local
[all...]
/external/freetype/src/cff/
H A Dcffgload.c476 /* add a new point, do not check space */
488 FT_Vector* point = outline->points + outline->n_points; local
497 point->x = x >> 16;
498 point->y = y >> 16;
504 point->x = x >> 10;
505 point->y = y >> 10;
514 /* check space for a new on-curve point, then add it */
559 /* if a path was begun, add its first on-curve point */
595 /* We must not include the last point in the path if it */
596 /* is located on the first point
[all...]
/external/freetype/src/smooth/
H A Dftgrays.c59 /* use floating point values. */
1520 FT_Vector* point; local
1527 int first; /* index of first point in contour */
1528 char tag; /* current point's state */
1546 int last; /* index of last point in contour */
1566 point = outline->points + first;
1570 /* A contour cannot start with a cubic control point! */
1574 /* check first point to determine origin */
1577 /* first point is conic control. Yes, this happens. */
1580 /* start at last point i
[all...]
/external/libvorbis/lib/
H A Dpsy.c186 The point is that any inherent subsampling aliasing results in
921 float point = j>=limit-i ? postpoint : prepoint; local
923 if(r<point)
966 implement noise norm as it has been up to this point. Only
969 /* also-- the original point code only applied noise norm at > pointlimit */
1151 /* lossy (point) coupling */
1159 The boost problem by the combination of noise normalization and point stereo is eased.
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c1889 VGfloat *point, VGfloat *normal)
1904 line_point_at(line, at, point);
1919 line_point_at(line, at, point);
1933 point, normal);
1957 distance - length, point, normal);
1969 VGfloat distance, VGfloat *point, VGfloat *normal)
1981 point[0] = 0;
1982 point[1] = 0;
2006 point, normal))
2017 *startSegment and numSegments parameters), the visual ending point o
1884 path_point_segment(struct path_iter_data iter, struct path_iter_data prev_iter, VGfloat coords[8], VGfloat distance, VGfloat length, VGfloat *current_length, VGfloat *point, VGfloat *normal) argument
1968 path_point(struct path *p, VGint start_segment, VGint num_segments, VGfloat distance, VGfloat *point, VGfloat *normal) argument
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfsdk_mgr.cpp741 CPDF_Point point(pageX, pageY);
742 if (pAnnotMgr->Annot_OnHitTest(this, pSDKAnnot, point))
840 FX_BOOL CPDFSDK_PageView::OnLButtonDown(const CPDF_Point & point, FX_UINT nFlag) argument
844 CPDFSDK_Annot* pFXAnnot = GetFXWidgetAtPoint(point.x, point.y);
854 FX_BOOL bRet = pAnnotHandlerMgr->Annot_OnLButtonDown(this, pFXAnnot, nFlag,point);
865 FX_BOOL CPDFSDK_PageView::OnLButtonUp(const CPDF_Point & point, FX_UINT nFlag) argument
871 CPDFSDK_Annot* pFXAnnot = GetFXWidgetAtPoint(point.x, point.y);
877 bRet = pAnnotHandlerMgr->Annot_OnLButtonUp(this, pFocusAnnot, nFlag,point);
887 OnMouseMove(const CPDF_Point & point, int nFlag) argument
931 OnMouseWheel(double deltaX, double deltaY,const CPDF_Point& point, int nFlag) argument
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Edit.cpp493 FX_BOOL CPWL_Edit::OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag) argument
495 CPWL_Wnd::OnLButtonDown(point,nFlag);
497 if (HasFlag(PES_TEXTOVERFLOW) || ClientHitTest(point))
505 m_pEdit->OnMouseDown(point,IsSHIFTpressed(nFlag),IsCTRLpressed(nFlag));
511 FX_BOOL CPWL_Edit::OnLButtonDblClk(const CPDF_Point & point, FX_DWORD nFlag) argument
513 CPWL_Wnd::OnLButtonDblClk(point, nFlag);
515 if (HasFlag(PES_TEXTOVERFLOW) || ClientHitTest(point))
532 FX_BOOL CPWL_Edit::OnRButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
536 CPWL_Wnd::OnRButtonUp(point, nFlag);
538 if (!HasFlag(PES_TEXTOVERFLOW) && !ClientHitTest(point)) retur
1072 OnMouseWheel(short zDelta, const CPDF_Point & point, FX_DWORD nFlag) argument
[all...]
H A DPWL_Note.cpp394 FX_BOOL CPWL_Note_CloseBox::OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag) argument
401 return CPWL_Button::OnLButtonDown(point,nFlag);
404 FX_BOOL CPWL_Note_CloseBox::OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
411 return CPWL_Button::OnLButtonUp(point,nFlag);
530 IPWL_NoteItem* CPWL_Note_Contents::GetHitNoteItem(const CPDF_Point& point) argument
532 CPDF_Point pt = this->ParentToChild(point);
615 FX_BOOL CPWL_Note_Contents::OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag) argument
617 if (CPWL_Wnd::OnLButtonDown(point,nFlag)) return TRUE;
998 IPWL_NoteItem* CPWL_NoteItem::GetHitNoteItem(const CPDF_Point& point) argument
1000 CPDF_Point pt = this->ParentToChild(point);
1073 OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag) argument
1085 OnRButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
1134 PopupNoteItemMenu(const CPDF_Point& point) argument
1548 OnMouseWheel(short zDelta, const CPDF_Point & point, FX_DWORD nFlag) argument
1714 OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag) argument
1734 OnRButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
[all...]
H A DPWL_Wnd.cpp543 FX_BOOL CPWL_Wnd::mouse_method_name(const CPDF_Point & point, FX_DWORD nFlag)\
555 return pChild->mouse_method_name(pChild->ParentToChild(point),nFlag);\
567 if (pChild->WndHitTest(pChild->ParentToChild(point)))\
569 return pChild->mouse_method_name(pChild->ParentToChild(point),nFlag);\
573 if (this->WndHitTest(point))\
595 FX_BOOL CPWL_Wnd::OnMouseWheel(short zDelta, const CPDF_Point & point, FX_DWORD nFlag) argument
608 return pChild->OnMouseWheel(zDelta,pChild->ParentToChild(point), nFlag);
899 FX_BOOL CPWL_Wnd::WndHitTest(const CPDF_Point & point) const
901 return IsValid() && IsVisible() && GetWindowRect().Contains(point.x,point
1158 PWLtoWnd(const CPDF_Point& point, FX_INT32& x, FX_INT32& y) const argument
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftstroke.c119 /* basically a point; */
215 /* basically a point; */
293 FT_STROKE_TAG_ON = 1, /* on-curve point */
294 FT_STROKE_TAG_CUBIC = 2, /* cubic off-point */
309 FT_Int start; /* index of current sub-path start point */
361 /* copy the last point to the start of this sub-path, since */
424 /* move last point */
435 /* add one point */
537 /* compute start point */
562 /* compute end point */
659 FT_Vector* point = border->points; local
1250 FT_Vector point; local
1335 FT_Vector point; local
2095 FT_Vector* point; local
[all...]
/external/pdfium/third_party/freetype/src/cff/
H A Dcffgload.c476 /* add a new point, do not check space */
488 FT_Vector* point = outline->points + outline->n_points; local
497 point->x = x >> 16;
498 point->y = y >> 16;
504 point->x = x >> 10;
505 point->y = y >> 10;
514 /* check space for a new on-curve point, then add it */
559 /* if a path was begun, add its first on-curve point */
595 /* We must not include the last point in the path if it */
596 /* is located on the first point
[all...]
/external/pdfium/third_party/freetype/src/smooth/
H A Dftgrays.c59 /* use floating point values. */
1504 FT_Vector* point; local
1511 int first; /* index of first point in contour */
1512 char tag; /* current point's state */
1530 int last; /* index of last point in contour */
1550 point = outline->points + first;
1554 /* A contour cannot start with a cubic control point! */
1558 /* check first point to determine origin */
1561 /* first point is conic control. Yes, this happens. */
1564 /* start at last point i
[all...]
/external/skia/src/gpu/
H A DGrTessellatingPathRenderer.cpp40 * left-to-right based on the point where both edges are active (when both top vertices
42 * (shared), it's sorted based on the last point where both edges are active, so the
46 * line-sweep algorithm, but due to floating point inaccuracy, the intersection points are
141 Vertex(const SkPoint& point) argument
142 : fPoint(point), fPrev(NULL), fNext(NULL)
219 * point). For speed, that case is only tested by the callers which require it (e.g.,
260 double fDY; // fDY * x + fDX * y + fC = 0, for point (x, y) on the line.
1421 // For the initial size of the chunk allocator, estimate based on the point count:
1422 // one vertex per point for the initial passes, plus two for the vertices in the
1423 // resulting Polys, since the same point ma
[all...]

Completed in 7158 milliseconds

123456789