Searched refs:point (Results 151 - 175 of 707) sorted by relevance

1234567891011>>

/external/pdfium/fpdfsdk/pdfwindow/
H A DPWL_EditCtrl.cpp277 bool CPWL_EditCtrl::OnLButtonDown(const CFX_PointF& point, uint32_t nFlag) { argument
278 CPWL_Wnd::OnLButtonDown(point, nFlag);
280 if (ClientHitTest(point)) {
287 m_pEdit->OnMouseDown(point, IsSHIFTpressed(nFlag), IsCTRLpressed(nFlag));
293 bool CPWL_EditCtrl::OnLButtonUp(const CFX_PointF& point, uint32_t nFlag) { argument
294 CPWL_Wnd::OnLButtonUp(point, nFlag);
298 if (ClientHitTest(point) && !IsFocused())
308 bool CPWL_EditCtrl::OnMouseMove(const CFX_PointF& point, uint32_t nFlag) { argument
309 CPWL_Wnd::OnMouseMove(point, nFlag);
312 m_pEdit->OnMouseMove(point, fals
401 SetScrollPos(const CFX_PointF& point) argument
[all...]
H A DPWL_ListBox.cpp249 bool CPWL_ListBox::OnLButtonDown(const CFX_PointF& point, uint32_t nFlag) { argument
250 CPWL_Wnd::OnLButtonDown(point, nFlag);
252 if (ClientHitTest(point)) {
257 m_pList->OnMouseDown(point, IsSHIFTpressed(nFlag), IsCTRLpressed(nFlag));
263 bool CPWL_ListBox::OnLButtonUp(const CFX_PointF& point, uint32_t nFlag) { argument
264 CPWL_Wnd::OnLButtonUp(point, nFlag);
281 bool CPWL_ListBox::OnMouseMove(const CFX_PointF& point, uint32_t nFlag) { argument
282 CPWL_Wnd::OnMouseMove(point, nFlag);
284 if (m_bHoverSel && !IsCaptureMouse() && ClientHitTest(point))
285 m_pList->Select(m_pList->GetItemIndex(point));
448 OnMouseWheel(short zDelta, const CFX_PointF& point, uint32_t nFlag) argument
[all...]
H A DPWL_EditCtrl.h56 void SetScrollPos(const CFX_PointF& point);
79 bool OnLButtonDown(const CFX_PointF& point, uint32_t nFlag) override;
80 bool OnLButtonUp(const CFX_PointF& point, uint32_t nFlag) override;
81 bool OnMouseMove(const CFX_PointF& point, uint32_t nFlag) override;
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffimageedit.cpp89 const CFX_PointF& point) {
92 if (!PtInActiveRect(point))
100 ms.m_pos = FWLToClient(point);
88 OnLButtonDown(uint32_t dwFlags, const CFX_PointF& point) argument
H A Dxfa_ffcheckbutton.h27 bool OnLButtonUp(uint32_t dwFlags, const CFX_PointF& point) override;
/external/skia/experimental/SkPerlinNoiseShader2/
H A DSkPerlinNoiseShader2.h94 SkPMColor shade(const SkPoint& point, StitchData& stitchData) const;
97 StitchData& stitchData, const SkPoint& point) const;
98 SkScalar calculateImprovedNoiseValueForPoint(int channel, const SkPoint& point) const;
/external/icu/icu4c/source/test/perf/leperf/
H A DSimpleFontInstance.h65 virtual le_bool getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const;
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Ddenorm_min.pass.cpp62 #error Test has no expected values for floating point types
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dltpfsscsi.sh31 - These operations are destructive so do NOT point the tests to partitions where the data shouldn't be overwritten.
32 Once these tests are started all data in the partitions you point to will be destroyed.
/external/mesa3d/src/mapi/glapi/gen/
H A Dglapi_gen.mk24 # $(2): empty, es1, or es2 for entry point filtering
35 # $(2): empty, es1, or es2 for entry point filtering
/external/opencv/cv/src/
H A D_cvgeom.h64 CvPoint2D32f* point );
/external/opencv/cvaux/src/
H A D_cvvectrack.h109 CvPoint point; local
110 point.x = p.x * decr;
111 point.y = p.y * decr;
112 return point;
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_path.h40 void AppendPoint(const CFX_PointF& point, FXPT_TYPE type, bool close);
/external/pdfium/xfa/fwl/
H A Dcfwl_combolist.h32 CFX_PointF ClientToOuter(const CFX_PointF& point);
/external/skia/bench/
H A DMeasureBench.cpp76 SkPoint point; local
78 if (meas.getPosTan(i * pieceLength, &point, nullptr)) {
89 SkPoint point; local
91 meas.getPosTanTime(i*pieceLength, &point, nullptr, nullptr);
/external/skia/src/gpu/
H A DGrQuad.h55 const SkPoint& point(int i) const { function in class:GrQuad
/external/skia/tests/
H A DDrawTextTest.cpp85 SkPoint point = SkPoint::Make(25.0f + offsetX, local
102 drawTextCanvas.drawText(c, 1, point.fX, point.fY, paint);
105 drawPosTextCanvas.drawPosText(c, 1, &point, paint);
/external/strace/
H A Dxlate.el28 ;; Usage: Put point and mark around a set of definitions in a header
45 (while (< (point) end)
/external/v8/tools/clang/blink_gc_plugin/
H A DCheckFinalizerVisitor.h48 bool MightBeCollected(FieldPoint* point, bool* as_eagerly_finalized);
/external/boringssl/src/crypto/curve25519/
H A Dinternal.h28 const uint8_t point[32]);
37 const uint8_t point[32]);
/external/boringssl/src/crypto/ec/
H A Dec.c621 void EC_POINT_free(EC_POINT *point) { argument
622 if (!point) {
626 ec_GFp_simple_point_finish(point);
628 OPENSSL_free(point);
631 void EC_POINT_clear_free(EC_POINT *point) { argument
632 if (!point) {
636 ec_GFp_simple_point_clear_finish(point);
638 OPENSSL_cleanse(point, sizeof *point);
639 OPENSSL_free(point);
668 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
676 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
684 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
702 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
721 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
735 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
803 ec_point_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
[all...]
/external/clang/test/Analysis/
H A Darray-struct-region.c61 struct point { int x; int y; }; struct
62 struct circle { struct point o; int r; };
66 result.o = (struct point){0, 0};
79 struct circle_f { struct point o; float r; };
83 result.o = (struct point){0, 0};
258 struct point center;
261 extern int test13116945(struct point x);
262 static void radar13116945(struct point centerCoordinate) {
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp67 expected-error{{'pm' does not point into a class}}
69 expected-error{{'pmf' does not point into a class}}\
/external/icu/icu4c/source/samples/layout/
H A DScriptCompositeFontInstance.cpp56 le_bool ScriptCompositeFontInstance::getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const
63 return font->getGlyphPoint(LE_GET_GLYPH(glyph), pointNumber, point);
/external/lzma/CPP/Windows/
H A DShell.h64 bool QueryPoint(LPPOINT point) argument
65 { return BOOLToBool(::DragQueryPoint(m_Object, point)); }

Completed in 1407 milliseconds

1234567891011>>