HomeSort by relevance Sort by last modified time
    Searched refs:ContextMenuAction (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/efl/
ContextMenuItemEfl.cpp 44 ContextMenuItem::ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, ContextMenu*)
60 void ContextMenuItem::setAction(ContextMenuAction)
65 ContextMenuAction ContextMenuItem::action() const
  /external/webkit/Source/WebCore/platform/
ContextMenuItem.cpp 35 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems)
90 void ContextMenuItem::setAction(ContextMenuAction action)
95 ContextMenuAction ContextMenuItem::action() const
ContextMenuItem.h 60 enum ContextMenuAction {
186 ContextMenuAction action;
204 ContextMenuAction action;
220 ContextMenuAction action;
232 ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, ContextMenu* subMenu = 0);
233 ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, bool enabled, bool checked);
240 void setAction(ContextMenuAction);
241 ContextMenuAction action() const;
257 ContextMenuItem(ContextMenuAction, const String&, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems);
272 ContextMenuItem(ContextMenuAction, const String&, bool enabled, bool checked, Vector<ContextMenuItem>& submenuItems)
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
ContextMenuItemQt.cpp 42 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
52 ContextMenuItem::ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, bool, bool)
57 ContextMenuItem::ContextMenuItem(ContextMenuAction, const String&, bool, bool, Vector<ContextMenuItem>&)
81 ContextMenuAction ContextMenuItem::action() const
86 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebKit2/Shared/
WebContextMenuItemData.h 49 WebContextMenuItemData(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, const String& title, bool enabled, bool checked);
50 WebContextMenuItemData(WebCore::ContextMenuAction, const String& title, bool enabled, const Vector<WebContextMenuItemData>& submenu);
53 WebCore::ContextMenuAction action() const { return m_action; }
69 WebCore::ContextMenuAction m_action;
WebContextMenuItemData.cpp 47 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuItemType type, WebCore::ContextMenuAction action, const String& title, bool enabled, bool checked)
57 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuAction action, const String& title, bool enabled, const Vector<WebContextMenuItemData>& submenu)
125 item = WebContextMenuItemData(static_cast<WebCore::ContextMenuItemType>(type), static_cast<WebCore::ContextMenuAction>(action), title, enabled, checked);
128 item = WebContextMenuItemData(static_cast<WebCore::ContextMenuAction>(action), title, enabled, submenu);
  /external/webkit/Source/WebCore/platform/brew/
ContextMenuItemBrew.cpp 49 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
75 ContextMenuAction ContextMenuItem::action() const
102 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebCore/platform/chromium/
ContextMenuItemChromium.cpp 47 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
68 ContextMenuAction ContextMenuItem::action() const
98 void ContextMenuItem::setAction(ContextMenuAction action)
ContextMenuChromium.cpp 69 if (m_items[i].action() == static_cast<ContextMenuAction>(action))
  /external/webkit/Source/WebCore/platform/wx/
ContextMenuItemWx.cpp 44 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
75 ContextMenuAction ContextMenuItem::action() const
80 void ContextMenuItem::setAction(ContextMenuAction action)
ContextMenuWx.cpp 37 typedef WTF::HashMap<int, ContextMenuAction> ItemActionMap;
  /external/webkit/Source/WebCore/platform/haiku/
ContextMenuItemHaiku.cpp 52 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
88 ContextMenuAction theAction = action();
106 ContextMenuAction ContextMenuItem::action() const
110 return static_cast<WebCore::ContextMenuAction>(m_platformDescription->Message()->what);
113 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebCore/platform/gtk/
ContextMenuItemGtk.cpp 35 static const char* gtkStockIDFromContextMenuAction(const ContextMenuAction& action)
131 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
155 ContextMenuItem::ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, bool, bool)
161 ContextMenuItem::ContextMenuItem(ContextMenuAction, const String&, bool, bool, Vector<ContextMenuItem>&)
195 ContextMenuAction ContextMenuItem::action() const
197 return static_cast<ContextMenuAction>(GPOINTER_TO_INT(g_object_get_data(G_OBJECT(m_platformDescription), WEBKIT_CONTEXT_MENU_ACTION)));
200 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebCore/platform/mac/
ContextMenuItemMac.mm 61 static PlatformMenuItemDescription createPlatformMenuItemDescription(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
74 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
82 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
87 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, Vector<ContextMenuItem>& subMenuItems)
114 ContextMenuAction ContextMenuItem::action() const
116 return static_cast<ContextMenuAction>([m_platformDescription.get() tag]);
135 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 199 ContextMenuItem::ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, ContextMenu*)
231 ContextMenuAction ContextMenuItem::action() const
238 void ContextMenuItem::setAction(ContextMenuAction)
  /external/webkit/Source/WebCore/bindings/js/
JSInspectorFrontendHostCustom.cpp 109 ContextMenuAction typedId = static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + id.toInt32(exec));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InspectorFrontendHostCustom.cpp 96 ContextMenuAction typedId = static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + id->ToInt32()->Value());
  /external/webkit/Source/WebCore/platform/win/
ContextMenuItemWin.cpp 61 m_action = static_cast<ContextMenuAction>(info.wID);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebContextMenu.cpp 92 ContextMenuItem coreItem(ActionType, static_cast<ContextMenuAction>(item.action()), item.title());
  /external/webkit/Source/WebKit2/UIProcess/qt/
WebContextMenuProxyQt.cpp 40 static QWKPage::WebAction webActionForContextMenuAction(WebCore::ContextMenuAction action)
  /external/webkit/Source/WebKit/efl/ewk/
ewk_contextmenu.cpp 171 WebCore::ContextMenuAction action = static_cast<WebCore::ContextMenuAction>(item->action);
  /external/webkit/Source/WebKit2/Shared/API/c/
WKSharedAPICast.h 292 inline WKContextMenuItemTag toAPI(WebCore::ContextMenuAction action)
465 LOG_ERROR("ContextMenuAction %i is an unknown tag but is below the allowable custom tag value of %i", action, WebCore:: ContextMenuItemBaseApplicationTag);
470 inline WebCore::ContextMenuAction toImpl(WKContextMenuItemTag tag)
644 return static_cast<WebCore::ContextMenuAction>(tag);
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebContextMenuProxyMac.mm 93 WebKit::WebContextMenuItemData item(ActionType, static_cast<ContextMenuAction>([sender tag]), [sender title], [sender isEnabled], [sender state] == NSOnState);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 63 static WebCore::ContextMenuAction contextMenuActionForWebAction(QWKPage::WebAction action)
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]

Completed in 566 milliseconds

1 2