/external/chromium_org/ppapi/cpp/ |
mouse_cursor.cc | 23 const Point& hot_spot) { 28 &hot_spot.pp_point()));
|
mouse_cursor.h | 42 /// @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/ |
ppb_mouse_cursor_thunk.cc | 23 const struct PP_Point* hot_spot) { 28 return enter.functions()->SetCursor(instance, type, image, hot_spot);
|
ppb_cursor_control_thunk.cc | 21 const PP_Point* hot_spot) { 26 static_cast<PP_MouseCursor_Type>(type), custom_image, hot_spot);
|
ppb_instance_api.h | 115 const PP_Point* hot_spot) = 0;
|
/external/chromium_org/ppapi/shared_impl/ |
ppb_instance_shared.cc | 65 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)
|
ppb_instance_shared.h | 35 const PP_Point* hot_spot);
|
/external/chromium_org/ppapi/cpp/dev/ |
cursor_control_dev.h | 27 const Point& hot_spot);
|
cursor_control_dev.cc | 26 const Point& hot_spot) { 30 &hot_spot.pp_point()));
|
/external/chromium_org/ppapi/api/dev/ |
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/dev/ |
ppb_cursor_control_dev.h | 36 * 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/ |
dock_info.h | 39 // 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; } 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
|
dock_info_unittest.cc | 154 EXPECT_EQ(0, d.hot_spot().x()); 155 EXPECT_EQ(0, d.hot_spot().y());
|
/external/chromium/chrome/browser/ui/tabs/ |
dock_info.h | 53 // 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; } 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
|
dock_info_unittest.cc | 154 EXPECT_EQ(0, d.hot_spot().x()); 155 EXPECT_EQ(0, d.hot_spot().y());
|
dock_info_win.cc | 200 finder.result_.hot_spot(),
|
/external/chromium_org/ppapi/c/ |
ppb_mouse_cursor.h | 119 * @param[in] hot_spot When setting a custom cursor, this identifies the 129 const struct PP_Point* hot_spot);
|
/external/chromium_org/ppapi/api/ |
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/native_client_sdk/src/examples/api/mouse_cursor/ |
mouse_cursor.cc | 58 pp::Point hot_spot(16, 16); 59 pp::MouseCursor::SetCursor(this, cursor, custom_cursor_, hot_spot);
|
/external/chromium_org/ppapi/proxy/ |
ppb_instance_proxy.h | 89 const PP_Point* hot_spot) OVERRIDE; 195 const PP_Point& hot_spot);
|
ppb_instance_proxy.cc | 723 const PP_Point* hot_spot) { 728 if (!ValidateSetCursorParams(type, image, hot_spot)) 742 image_host_resource, hot_spot ? *hot_spot : PP_MakePoint(0, 0))); [all...] |
/external/chromium_org/chrome/browser/ui/views/tabs/ |
dock_info_win.cc | 226 finder.result_.hot_spot(),
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.cc | [all...] |
pepper_plugin_instance_impl.h | 416 const PP_Point* hot_spot) OVERRIDE; [all...] |