Searched refs:point (Results 201 - 225 of 2290) sorted by relevance

1234567891011>>

/external/pdfium/fpdfsdk/include/formfiller/
H A DFFL_FormFiller.h55 virtual FX_BOOL OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
56 virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
57 virtual FX_BOOL OnLButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
58 virtual FX_BOOL OnMouseMove(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
59 virtual FX_BOOL OnMouseWheel(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, short zDelta, const CPDF_Point& point);
60 virtual FX_BOOL OnRButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
61 virtual FX_BOOL OnRButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
62 virtual FX_BOOL OnRButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
107 CPDF_Point FFLtoPWL(const CPDF_Point& point);
108 CPDF_Point PWLtoFFL(const CPDF_Point& point);
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dec_key.c314 EC_POINT *point = NULL; local
327 point = EC_POINT_new(eckey->group);
330 point == NULL) {
339 /* testing whether pub_key * order is the point at infinity */
347 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
351 if (!EC_POINT_is_at_infinity(eckey->group, point)) {
363 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, NULL, NULL, ctx)) {
367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
377 if (point != NULL)
378 EC_POINT_free(point);
386 EC_POINT *point = NULL; local
[all...]
/external/chromium_org/ppapi/cpp/
H A Dpoint.h11 /// This file defines the API to create a 2 dimensional point.
15 /// A 2 dimensional point with 0,0 being the upper-left starting coordinate.
18 /// The default constructor for a point at 0,0.
28 /// of a point, starting with 0 as the left-most coordinate.
30 /// of a point, starting with 0 as the top-most coordinate.
39 /// @param[in] point A pointer to a PP_Point.
40 Point(const PP_Point& point) { // Implicit. argument
41 point_.x = point.x;
42 point_.y = point.y;
104 /// and y values. Returns a new point wit
180 FloatPoint(const PP_FloatPoint& point) argument
[all...]
/external/chromium_org/remoting/protocol/
H A Dmouse_input_filter_unittest.cc41 const Point& point = input_sequence[i]; local
42 input_stub->InjectMouseEvent(MouseMoveEvent(point.x, point.y));
45 const Point& point = input_sequence[i]; local
46 input_stub->InjectMouseEvent(MouseMoveEvent(point.y, point.x));
/external/chromium_org/rlz/lib/
H A Drlz_lib.cc29 bool IsAccessPointSupported(rlz_lib::AccessPoint point) { argument
30 switch (point) {
127 rlz_lib::AccessPoint point = rlz_lib::NO_ACCESS_POINT; local
129 if (!GetAccessPointFromName(event_string.substr(0, 2).c_str(), &point) ||
130 point == rlz_lib::NO_ACCESS_POINT) {
139 ReturnedEvent current_event = {point, event};
145 bool RecordStatefulEvent(rlz_lib::Product product, rlz_lib::AccessPoint point, argument
153 const char* point_name = GetAccessPointName(point);
243 bool RecordProductEvent(Product product, AccessPoint point, Event event) { argument
250 const char* point_name = GetAccessPointName(point);
272 ClearProductEvent(Product product, AccessPoint point, Event event) argument
294 GetAccessPointRlz(AccessPoint point, char* rlz, size_t rlz_size) argument
313 SetAccessPointRlz(AccessPoint point, const char* new_rlz) argument
545 AccessPoint point = NO_ACCESS_POINT; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollView.cpp177 AXObject* AXScrollView::accessibilityHitTest(const IntPoint& point) const
183 if (m_horizontalScrollbar && m_horizontalScrollbar->elementRect().contains(point))
185 if (m_verticalScrollbar && m_verticalScrollbar->elementRect().contains(point))
188 return webArea->accessibilityHitTest(point);
237 void AXScrollView::scrollTo(const IntPoint& point) const
240 m_scrollView->setScrollPosition(point);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_unfilled.c29 * \brief Drawing stage for handling glPolygonMode(line/point).
60 static void point( struct draw_stage *stage, function
65 stage->next->point( stage->next, &tmp );
86 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0->edgeflag) point( stage, v0 );
87 if ((header->flags & DRAW_PIPE_EDGE_FLAG_1) && v1->edgeflag) point( stage, v1 );
88 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) point( stage, v2 );
209 unfilled->stage.point = draw_pipe_passthrough_point;
/external/chromium_org/ui/gfx/test/
H A Dgfx_util.cc12 #include "ui/gfx/geometry/point.h"
97 void PrintTo(const Point& point, ::std::ostream* os) { argument
98 *os << point.ToString();
101 void PrintTo(const Point3F& point, ::std::ostream* os) { argument
102 *os << point.ToString();
105 void PrintTo(const PointF& point, ::std::ostream* os) { argument
106 *os << point.ToString();
/external/chromium_org/ui/gfx/
H A Dtransform.h154 // change the w-component of a homogeneous point.
189 // Applies the transformation to the point.
190 void TransformPoint(Point3F* point) const;
192 // Applies the transformation to the point.
193 void TransformPoint(Point* point) const;
195 // Applies the reverse transformation on the point. Returns true if the
197 bool TransformPointReverse(Point3F* point) const;
199 // Applies the reverse transformation on the point. Returns true if the
200 // transformation can be inverted. Rounds the result to the nearest point.
201 bool TransformPointReverse(Point* point) cons
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_unfilled.c29 * \brief Drawing stage for handling glPolygonMode(line/point).
60 static void point( struct draw_stage *stage, function
65 stage->next->point( stage->next, &tmp );
86 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0->edgeflag) point( stage, v0 );
87 if ((header->flags & DRAW_PIPE_EDGE_FLAG_1) && v1->edgeflag) point( stage, v1 );
88 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) point( stage, v2 );
209 unfilled->stage.point = draw_pipe_passthrough_point;
/external/valgrind/main/none/tests/s390x/
H A Dfpext_warn.stderr.exp4 feature requires the floating point extension facility.
10 feature requires the floating point extension facility.
16 feature requires the floating point extension facility.
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc57 pp::Point point = event.GetPosition(); local
59 if (point.y() < height_ / segments) {
62 } else if (point.y() < (height_ / segments) * 2) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTimeRanges.h57 inline bool isPointInRange(double point) const
59 return m_start <= point && point < m_end;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInvalidationState.cpp28 FloatPoint point = renderView.localToContainerPoint(FloatPoint(), &m_paintInvalidationContainer, TraverseDocumentBoundaries); local
29 m_paintOffset = LayoutSize(point.x(), point.y());
/external/chromium_org/third_party/skia/src/core/
H A DSkAnnotation.cpp71 void SkAnnotateNamedDestination(SkCanvas* canvas, const SkPoint& point, SkData* name) { argument
77 canvas->drawPoint(point.x(), point.y(), paint);
/external/chromium_org/ui/gfx/geometry/
H A Dbox_f.cc56 void BoxF::ExpandTo(const Point3F& point) { argument
57 ExpandTo(point, point);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dprobe-event.h10 /* kprobe-tracer and uprobe-tracer tracing point */
32 /* kprobe-tracer and uprobe-tracer tracing event (point + arg) */
36 struct probe_trace_point point; /* Trace point */ member in struct:probe_trace_event
42 /* Perf probe probing point */
68 /* Perf probe probing event (point + arg) */
72 struct perf_probe_point point; /* Probe point */ member in struct:perf_probe_event
99 struct probe_trace_point point; /* Actual probepoint */ member in struct:variable_list
/external/skia/src/core/
H A DSkAnnotation.cpp71 void SkAnnotateNamedDestination(SkCanvas* canvas, const SkPoint& point, SkData* name) { argument
77 canvas->drawPoint(point.x(), point.y(), paint);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h85 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters, not
92 * but if the encoding is UTF16, then the pointer is assumed to point to 8 bit characters that must
99 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters not
113 * must point to UTF16 characters.
115 pANTLR3_UINT8 (*insert) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
119 * then the pointer is assumed to point at 8 bit characteres that must be converted on the fly.
121 pANTLR3_UINT8 (*insert8) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
136 pANTLR3_UINT8 (*insertS) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, struct ANTLR3_STRING_struct * newbit);
141 pANTLR3_UINT8 (*inserti) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, ANTLR3_INT32 i);
229 * to point t
[all...]
/external/ceres-solver/examples/
H A Dsnavely_reprojection_error.h51 // focal length and 2 for radial distortion. The principal point is not modeled
59 const T* const point,
63 ceres::AngleAxisRotatePoint(camera, point, p);
83 // Compute final projected point position.
109 // principal point is not modeled (i.e. it is assumed be located at
113 // center point.
120 const T* const point,
130 QuaternionRotatePoint(camera_rotation, point, p);
146 // Compute final projected point position.
58 operator ()(const T* const camera, const T* const point, T* residuals) const argument
118 operator ()(const T* const camera_rotation, const T* const camera_translation_and_intrinsics, const T* const point, T* residuals) const argument
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_view.h30 const gfx::Point& point,
/external/chromium_org/chrome/browser/ui/autofill/
H A Dpassword_generation_popup_view.h40 virtual bool IsPointInPasswordBounds(const gfx::Point& point) = 0;
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dpassword_generation_popup_view_bridge.h38 virtual bool IsPointInPasswordBounds(const gfx::Point& point) OVERRIDE;
/external/chromium_org/chrome/utility/cloud_print/
H A Dbitmap_image.h9 #include "ui/gfx/point.h"
32 const uint8* GetPixel(const gfx::Point& point) const;
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_gesture_target_android.cc72 const blink::WebTouchPoint* point = &web_touch.touches[i]; local
73 TouchSetPointer(env, i, point->position.x, point->position.y, point->id);

Completed in 1764 milliseconds

1234567891011>>