Searched defs:hot_spot (Results 1 - 9 of 9) 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
/external/chromium_org/ppapi/thunk/
H A Dppb_mouse_cursor_thunk.cc23 const struct PP_Point* hot_spot) {
28 return enter.functions()->SetCursor(instance, type, image, hot_spot);
20 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
/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
/external/chromium_org/ppapi/shared_impl/
H A Dppb_instance_shared.cc65 const PP_Point* hot_spot) {
76 if (!hot_spot)
97 if (hot_spot->x < 0 || hot_spot->x >= desc.size.width ||
98 hot_spot->y < 0 || hot_spot->y >= desc.size.height)
63 ValidateSetCursorParams(PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
/external/chromium/chrome/browser/ui/tabs/
H A Ddock_info.h53 // Indicates the window should be maximized on the monitor at hot_spot.
134 void set_hot_spot(const gfx::Point& hot_spot) { hot_spot_ = hot_spot; } argument
135 const gfx::Point& hot_spot() const { return hot_spot_; } function in class:DockInfo
167 // type and hot_spot are set from the supplied parameters. This is used
/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/proxy/
H A Dppb_instance_proxy.cc719 const PP_Point* hot_spot) {
724 if (!ValidateSetCursorParams(type, image, hot_spot))
738 image_host_resource, hot_spot ? *hot_spot : PP_MakePoint(0, 0)));
1189 const PP_Point& hot_spot) {
1195 custom_image.host_resource(), &hot_spot);
716 SetCursor(PP_Instance instance, PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument
1185 OnHostMsgSetCursor( PP_Instance instance, int32_t type, const ppapi::HostResource& custom_image, const PP_Point& hot_spot) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc2321 const PP_Point* hot_spot) {
2322 if (!ValidateSetCursorParams(type, image, hot_spot))
2342 custom_cursor->hotSpot.x = hot_spot->x;
2343 custom_cursor->hotSpot.y = hot_spot->y;
2318 SetCursor(PP_Instance instance, PP_MouseCursor_Type type, PP_Resource image, const PP_Point* hot_spot) argument

Completed in 192 milliseconds