Searched defs:point (Results 226 - 250 of 602) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperations.cpp115 // The angle that this point is rotated with respect to the plane nz
129 // This method returns the bounding box that contains the starting point,
130 // the ending point, and any of the extrema (in each dimension) found across
133 static void boundingBoxForArc(const FloatPoint3D& point, const RotateTransformOperation& fromTransform, const RotateTransformOperation& toTransform, double minProgress, double maxProgress, FloatBox& box) argument
155 FloatPoint3D fromPoint = fromMatrix.mapPoint(point);
156 FloatPoint3D toPoint = toMatrix.mapPoint(point);
167 findCandidatesInPlane(point.y(), point.z(), fromTransform.x(), candidates, &numCandidates);
170 findCandidatesInPlane(point.z(), point
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DLinkHighlight.cpp151 IntPoint point; local
153 case 0: point = roundedIntPoint(targetSpaceQuad.p1()); break;
154 case 1: point = roundedIntPoint(targetSpaceQuad.p2()); break;
155 case 2: point = roundedIntPoint(targetSpaceQuad.p3()); break;
156 case 3: point = roundedIntPoint(targetSpaceQuad.p4()); break;
159 point = targetRenderer->frame()->view()->contentsToWindow(point);
160 point = compositedRenderer->frame()->view()->windowToContents(point);
161 FloatPoint floatPoint = compositedRenderer->absoluteToLocal(point, UseTransform
[all...]
H A DScrollbarGroup.cpp87 void ScrollbarGroup::setLastMousePosition(const IntPoint& point) argument
89 m_lastMousePosition = point;
H A DWebInputEventConversion.cpp423 PlatformTouchPointBuilder::PlatformTouchPointBuilder(Widget* widget, const WebTouchPoint& point) argument
428 m_id = point.id;
429 m_state = toPlatformTouchPointState(point.state);
430 FloatPoint pos = (point.position - offset).scaledBy(scale);
435 m_screenPos = FloatPoint(point.screenPosition.x, point.screenPosition.y);
436 m_radius = FloatSize(point.radiusX, point.radiusY).scaledBy(scale);
437 m_rotationAngle = point.rotationAngle;
438 m_force = point
746 WebTouchPoint point; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble-conversion.cc249 // Add space for digit before the decimal point and the '\0' character.
315 // decimal point after the first digit.
362 int* point) {
384 *point = 1;
391 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point);
394 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point);
398 vector, length, point);
408 BignumDtoa(v, bignum_mode, requested_digits, vector, length, point);
355 DoubleToAscii(double v, DtoaMode mode, int requested_digits, char* buffer, int buffer_length, bool* sign, int* length, int* point) argument
H A Dfixed-dtoa.cc214 // we simply switch the first digit to '1' and update the decimal-point
215 // (indicating that the point is now one digit to the right).
223 // The given fractionals number represents a fixed-point number with binary
224 // point at bit (-exponent).
230 // generated by this function might be updated, and the decimal-point variable
238 // 'fractionals' is a fixed-point number, with binary point at bit
240 // is a fixed-point number, with binary point at bit 'point'
244 int point = -exponent; local
272 int point = 128; local
[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/third_party/boringssl/src/crypto/ecdsa/
H A Decdsa.c133 EC_POINT *point = NULL; local
197 point = EC_POINT_new(group);
198 if (point == NULL) {
202 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
206 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
220 if (point) {
221 EC_POINT_free(point);
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_crld.c274 DIST_POINT *point = NULL; local
275 point = DIST_POINT_new();
276 if (!point)
282 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
289 if (!set_reasons(&point->reasons, cnf->value))
294 point->CRLissuer =
296 if (!point->CRLissuer)
301 return point;
305 if (point)
306 DIST_POINT_free(point);
320 DIST_POINT *point; local
566 DIST_POINT *point; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_context.h30 * The setup code is concerned with point/line/triangle setup and
148 void (*point)( struct lp_setup_context *, member in struct:lp_setup_context
H A Dlp_setup_point.c203 * Compute the point->coef[] array dadx, dady, a0 values.
305 /* x/y positions in fixed point */
312 /* Point size as fixed point integer, remove rounding errors
322 struct lp_rast_triangle *point; local
357 point = lp_setup_alloc_triangle(scene,
361 if (!point)
365 point->v[0][0] = v0[0][0];
366 point->v[0][1] = v0[0][1];
374 info.a0 = GET_A0(&point->inputs);
375 info.dadx = GET_DADX(&point
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_path.c349 VGfloat point[2], normal[2]; local
351 point, normal);
353 *x = point[0];
355 *y = point[1];
/external/chromium_org/third_party/skia/gm/
H A Dconvexpolyclip.cpp108 SkPoint point; variable
109 point.fY = SkScalarSinCos(angle, &point.fX);
110 point.scale(kRadius);
111 point = center + point;
113 hexagon.moveTo(point);
115 hexagon.lineTo(point);
/external/chromium_org/third_party/skia/src/core/
H A DSkReadBuffer.cpp130 void SkReadBuffer::readPoint(SkPoint* point) { argument
131 point->fX = fReader.readScalar();
132 point->fY = fReader.readScalar();
/external/chromium_org/third_party/skia/src/pathops/
H A DSkIntersectionHelper.h58 SkIntersections* ts, SkPoint* point) {
59 fContour->alignTPt(fIndex, other.fContour, other.fIndex, swap, index, ts, point);
57 alignTPt(SkIntersectionHelper& other, bool swap, int index, SkIntersections* ts, SkPoint* point) argument
/external/chromium_org/ui/app_list/views/
H A Dapp_list_main_view_unittest.cc98 // |point| is in |grid_view|'s coordinates.
100 const gfx::Point& point) {
104 if (view->bounds().Contains(point)) {
126 // |point| is in |grid_view|'s coordinates.
129 const gfx::Point& point) {
130 AppListItemView* view = GetItemViewAtPointInGrid(grid_view, point);
134 gfx::PointAtOffsetFromOrigin(point - view->bounds().origin());
135 ui::MouseEvent pressed_event(ui::ET_MOUSE_PRESSED, translated, point, 0, 0);
140 // |point| is in |grid_view|'s coordinates.
144 const gfx::Point& point) {
99 GetItemViewAtPointInGrid(AppsGridView* grid_view, const gfx::Point& point) argument
127 SimulateInitiateDrag(AppsGridView* grid_view, AppsGridView::Pointer pointer, const gfx::Point& point) argument
141 SimulateUpdateDrag(AppsGridView* grid_view, AppsGridView::Pointer pointer, AppListItemView* drag_view, const gfx::Point& point) argument
202 gfx::Point point = item_view->bounds().CenterPoint(); local
214 SimulateUpdateDrag(FolderGridView(), AppsGridView::MOUSE, dragged, point); local
215 SimulateUpdateDrag(FolderGridView(), AppsGridView::MOUSE, dragged, point); local
265 gfx::Point point = drop_target_tile.CenterPoint(); local
266 SimulateUpdateDrag(FolderGridView(), AppsGridView::MOUSE, dragged, point); local
301 gfx::Point point = local
304 SimulateUpdateDrag(FolderGridView(), AppsGridView::MOUSE, dragged, point); local
333 SimulateUpdateDrag(FolderGridView(), AppsGridView::MOUSE, dragged, point); local
[all...]
H A Dpage_switcher.cc134 int PageSwitcher::GetPageForPoint(const gfx::Point& point) const {
135 if (!buttons_->bounds().Contains(point))
138 gfx::Point buttons_point(point);
150 void PageSwitcher::UpdateUIForDragPoint(const gfx::Point& point) { argument
151 int page = GetPageForPoint(point);
H A Dsearch_box_view.cc209 void SearchBoxView::OnMenuButtonClicked(View* source, const gfx::Point& point) { argument
H A Dsearch_result_view.cc337 const gfx::Point& point,
351 gfx::Rect(point, gfx::Size()),
336 ShowContextMenuForView(views::View* source, const gfx::Point& point, ui::MenuSourceType source_type) argument
/external/chromium_org/ui/aura/test/
H A Dtest_screen.cc136 gfx::NativeWindow TestScreen::GetWindowAtScreenPoint(const gfx::Point& point) { argument
137 return host_->window()->GetTopWindowContainingPoint(point);
153 gfx::Display TestScreen::GetDisplayNearestPoint(const gfx::Point& point) const {
H A Dtest_window_delegate.cc53 gfx::NativeCursor TestWindowDelegate::GetCursor(const gfx::Point& point) { argument
57 int TestWindowDelegate::GetNonClientComponent(const gfx::Point& point) const {
/external/chromium_org/ui/events/gestures/
H A Dgesture_recognizer_impl.cc109 gfx::PointF point(pointer_state.GetX(j), pointer_state.GetY(j));
112 float distance_squared = (point - location).LengthSquared();
114 closest_point = point;
164 gfx::PointF* point) {
169 *point = gfx::PointF(pointer_state.GetX(), pointer_state.GetY());
184 gfx::PointF point(pointer_state_clone->GetX(i),
187 point,
162 GetLastTouchPointForTarget( GestureConsumer* consumer, gfx::PointF* point) argument
/external/chromium_org/ui/gfx/
H A Drender_text_mac.cc36 SelectionModel RenderTextMac::FindCursorPosition(const Point& point) { argument
302 SkPoint* point = &run->glyph_positions[glyph]; local
303 point->set(x + SkDoubleToScalar(positions_ptr[glyph].x),
H A Dscreen_win.cc113 gfx::NativeWindow ScreenWin::GetWindowAtScreenPoint(const gfx::Point& point) { argument
114 gfx::Point point_in_pixels = gfx::win::DIPToScreenPoint(point);
142 gfx::Display ScreenWin::GetDisplayNearestPoint(const gfx::Point& point) const {
143 POINT initial_loc = { point.x(), point.y() };
/external/chromium_org/ui/gfx/win/
H A Dhwnd_util.cc11 #include "ui/gfx/point.h"
210 Point point = Point(base::i18n::IsRTL() ? rect.right : rect.left, rect.top); local
212 point.Offset(base::i18n::IsRTL() ? -kSystemMenuOffset : kSystemMenuOffset,
214 ShowSystemMenuAtPoint(window, point);
217 void ShowSystemMenuAtPoint(HWND window, const Point& point) { argument
226 TrackPopupMenu(menu, flags, point.x(), point.y(), 0, window, NULL);

Completed in 4782 milliseconds

1234567891011>>