Searched refs:hot_spot (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dmouse_cursor.cc23 const Point& hot_spot) {
28 &hot_spot.pp_point()));
20 SetCursor(const InstanceHandle& instance, PP_MouseCursor_Type type, const ImageData& image, const Point& hot_spot) argument
H A Dmouse_cursor.h42 /// @param[in] hot_spot When setting a custom cursor, this identifies the
51 const Point& hot_spot = Point(0, 0));
/external/chromium_org/ppapi/thunk/
H A Dppb_mouse_cursor_thunk.cc21 const struct PP_Point* hot_spot) {
26 return enter.functions()->SetCursor(instance, type, image, hot_spot);
18 SetCursor(PP_Instance instance, enum PP_MouseCursor_Type type, PP_Resource image, const struct PP_Point* hot_spot) argument
H A Dppb_cursor_control_thunk.cc21 const PP_Point* hot_spot) {
26 static_cast<PP_MouseCursor_Type>(type), custom_image, hot_spot);
18 SetCursor(PP_Instance instance, PP_CursorType_Dev type, PP_Resource custom_image, const PP_Point* hot_spot) argument
H A Dppb_instance_api.h135 const PP_Point* hot_spot) = 0;
/external/chromium_org/ppapi/shared_impl/
H A Dppb_instance_shared.cc63 const PP_Point* hot_spot) {
74 if (!hot_spot)
95 if (hot_spot->x < 0 || hot_spot->x >= desc.size.width || hot_spot->y < 0 ||
96 hot_spot->y >= desc.size.height)
61 ValidateSetCursorParams(PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
H A Dppb_instance_shared.h35 const PP_Point* hot_spot);
/external/chromium_org/ppapi/api/dev/
H A Dppb_cursor_control_dev.idl19 * must be an ImageData resource containing the cursor and "hot_spot" must
25 [in] PP_Point hot_spot);
/external/chromium_org/ppapi/cpp/dev/
H A Dcursor_control_dev.cc26 const Point& hot_spot) {
30 &hot_spot.pp_point()));
23 SetCursor(const InstanceHandle& instance, PP_CursorType_Dev type, const ImageData& custom_image, const Point& hot_spot) argument
H A Dcursor_control_dev.h27 const Point& hot_spot);
/external/chromium_org/ppapi/c/dev/
H A Dppb_cursor_control_dev.h36 * must be an ImageData resource containing the cursor and "hot_spot" must
42 const struct PP_Point* hot_spot);
/external/chromium_org/chrome/browser/ui/tabs/
H A Ddock_info.h39 // Indicates the window should be maximized on the monitor at hot_spot.
115 void set_hot_spot(const gfx::Point& hot_spot) { hot_spot_ = hot_spot; } argument
116 const gfx::Point& hot_spot() const { return hot_spot_; } function in class:DockInfo
148 // type and hot_spot are set from the supplied parameters. This is used
/external/chromium_org/ppapi/c/
H A Dppb_mouse_cursor.h119 * @param[in] hot_spot When setting a custom cursor, this identifies the
129 const struct PP_Point* hot_spot);
/external/chromium_org/ppapi/api/
H A Dppb_mouse_cursor.idl97 * @param[in] hot_spot When setting a custom cursor, this identifies the
107 [in] PP_Point hot_spot);
/external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/
H A Dmouse_cursor.cc58 pp::Point hot_spot(16, 16);
59 pp::MouseCursor::SetCursor(this, cursor, custom_cursor_, hot_spot);
/external/chromium_org/ppapi/proxy/
H A Dppb_instance_proxy.h103 const PP_Point* hot_spot) OVERRIDE;
236 const PP_Point& hot_spot);
H A Dppb_instance_proxy.cc886 const PP_Point* hot_spot) {
891 if (!ValidateSetCursorParams(type, image, hot_spot))
905 image_host_resource, hot_spot ? *hot_spot : PP_MakePoint(0, 0)));
1517 const PP_Point& hot_spot) {
1523 custom_image.host_resource(), &hot_spot);
883 SetCursor(PP_Instance instance, PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
1513 OnHostMsgSetCursor( PP_Instance instance, int32_t type, const ppapi::HostResource& custom_image, const PP_Point& hot_spot) argument
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dplugin_instance.cc255 const PP_Point* hot_spot) {
252 SetCursor(PP_Instance instance, PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
H A Dplugin_instance.h99 const PP_Point* hot_spot) OVERRIDE;
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc2781 const PP_Point* hot_spot) {
2782 if (!ValidateSetCursorParams(type, image, hot_spot))
2802 custom_cursor->hotSpot.x = hot_spot->x;
2803 custom_cursor->hotSpot.y = hot_spot->y;
2778 SetCursor(PP_Instance instance, PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
H A Dpepper_plugin_instance_impl.h445 const PP_Point* hot_spot) OVERRIDE;

Completed in 7228 milliseconds