HomeSort by relevance Sort by last modified time
    Searched full:cursor_info (Results 1 - 25 of 27) sorted by null

1 2

  /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;
  /external/chromium/webkit/glue/
webcursor_mac.mm 172 WebKit::WebCursorInfo cursor_info;
176 cursor_info.type = WebCursorInfo::TypePointer;
179 cursor_info.type = WebCursorInfo::TypeCopy;
182 cursor_info.type = WebCursorInfo::TypeAlias;
185 cursor_info.type = WebCursorInfo::TypeContextMenu;
188 cursor_info.type = WebCursorInfo::TypeIBeam;
192 cursor_info.type = WebCursorInfo::TypeCross;
196 cursor_info.type = WebCursorInfo::TypeWait;
199 cursor_info.type = WebCursorInfo::TypeGrabbing;
202 cursor_info.type = WebCursorInfo::TypeGrab
    [all...]
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/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_mac.mm 312 CursorInfo cursor_info;
315 cursor_info.type = WebCursorInfo::TypePointer;
317 cursor_info.type = WebCursorInfo::TypeIBeam;
319 cursor_info.type = WebCursorInfo::TypeCross;
321 cursor_info.type = WebCursorInfo::TypeHand;
323 cursor_info.type = WebCursorInfo::TypeWestResize;
325 cursor_info.type = WebCursorInfo::TypeEastResize;
327 cursor_info.type = WebCursorInfo::TypeEastWestResize;
329 cursor_info.type = WebCursorInfo::TypeNorthResize;
331 cursor_info.type = WebCursorInfo::TypeSouthResize
    [all...]
webcursor.h 72 explicit WebCursor(const CursorInfo& cursor_info);
80 void InitFromCursorInfo(const CursorInfo& cursor_info);
81 void GetCursorInfo(CursorInfo* cursor_info) const;
  /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 262 WebCursor::CursorInfo* cursor_info) {
271 bool handled = PlatformHandleInputEvent(event, cursor_info);
webplugin_delegate_impl.h 97 WebCursor::CursorInfo* cursor_info) OVERRIDE;
286 WebCursor::CursorInfo* cursor_info);
webplugin_delegate_impl_mac.mm 291 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
292 DCHECK(cursor_info != NULL);
325 current_windowless_cursor_.GetCursorInfo(cursor_info);
webplugin_delegate_impl_win.cc     [all...]
webplugin_delegate_impl_gtk.cc 716 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
  /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/plugin/
webplugin_delegate_stub.cc 279 WebCursor::CursorInfo cursor_info; local
280 *handled = delegate_->HandleInputEvent(*event, &cursor_info);
281 cursor->InitFromCursorInfo(cursor_info);
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.h 59 blink::WebCursorInfo& cursor_info);
pepper_webplugin_impl.cc 196 blink::WebCursorInfo& cursor_info) {
199 return instance_->HandleInputEvent(event, &cursor_info);
pepper_plugin_instance_impl.cc 1988 blink::WebCursorInfo cursor_info; local
    [all...]
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 94 blink::WebCursorInfo& cursor_info);
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 406 const WebInputEvent& event, WebCursorInfo& cursor_info) {
413 cursor_info.type = web_cursor_info.type;
414 cursor_info.hotSpot = web_cursor_info.hotspot;
415 cursor_info.customImage = web_cursor_info.custom_image;
416 cursor_info.imageScaleFactor = web_cursor_info.image_scale_factor;
418 cursor_info.externalHandle = web_cursor_info.external_handle;
    [all...]
webplugin_impl.h 89 const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info);
webplugin_delegate_proxy.cc 777 WebCursor::CursorInfo* cursor_info) {
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 171 blink::WebCursorInfo& cursor_info) OVERRIDE;
browser_plugin.cc     [all...]

Completed in 292 milliseconds

1 2