Searched refs:point (Results 226 - 250 of 2290) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_printing_host_unittest.cc60 return lhs.point.x == rhs.point.x && lhs.point.y == rhs.point.y &&
/external/chromium_org/content/browser/renderer_host/
H A Dtext_input_client_message_filter.h37 const gfx::Point& point);
/external/chromium_org/content/renderer/
H A Dtext_input_client_observer.cc48 void TextInputClientObserver::OnStringAtPoint(gfx::Point point) { argument
52 webview(), point, baselinePoint);
63 void TextInputClientObserver::OnCharacterIndexForPoint(gfx::Point point) { argument
64 blink::WebPoint web_point(point);
/external/chromium_org/net/quic/crypto/
H A Dchannel_id_openssl.cc60 crypto::ScopedOpenSSL<EC_POINT, EC_POINT_free>::Type point(
62 if (point.get() == NULL ||
63 !EC_POINT_set_affine_coordinates_GFp(p256.get(), point.get(), x.get(),
71 !EC_KEY_set_public_key(ecdsa_key.get(), point.get())) {
H A Dp256_key_exchange_openssl.cc86 crypto::ScopedOpenSSL<EC_POINT, EC_POINT_free>::Type point(
88 if (!point.get() ||
89 !EC_POINT_oct2point( /* also test if point is on curve */
91 point.get(),
94 DVLOG(1) << "Can't convert peer public value to curve point.";
99 if (ECDH_compute_key(result, sizeof(result), point.get(), private_key_.get(),
/external/chromium_org/rlz/lib/
H A Drlz_lib.h100 // and some can be access point independent (e.g. Pack installed). However,
104 bool RLZ_LIB_API RecordProductEvent(Product product, AccessPoint point,
110 bool RLZ_LIB_API ClearProductEvent(Product product, AccessPoint point,
134 // Get the RLZ value of the access point. If the access point is not Google, the
137 bool RLZ_LIB_API GetAccessPointRlz(AccessPoint point, char* rlz,
140 // Set the RLZ for the access-point. Fails and asserts if called when the access
141 // point is not set to Google.
145 bool RLZ_LIB_API SetAccessPointRlz(AccessPoint point, const char* new_rlz);
213 // and access point RL
[all...]
/external/chromium_org/skia/ext/
H A Dskia_utils_mac.h39 // Converts a Skia point to a CoreGraphics CGPoint.
41 inline const CGPoint& SkPointToCGPoint(const SkPoint& point) { argument
42 return reinterpret_cast<const CGPoint&>(point);
45 // Converts a CoreGraphics point to a Skia CGPoint.
47 inline const SkPoint& CGPointToSkPoint(const CGPoint& point) { argument
48 return reinterpret_cast<const SkPoint&>(point);
H A Dskia_utils_win.h20 // Converts a Skia point to a Windows POINT.
21 POINT SkPointToPOINT(const SkPoint& point);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DHistoryItem.cpp113 void HistoryItem::setPinchViewportScrollPoint(const FloatPoint& point) argument
115 m_pinchViewportScrollPoint = point;
123 void HistoryItem::setScrollPoint(const IntPoint& point) argument
125 m_scrollPoint = point;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGMarkerData.h108 void updateOutslope(const FloatPoint& point) argument
111 m_outslopePoints[1] = point;
141 void updateInslope(const FloatPoint& point) argument
144 m_inslopePoints[1] = point;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DWidget.cpp159 IntPoint Widget::convertChildToSelf(const Widget*, const IntPoint& point) const
161 return point;
164 IntPoint Widget::convertSelfToChild(const Widget*, const IntPoint& point) const
166 return point;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dbuffertotexture11_gs.h29 dcl_inputprimitive point
/external/chromium_org/third_party/skia/tests/
H A DDrawTextTest.cpp79 SkPoint point = SkPoint::Make(25.0f + offsetX, local
96 drawTextCanvas.drawText("A", 1, point.fX, point.fY, paint);
99 drawPosTextCanvas.drawPosText("A", 1, &point, paint);
H A DFontHostStreamTest.cpp87 SkPoint point = SkPoint::Make(24, 32); local
91 origCanvas.drawText("A", 1, point.fX, point.fY, paint);
110 streamCanvas.drawPosText("A", 1, &point, paint);
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
H A Dtouch_drawing_plugin.cc76 pp::TouchPoint point = touch.GetTouchByIndex( local
78 UpdateSquareTouch(static_cast<int>(point.position().x()),
79 static_cast<int>(point.position().y()));
115 graphics_2d.PaintImageData(updated_image, paint_bounds.point());
/external/chromium_org/ui/app_list/views/
H A Dapp_list_menu_views.h30 void RunMenuAt(views::MenuButton* button, const gfx::Point& point);
H A Dapps_grid_view_folder_delegate.h32 // |drag_point_in_folder_grid| is the last drag point in coordinate of the
52 // Returns true if |point| falls outside of the folder container ink bubble.
53 virtual bool IsPointOutsideOfFolderBoundary(const gfx::Point& point) = 0;
/external/chromium_org/ui/events/
H A Ddevice_data_manager.cc97 gfx::Point3F point(*x, *y, 0.0);
100 trans.TransformPoint(&point);
101 *x = point.x();
102 *y = point.y();
/external/chromium_org/ui/gfx/geometry/
H A Dpoint3_f.h17 // A point has an x, y and z coordinate.
24 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {} argument
50 // Offset the point by the given vector.
57 // Offset the point by the given vector's inverse.
74 // Returns a string representation of 3d point.
93 // Add a vector to a point, producing a new point offset by the vector.
96 // Subtract a vector from a point, producin
[all...]
H A Dpoint3_unittest.cc63 Point3F point(1.f, -1.f, 2.f);
64 point.Scale(2.f);
65 point.Scale(6.f, 3.f, 1.5f);
66 EXPECT_EQ(Point3F(12.f, -6.f, 6.f).ToString(), point.ToString());
/external/chromium_org/ui/views/window/
H A Dnon_client_view.h55 // window border the specified |point| falls within. The other parameters are
58 int GetHTComponentForFrame(const gfx::Point& point,
76 virtual int NonClientHitTest(const gfx::Point& point) = 0;
178 // specified point, in window coordinates.
179 int NonClientHitTest(const gfx::Point& point);
225 const gfx::Point& point) OVERRIDE;
/external/linux-tools-perf/perf-3.12.0/arch/sh/lib/
H A Dmemcpy.S20 add r6,r0 ! From here, r0 points the end of copying point
/external/skia/tests/
H A DDrawTextTest.cpp79 SkPoint point = SkPoint::Make(25.0f + offsetX, local
96 drawTextCanvas.drawText("A", 1, point.fX, point.fY, paint);
99 drawPosTextCanvas.drawPosText("A", 1, &point, paint);
H A DFontHostStreamTest.cpp86 SkPoint point = SkPoint::Make(24, 32); local
90 origCanvas.drawText("A", 1, point.fX, point.fY, paint);
103 streamCanvas.drawPosText("A", 1, &point, paint);
/external/ceres-solver/examples/
H A Dbal_problem.cc56 void PerturbPoint3(const double sigma, double* point) { argument
58 point[i] += RandNormal() * sigma;
170 const double* point = points + i * point_block_size(); local
172 fprintf(fptr, "%.16g\n", point[j]);
228 VectorRef point(points + 3 * i, 3);
229 tmp[i] = (point - median).lpNorm<1>();
244 VectorRef point(points + 3 * i, 3);
245 point = scale * (point - median);

Completed in 467 milliseconds

1234567891011>>