HomeSort by relevance Sort by last modified time
    Searched refs:cursor_info (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/content/renderer/
cursor_utils.cc 17 WebCursor::CursorInfo cursor_info; local
18 cursor.GetCursorInfo(&cursor_info);
20 webkit_cursor_info->type = cursor_info.type;
21 webkit_cursor_info->hotSpot = cursor_info.hotspot;
22 webkit_cursor_info->customImage = cursor_info.custom_image;
23 webkit_cursor_info->imageScaleFactor = cursor_info.image_scale_factor;
25 webkit_cursor_info->externalHandle = cursor_info.external_handle;
render_widget.cc     [all...]
  /external/chromium_org/webkit/common/cursors/
webcursor.cc 24 WebCursor::WebCursor(const CursorInfo& cursor_info)
30 InitFromCursorInfo(cursor_info);
51 void WebCursor::InitFromCursorInfo(const CursorInfo& cursor_info) {
55 if (cursor_info.external_handle) {
56 InitFromExternalCursor(cursor_info.external_handle);
61 type_ = cursor_info.type;
62 hotspot_ = cursor_info.hotspot;
64 SetCustomData(cursor_info.custom_image);
65 custom_scale_ = cursor_info.image_scale_factor;
70 void WebCursor::GetCursorInfo(CursorInfo* cursor_info) const
    [all...]
webcursor.h 68 explicit WebCursor(const CursorInfo& cursor_info);
76 void InitFromCursorInfo(const CursorInfo& cursor_info);
77 void GetCursorInfo(CursorInfo* cursor_info) const;
  /external/chromium/webkit/glue/
webcursor.cc 22 WebCursor::WebCursor(const WebCursorInfo& cursor_info)
25 InitFromCursorInfo(cursor_info);
46 void WebCursor::InitFromCursorInfo(const WebCursorInfo& cursor_info) {
50 if (cursor_info.externalHandle) {
51 InitFromExternalCursor(cursor_info.externalHandle);
56 type_ = cursor_info.type;
57 hotspot_ = cursor_info.hotSpot;
59 SetCustomData(cursor_info.customImage);
63 void WebCursor::GetCursorInfo(WebCursorInfo* cursor_info) const {
64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_)
    [all...]
webcursor.h 45 explicit WebCursor(const WebKit::WebCursorInfo& cursor_info);
53 void InitFromCursorInfo(const WebKit::WebCursorInfo& cursor_info);
54 void GetCursorInfo(WebKit::WebCursorInfo* cursor_info) const;
  /external/chromium_org/third_party/sqlite/src/tool/
fragck.tcl 55 proc cursor_info {arrayvar csr {up 0}} { procedure
109 cursor_info ci $csr $up
127 cursor_info ci $csr $i
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_android.cc 75 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
webplugin_delegate_impl_aura.cc 62 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
webplugin_delegate_impl.cc 258 WebCursor::CursorInfo* cursor_info) {
267 bool handled = PlatformHandleInputEvent(event, cursor_info);
webplugin_delegate_impl.h 95 WebCursor::CursorInfo* cursor_info) OVERRIDE;
272 WebCursor::CursorInfo* cursor_info);
webplugin_delegate_impl_win.cc     [all...]
webplugin_delegate_impl_gtk.cc 716 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
  /external/chromium_org/content/plugin/
webplugin_delegate_stub.cc 277 WebCursor::CursorInfo cursor_info; local
278 *handled = delegate_->HandleInputEvent(*event, &cursor_info);
279 cursor->InitFromCursorInfo(cursor_info);
  /external/chromium_org/chrome/renderer/plugins/
webview_plugin.h 93 WebKit::WebCursorInfo& cursor_info);
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.h 57 WebKit::WebCursorInfo& cursor_info);
pepper_webplugin_impl.cc 193 WebKit::WebCursorInfo& cursor_info) {
196 return instance_->HandleInputEvent(event, &cursor_info);
pepper_plugin_instance_impl.cc 1877 WebKit::WebCursorInfo cursor_info; local
    [all...]
pepper_plugin_instance_impl.h 181 WebKit::WebCursorInfo* cursor_info);
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 416 const WebInputEvent& event, WebCursorInfo& cursor_info) {
423 cursor_info.type = web_cursor_info.type;
424 cursor_info.hotSpot = web_cursor_info.hotspot;
425 cursor_info.customImage = web_cursor_info.custom_image;
426 cursor_info.imageScaleFactor = web_cursor_info.image_scale_factor;
428 cursor_info.externalHandle = web_cursor_info.external_handle;
    [all...]
webplugin_impl.h 88 const WebKit::WebInputEvent& event, WebKit::WebCursorInfo& cursor_info);
webplugin_delegate_proxy.cc 778 WebCursor::CursorInfo* cursor_info) {
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 167 WebKit::WebCursorInfo& cursor_info) OVERRIDE;
browser_plugin.cc     [all...]

Completed in 277 milliseconds