/external/chromium_org/ppapi/shared_impl/ |
D | ppb_instance_shared.cc | 65 const PP_Point* hot_spot) { in ValidateSetCursorParams() argument 76 if (!hot_spot) in ValidateSetCursorParams() 97 if (hot_spot->x < 0 || hot_spot->x >= desc.size.width || in ValidateSetCursorParams() 98 hot_spot->y < 0 || hot_spot->y >= desc.size.height) in ValidateSetCursorParams()
|
D | ppb_instance_shared.h | 35 const PP_Point* hot_spot); in NON_EXPORTED_BASE()
|
/external/chromium_org/ppapi/cpp/ |
D | mouse_cursor.cc | 23 const Point& hot_spot) { in SetCursor() argument 28 &hot_spot.pp_point())); in SetCursor()
|
D | mouse_cursor.h | 51 const Point& hot_spot = Point(0, 0));
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_mouse_cursor_thunk.cc | 23 const struct PP_Point* hot_spot) { in SetCursor() argument 28 return enter.functions()->SetCursor(instance, type, image, hot_spot); in SetCursor()
|
D | ppb_cursor_control_thunk.cc | 21 const PP_Point* hot_spot) { in SetCursor() argument 26 static_cast<PP_MouseCursor_Type>(type), custom_image, hot_spot); in SetCursor()
|
D | ppb_instance_api.h | 115 const PP_Point* hot_spot) = 0;
|
/external/chromium_org/chrome/browser/ui/tabs/ |
D | dock_info.h | 115 void set_hot_spot(const gfx::Point& hot_spot) { hot_spot_ = hot_spot; } in set_hot_spot() argument 116 const gfx::Point& hot_spot() const { return hot_spot_; } in hot_spot() function
|
D | dock_info_unittest.cc | 154 EXPECT_EQ(0, d.hot_spot().x()); in TEST() 155 EXPECT_EQ(0, d.hot_spot().y()); in TEST()
|
/external/chromium/chrome/browser/ui/tabs/ |
D | dock_info.h | 134 void set_hot_spot(const gfx::Point& hot_spot) { hot_spot_ = hot_spot; } in set_hot_spot() argument 135 const gfx::Point& hot_spot() const { return hot_spot_; } in hot_spot() function
|
D | dock_info_unittest.cc | 154 EXPECT_EQ(0, d.hot_spot().x()); in TEST() 155 EXPECT_EQ(0, d.hot_spot().y()); in TEST()
|
D | dock_info_win.cc | 200 finder.result_.hot_spot(), in GetDockInfoAtPoint()
|
/external/chromium_org/ppapi/cpp/dev/ |
D | cursor_control_dev.cc | 26 const Point& hot_spot) { in SetCursor() argument 30 &hot_spot.pp_point())); in SetCursor()
|
D | cursor_control_dev.h | 27 const Point& hot_spot);
|
/external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/ |
D | mouse_cursor.cc | 58 pp::Point hot_spot(16, 16); in HandleMessage() local 59 pp::MouseCursor::SetCursor(this, cursor, custom_cursor_, hot_spot); in HandleMessage()
|
/external/chromium_org/ppapi/c/dev/ |
D | ppb_cursor_control_dev.h | 42 const struct PP_Point* hot_spot);
|
/external/chromium_org/ppapi/api/dev/ |
D | ppb_cursor_control_dev.idl | 19 * must be an ImageData resource containing the cursor and "hot_spot" must 25 [in] PP_Point hot_spot);
|
/external/chromium_org/ppapi/c/ |
D | ppb_mouse_cursor.h | 129 const struct PP_Point* hot_spot);
|
/external/chromium_org/ppapi/api/ |
D | ppb_mouse_cursor.idl | 97 * @param[in] hot_spot When setting a custom cursor, this identifies the 107 [in] PP_Point hot_spot);
|
/external/chromium_org/ppapi/proxy/ |
D | ppb_instance_proxy.cc | 723 const PP_Point* hot_spot) { in SetCursor() argument 728 if (!ValidateSetCursorParams(type, image, hot_spot)) in SetCursor() 742 image_host_resource, hot_spot ? *hot_spot : PP_MakePoint(0, 0))); in SetCursor() 1202 const PP_Point& hot_spot) { in OnHostMsgSetCursor() argument 1208 custom_image.host_resource(), &hot_spot); in OnHostMsgSetCursor()
|
D | ppb_instance_proxy.h | 89 const PP_Point* hot_spot) OVERRIDE; 195 const PP_Point& hot_spot);
|
/external/chromium_org/webkit/common/cursors/ |
D | webcursor_mac.mm | 362 NSPoint hot_spot = [cursor hotSpot]; 363 cursor_info.hotspot = gfx::Point(hot_spot.x, hot_spot.y);
|
/external/chromium/webkit/glue/ |
D | webcursor_mac.mm | 326 NSPoint hot_spot = [cursor hotSpot]; 327 cursor_info.hotSpot = WebKit::WebPoint(hot_spot.x, hot_spot.y);
|
/external/chromium_org/chrome/browser/ui/views/tabs/ |
D | dock_info_win.cc | 226 finder.result_.hot_spot(), in GetDockInfoAtPoint()
|
/external/chromium_org/content/renderer/pepper/ |
D | pepper_plugin_instance_impl.cc | 2433 const PP_Point* hot_spot) { in SetCursor() argument 2434 if (!ValidateSetCursorParams(type, image, hot_spot)) in SetCursor() 2454 custom_cursor->hotSpot.x = hot_spot->x; in SetCursor() 2455 custom_cursor->hotSpot.y = hot_spot->y; in SetCursor()
|