Searched refs:point (Results 251 - 275 of 707) sorted by relevance

<<11121314151617181920>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DEC5Util.java298 ECPoint point,
301 return convertPoint(convertCurve(ecSpec.getCurve()), point, withCompression);
306 ECPoint point,
309 return curve.createPoint(point.getAffineX(), point.getAffineY());
296 convertPoint( ECParameterSpec ecSpec, ECPoint point, boolean withCompression) argument
304 convertPoint( ECCurve curve, ECPoint point, boolean withCompression) argument
/external/pdfium/core/fpdfdoc/
H A Dcpdf_variabletext.h135 CPVT_WordPlace SearchWordPlace(const CFX_PointF& point) const;
137 const CFX_PointF& point) const;
139 const CFX_PointF& point) const;
158 CFX_PointF InToOut(const CFX_PointF& point) const;
159 CFX_PointF OutToIn(const CFX_PointF& point) const;
/external/pdfium/xfa/fwl/
H A Dcfwl_spinbutton.cpp69 FWL_WidgetHit CFWL_SpinButton::HitTest(const CFX_PointF& point) { argument
70 if (m_rtClient.Contains(point))
72 if (HasBorder() && (m_rtClient.Contains(point)))
74 if (m_rtUpButton.Contains(point))
76 if (m_rtDnButton.Contains(point))
H A Dcfwl_combobox.h54 FWL_WidgetHit HitTest(const CFX_PointF& point) override;
138 FWL_WidgetHit DisForm_HitTest(const CFX_PointF& point);
/external/skia/src/core/
H A DSkGeometry.h14 static inline Sk2s from_point(const SkPoint& point) { argument
15 return Sk2s::Load(&point);
19 SkPoint point; local
20 x.store(&point);
21 return point;
38 /** Set pt to the point on the src quadratic specified by t. t must be
73 /** Given 3 points on a quadratic bezier, if the point of maximum
75 point along the curve. Otherwise it will return a value of 0.
80 if the point of maximum curvature exists on the quad segment.
96 /** Set pt to the point o
[all...]
/external/swiftshader/src/D3D9/
H A DDirect3DSwapChain9.cpp156 POINT point; local
157 GetCursorPos(&point);
158 ScreenToClient(window, &point);
160 frameBuffer->setCursorPosition(point.x, point.y);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECCurve.java119 throw new IllegalArgumentException("Invalid point coordinates");
125 * @deprecated per-point compression property will be removed, use {@link #validatePoint(BigInteger, BigInteger)}
133 throw new IllegalArgumentException("Invalid point coordinates");
144 * @deprecated per-point compression property will be removed, use {@link #createPoint(BigInteger, BigInteger)}
173 public PreCompInfo getPreCompInfo(ECPoint point, String name) argument
175 checkPoint(point);
176 synchronized (point)
178 Hashtable table = point.preCompTable;
184 * Adds <code>PreCompInfo</code> for a point on this curve, under a given name. Used by
188 * @param point
195 setPreCompInfo(ECPoint point, String name, PreCompInfo preCompInfo) argument
444 checkPoint(ECPoint point) argument
[all...]
/external/opencv/cv/src/
H A Dcvsubdivision2d.cpp255 CvSubdiv2DPoint *point = 0; local
363 point = cvSubdiv2DEdgeOrg( edge );
369 point = cvSubdiv2DEdgeDst( edge );
376 point = 0;
383 point = 0;
389 *_point = point;
410 CvSubdiv2DPoint *point = 0; local
439 point = curr_point;
505 point = curr_point;
512 return point;
730 CvSubdiv2DPoint* point = 0; local
[all...]
/external/pdfium/fpdfsdk/fxedit/
H A Dfxet_list.cpp210 CFX_PointF CFX_ListCtrl::InToOut(const CFX_PointF& point) const {
212 return CFX_PointF(point.x - (m_ptScrollPos.x - rcPlate.left),
213 point.y - (m_ptScrollPos.y - rcPlate.top));
216 CFX_PointF CFX_ListCtrl::OutToIn(const CFX_PointF& point) const {
218 return CFX_PointF(point.x + (m_ptScrollPos.x - rcPlate.left),
219 point.y + (m_ptScrollPos.y - rcPlate.top));
236 void CFX_ListCtrl::OnMouseDown(const CFX_PointF& point, argument
239 int32_t nHitIndex = GetItemIndex(point);
275 void CFX_ListCtrl::OnMouseMove(const CFX_PointF& point, argument
278 int32_t nHitIndex = GetItemIndex(point);
541 SetScrollPos(const CFX_PointF& point) argument
[all...]
/external/pdfium/fpdfsdk/pdfwindow/
H A DPWL_Wnd.cpp427 bool CPWL_Wnd::mouse_method_name(const CFX_PointF& point, uint32_t nFlag) { \
433 return pChild->mouse_method_name(pChild->ParentToChild(point), \
441 if (pChild && pChild->WndHitTest(pChild->ParentToChild(point))) { \
442 return pChild->mouse_method_name(pChild->ParentToChild(point), nFlag); \
445 if (WndHitTest(point)) \
459 const CFX_PointF& point,
470 return pChild->OnMouseWheel(zDelta, pChild->ParentToChild(point), nFlag);
658 bool CPWL_Wnd::WndHitTest(const CFX_PointF& point) const {
659 return IsValid() && IsVisible() && GetWindowRect().Contains(point);
662 bool CPWL_Wnd::ClientHitTest(const CFX_PointF& point) cons
458 OnMouseWheel(short zDelta, const CFX_PointF& point, uint32_t nFlag) argument
[all...]
H A DPWL_Edit.cpp405 bool CPWL_Edit::OnLButtonDown(const CFX_PointF& point, uint32_t nFlag) { argument
406 CPWL_Wnd::OnLButtonDown(point, nFlag);
408 if (HasFlag(PES_TEXTOVERFLOW) || ClientHitTest(point)) {
415 m_pEdit->OnMouseDown(point, IsSHIFTpressed(nFlag), IsCTRLpressed(nFlag));
421 bool CPWL_Edit::OnLButtonDblClk(const CFX_PointF& point, uint32_t nFlag) { argument
422 CPWL_Wnd::OnLButtonDblClk(point, nFlag);
424 if (HasFlag(PES_TEXTOVERFLOW) || ClientHitTest(point)) {
431 bool CPWL_Edit::OnRButtonUp(const CFX_PointF& point, uint32_t nFlag) { argument
435 CPWL_Wnd::OnRButtonUp(point, nFlag);
437 if (!HasFlag(PES_TEXTOVERFLOW) && !ClientHitTest(point))
725 OnMouseWheel(short zDelta, const CFX_PointF& point, uint32_t nFlag) argument
[all...]
/external/skia/src/gpu/
H A DGrDistanceFieldGenFromVector.cpp158 // So the slope of the tangent line at point (x, x^2) is 2x.
458 // The y-value(equal to x*x) of intersection point for the kVerticalLine intersection type.
525 const SkPoint& point,
542 if ((rowData.fQuadXDirection == -1 && segment.fPts[0].y() <= point.y() &&
544 (rowData.fQuadXDirection == 1 && segment.fPts[2].y() <= point.y() &&
548 if ((rowData.fQuadXDirection == -1 && segment.fPts[2].y() <= point.y() &&
550 (rowData.fQuadXDirection == 1 && segment.fPts[0].y() <= point.y() &&
573 // The path start or end at the tangent point.
574 if (segment.fPts[0].y() == point.y()) {
576 } else if (segment.fPts[2].y() == point
523 calculate_side_of_quad( const PathSegment& segment, const SkPoint& point, const DPoint& xFormPt, const RowData& rowData) argument
585 distance_to_segment(const SkPoint& point, const PathSegment& segment, const RowData& rowData, SegSide* side) argument
686 const SkPoint point = SkPoint::Make(pX, pY); local
[all...]
/external/boringssl/src/crypto/ecdsa/
H A Decdsa.c146 EC_POINT *point = NULL; local
201 point = EC_POINT_new(group);
202 if (point == NULL) {
206 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
210 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
224 EC_POINT_free(point);
/external/guice/core/test/com/google/inject/spi/
H A DInjectionPointTest.java303 for (InjectionPoint point : points) {
304 if (point.getDeclaringType().getRawType() == clazz) {
305 methods.add(point.getMember().getName());
311 /** Asserts that each injection point has the specified dependencies, in the given order. */
314 for (InjectionPoint point : points) {
315 assertEquals(literals.length, point.getDependencies().size());
316 for (Dependency<?> dep : point.getDependencies()) {
/external/libunwind/doc/
H A Dunw_get_fpreg.tex8 \begin{Name}{3}{unw\_get\_fpreg}{David Mosberger-Tang}{Programming Library}{unw\_get\_fpreg}unw\_get\_fpreg -- get contents of floating-point register
19 The \Func{unw\_get\_fpreg}() routine reads the value of floating-point
34 floating-point registers. See \Func{unw\_get\_fpreg}(3) for a way to
/external/boringssl/src/crypto/ec/
H A Dec_test.cc263 bssl::UniquePtr<EC_POINT> point(EC_POINT_new(group.get()));
264 ASSERT_TRUE(point);
273 ASSERT_TRUE(EC_POINT_set_affine_coordinates_GFp(group.get(), point.get(),
275 ASSERT_TRUE(EC_KEY_set_public_key(key2.get(), point.get()));
302 auto point = bssl::UniquePtr<EC_POINT>(EC_POINT_new(group)); local
303 ASSERT_TRUE(point);
304 EXPECT_TRUE(EC_POINT_set_affine_coordinates_GFp(group, point.get(), x.get(),
307 // Subtract one from |y| to make the point no longer on the curve.
352 bssl::UniquePtr<EC_POINT> point(EC_POINT_new(group.get()));
353 ASSERT_TRUE(point);
[all...]
/external/ImageMagick/Magick++/lib/
H A DGeometry.cpp675 point; local
678 point+="-";
680 point+="+";
683 point+=buffer;
686 point+="x-";
688 point+="x+";
691 point+=buffer;
693 return(point);
/external/ImageMagick/www/api/
H A Ddrawing-wand.php1469 <p>DrawPathClose() adds a path element to the current path which closes the current subpath by drawing a straight line from the current point to the current subpath's most recent starting point (usually, the most recent moveto point).</p>
1491 <p>DrawPathCurveToAbsolute() draws a cubic Bezier curve from the current point to (x,y) using (x1,y1) as the control point at the beginning of the curve and (x2,y2) as the control point at the end of the curve using absolute coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
1513 <dd>x ordinate of control point for curve beginning </dd>
1517 <dd>y ordinate of control point for curve beginning </dd>
1521 <dd>x ordinate of control point fo
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DMicrosphereInterpolatingFunction.java131 * {@code xval[i][0]} is the first component of interpolation point
134 * point (where {@code dimension} is thus the dimension of the sampled
185 * @param point Interpolation point.
188 public double value(double[] point) { argument
190 final RealVector p = new ArrayRealVector(point);
200 // Vector between interpolation point and current sample point.
205 // No need to interpolate, as the interpolation point is
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DLevenbergMarquardtOptimizer.java33 * (i.e. systems having more point than equations). Over-determined systems
34 * are solved by ignoring the point which have the smallest impact according
109 /** Number of solved point. */
254 // local point
266 // evaluate the function at the starting point and calculate its norm
272 VectorialPointValuePair current = new VectorialPointValuePair(point, objective);
295 // scale the point according to the norms of the columns
303 double xk = dk * point[k];
332 current = new VectorialPointValuePair(point, objective);
347 oldX[pj] = point[p
[all...]
/external/eigen/unsupported/test/
H A Dsplines.cpp262 PointType point = spline(knots(i)); local
264 VERIFY_IS_APPROX(point, referencePoint);
/external/pdfium/
H A Dpdfiumfxcrt.mk16 # upstream at some point.
H A Dpdfiumpdfwindow.mk15 # upstream at some point.
/external/pdfium/third_party/
H A Dpdfiumjpeg.mk14 # upstream at some point.
H A Dpdfiumlcms.mk14 # upstream at some point.

Completed in 1423 milliseconds

<<11121314151617181920>>