Home
last modified time | relevance | path

Searched defs:command_id (Results 1 – 25 of 32) sorted by relevance

12

/third_party/cef/libcef/browser/
Dsimple_menu_model_impl.cc107 bool CefSimpleMenuModelImpl::AddItem(int command_id, const CefString& label) { in AddItem()
115 bool CefSimpleMenuModelImpl::AddCheckItem(int command_id, in AddCheckItem()
124 bool CefSimpleMenuModelImpl::AddRadioItem(int command_id, in AddRadioItem()
135 int command_id, in AddSubMenu()
154 int command_id, in InsertItemAt()
164 int command_id, in InsertCheckItemAt()
174 int command_id, in InsertRadioItemAt()
186 int command_id, in InsertSubMenuAt()
196 bool CefSimpleMenuModelImpl::Remove(int command_id) { in Remove()
218 int CefSimpleMenuModelImpl::GetIndexOf(int command_id) { in GetIndexOf()
[all …]
Dmenu_model_impl.cc282 bool CefMenuModelImpl::AddItem(int command_id, const CefString& label) { in AddItem()
290 bool CefMenuModelImpl::AddCheckItem(int command_id, const CefString& label) { in AddCheckItem()
298 bool CefMenuModelImpl::AddRadioItem(int command_id, in AddRadioItem()
308 CefRefPtr<CefMenuModel> CefMenuModelImpl::AddSubMenu(int command_id, in AddSubMenu()
330 int command_id, in InsertItemAt()
341 int command_id, in InsertCheckItemAt()
352 int command_id, in InsertRadioItemAt()
364 int command_id, in InsertSubMenuAt()
375 bool CefMenuModelImpl::Remove(int command_id) { in Remove()
390 int CefMenuModelImpl::GetIndexOf(int command_id) { in GetIndexOf()
[all …]
Dmenu_manager.cc62 void Continue(int command_id, cef_event_flags_t event_flags) override { in Continue()
81 int command_id, in RunNow()
207 int command_id, in ExecuteCommand()
281 void CefMenuManager::ExecuteCommandCallback(int command_id, in ExecuteCommandCallback()
379 void CefMenuManager::ExecuteDefaultCommand(int command_id) { in ExecuteDefaultCommand()
463 bool CefMenuManager::IsCustomContextMenuCommand(int command_id) { in IsCustomContextMenuCommand()
/third_party/cef/libcef/browser/chrome/
Dchrome_context_menu_handler.cc41 bool IsCommandIdSupported(int command_id) override { in IsCommandIdSupported()
51 bool IsCommandIdEnabled(int command_id) override { in IsCommandIdEnabled()
57 bool IsCommandIdChecked(int command_id) override { in IsCommandIdChecked()
63 bool GetAccelerator(int command_id, ui::Accelerator* accel) override { in GetAccelerator()
72 void CommandWillBeExecuted(int command_id) override { in CommandWillBeExecuted()
82 void ExecuteCommand(int command_id) override { in ExecuteCommand()
105 void SetChecked(int command_id, bool checked) override { in SetChecked()
116 void SetAccelerator(int command_id, in SetAccelerator()
136 ItemInfo* GetItemInfo(int command_id) { in GetItemInfo()
144 ItemInfo* GetOrCreateItemInfo(int command_id) { in GetOrCreateItemInfo()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Dmenu_model_ctocpp.cc108 bool CefMenuModelCToCpp::AddItem(int command_id, const CefString& label) { in AddItem()
130 bool CefMenuModelCToCpp::AddCheckItem(int command_id, const CefString& label) { in AddCheckItem()
152 bool CefMenuModelCToCpp::AddRadioItem(int command_id, in AddRadioItem()
177 CefRefPtr<CefMenuModel> CefMenuModelCToCpp::AddSubMenu(int command_id, in AddSubMenu()
218 int command_id, in InsertItemAt()
243 int command_id, in InsertCheckItemAt()
268 int command_id, in InsertRadioItemAt()
295 int command_id, in InsertSubMenuAt()
318 NO_SANITIZE("cfi-icall") bool CefMenuModelCToCpp::Remove(int command_id) { in Remove()
350 NO_SANITIZE("cfi-icall") int CefMenuModelCToCpp::GetIndexOf(int command_id) { in GetIndexOf()
[all …]
Drun_context_menu_callback_ctocpp.cc21 void CefRunContextMenuCallbackCToCpp::Continue(int command_id, in Continue()
Dcontext_menu_handler_ctocpp.cc114 int command_id, in OnContextMenuCommand()
Dmenu_model_delegate_ctocpp.cc24 int command_id, in ExecuteCommand()
/third_party/cef/libcef_dll/cpptoc/
Dmenu_model_cpptoc.cc109 int command_id, in menu_model_add_item()
132 int command_id, in menu_model_add_check_item()
155 int command_id, in menu_model_add_radio_item()
180 int command_id, in menu_model_add_sub_menu()
221 int command_id, in menu_model_insert_item_at()
245 int command_id, in menu_model_insert_check_item_at()
269 int command_id, in menu_model_insert_radio_item_at()
295 int command_id, in menu_model_insert_sub_menu_at()
319 int command_id) { in menu_model_remove()
353 int command_id) { in menu_model_get_index_of()
[all …]
Drun_context_menu_callback_cpptoc.cc24 int command_id, in run_context_menu_callback_cont()
Dcontext_menu_handler_cpptoc.cc114 int command_id, in context_menu_handler_on_context_menu_command()
Dmenu_model_delegate_cpptoc.cc26 int command_id, in menu_model_delegate_execute_command()
/third_party/cef/libcef/browser/views/
Dtextfield_impl.cc10 static int CefCommandIdToChromeId(cef_text_field_commands_t command_id) { in CefCommandIdToChromeId()
176 bool CefTextfieldImpl::IsCommandEnabled(cef_text_field_commands_t command_id) { in IsCommandEnabled()
181 void CefTextfieldImpl::ExecuteCommand(cef_text_field_commands_t command_id) { in ExecuteCommand()
Dwindow_impl.cc587 void CefWindowImpl::SetAccelerator(int command_id, in SetAccelerator()
618 void CefWindowImpl::RemoveAccelerator(int command_id) { in RemoveAccelerator()
/third_party/gstreamer/gstplugins_good/sys/rpicamsrc/
DRaspiCLI.c65 int command_id = -1; in raspicli_get_command_id() local
/third_party/cef/include/
Dcef_context_menu_handler.h122 int command_id, in OnContextMenuCommand()
/third_party/cef/include/views/
Dcef_window_delegate.h141 virtual bool OnAccelerator(CefRefPtr<CefWindow> window, int command_id) { in OnAccelerator()
/third_party/cef/tests/ceftests/views/
Dtest_window_delegate.cc162 int command_id) { in OnAccelerator()
Dwindow_unittest.cc441 bool OnAccelerator(CefRefPtr<CefWindow> window, int command_id) { in OnAccelerator()
/third_party/cef/tests/cefclient/browser/
Dviews_window.cc460 int command_id, in ExecuteCommand()
623 bool ViewsWindow::OnAccelerator(CefRefPtr<CefWindow> window, int command_id) { in OnAccelerator()
756 int command_id, in MenuBarExecuteCommand()
Dviews_menu_bar.cc177 int command_id, in ExecuteCommand()
/third_party/cef/libcef_dll/ctocpp/views/
Dwindow_delegate_ctocpp.cc266 int command_id) { in OnAccelerator()
Dtextfield_ctocpp.cc431 cef_text_field_commands_t command_id) { in IsCommandEnabled()
448 void CefTextfieldCToCpp::ExecuteCommand(cef_text_field_commands_t command_id) { in ExecuteCommand()
/third_party/cef/libcef_dll/cpptoc/views/
Dwindow_delegate_cpptoc.cc274 int command_id) { in window_delegate_on_accelerator()
Dtextfield_cpptoc.cc458 cef_text_field_commands_t command_id) { in textfield_is_command_enabled()
476 cef_text_field_commands_t command_id) { in textfield_execute_command()

12