Home
last modified time | relevance | path

Searched refs:action_namespace (Results 1 – 25 of 74) sorted by relevance

123

/dports/sysutils/py-borgmatic/borgmatic-1.5.21/tests/unit/commands/
H A Dtest_arguments.py7 action_namespace = flexmock(foo=True)
17 assert arguments == {'action': action_namespace}
22 action_namespace = flexmock(foo=True)
32 assert arguments == {'action': action_namespace}
37 action_namespace = flexmock(foo=True)
51 assert arguments == {'action': action_namespace}
56 action_namespace = flexmock(foo=True)
97 action_namespace = flexmock()
114 action_namespace = flexmock()
131 action_namespace = flexmock(options=[])
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkmenutracker.c76 gchar *action_namespace; member
320 gchar *action_namespace = NULL; in gtk_menu_tracker_add_items() local
327 … G_MENU_ATTRIBUTE_ACTION_NAMESPACE, "s", &action_namespace); in gtk_menu_tracker_add_items()
329 if (section->action_namespace) in gtk_menu_tracker_add_items()
333 namespace = g_strjoin (".", section->action_namespace, action_namespace, NULL); in gtk_menu_tracker_add_items()
341 g_free (action_namespace); in gtk_menu_tracker_add_items()
350 section->action_namespace, submenu != NULL); in gtk_menu_tracker_add_items()
468 g_free (section->action_namespace); in gtk_menu_tracker_section_free()
479 const gchar *action_namespace) in gtk_menu_tracker_section_new() argument
486 section->action_namespace = g_strdup (action_namespace); in gtk_menu_tracker_section_new()
[all …]
H A Dgtkmenutrackeritem.c89 gchar *action_namespace; member
203 g_free (self->action_namespace); in gtk_menu_tracker_item_finalize()
489 const gchar *action_namespace, in _gtk_menu_tracker_item_new() argument
501 self->action_namespace = g_strdup (action_namespace); in _gtk_menu_tracker_item_new()
535 self->action_and_target = gtk_print_action_and_target (action_namespace, action_name, target); in _gtk_menu_tracker_item_new()
753 if (self->action_namespace) in _gtk_menu_tracker_item_get_link_namespace()
754 return g_strjoin (".", self->action_namespace, namespace, NULL); in _gtk_menu_tracker_item_get_link_namespace()
759 return g_strdup (self->action_namespace); in _gtk_menu_tracker_item_get_link_namespace()
922 if (item->action_namespace) in gtk_menu_tracker_opener_new()
923 opener->submenu_action = g_strjoin (".", item->action_namespace, submenu_action, NULL); in gtk_menu_tracker_opener_new()
H A Dgtkmenusectionbox.h47 … const gchar *action_namespace,
H A Dgtkmenutracker.h40 … const gchar *action_namespace,
H A Dgtkactionmuxer.h60 … gtk_print_action_and_target (const gchar *action_namespace,
H A Dgtkactionmuxer.c943 gtk_print_action_and_target (const gchar *action_namespace, in gtk_print_action_and_target() argument
950 g_return_val_if_fail (action_namespace == NULL || strchr (action_namespace, '|') == NULL, NULL); in gtk_print_action_and_target()
958 if (action_namespace) in gtk_print_action_and_target()
960 g_string_append (result, action_namespace); in gtk_print_action_and_target()
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkmenutracker.c74 char *action_namespace; member
319 char *action_namespace = NULL; in gtk_menu_tracker_add_items() local
326 … G_MENU_ATTRIBUTE_ACTION_NAMESPACE, "s", &action_namespace); in gtk_menu_tracker_add_items()
328 if (section->action_namespace) in gtk_menu_tracker_add_items()
332 namespace = g_strjoin (".", section->action_namespace, action_namespace, NULL); in gtk_menu_tracker_add_items()
340 g_free (action_namespace); in gtk_menu_tracker_add_items()
349 section->action_namespace, submenu != NULL); in gtk_menu_tracker_add_items()
468 g_free (section->action_namespace); in gtk_menu_tracker_section_free()
479 const char *action_namespace) in gtk_menu_tracker_section_new() argument
486 section->action_namespace = g_strdup (action_namespace); in gtk_menu_tracker_section_new()
[all …]
H A Dgtkmenutrackeritem.c86 char *action_namespace; member
200 g_free (self->action_namespace); in gtk_menu_tracker_item_finalize()
490 const char *action_namespace, in _gtk_menu_tracker_item_new() argument
502 self->action_namespace = g_strdup (action_namespace); in _gtk_menu_tracker_item_new()
536 self->action_and_target = gtk_print_action_and_target (action_namespace, action_name, target); in _gtk_menu_tracker_item_new()
764 if (self->action_namespace) in _gtk_menu_tracker_item_get_link_namespace()
765 return g_strjoin (".", self->action_namespace, namespace, NULL); in _gtk_menu_tracker_item_get_link_namespace()
770 return g_strdup (self->action_namespace); in _gtk_menu_tracker_item_get_link_namespace()
969 if (item->action_namespace) in gtk_menu_tracker_opener_new()
970 opener->submenu_action = g_strjoin (".", item->action_namespace, submenu_action, NULL); in gtk_menu_tracker_opener_new()
H A Dgtkmenutrackerprivate.h40 … const char *action_namespace,
/dports/www/p5-Catalyst-Runtime/Catalyst-Runtime-5.90128/lib/Catalyst/
H A DController.pm29 has action_namespace => ( attribute in Catalyst::Controller
195 return $app->dispatcher->get_action($name, $self->action_namespace);
201 around action_namespace => sub { wrapper in Catalyst::Controller
242 my $namespace = $self->action_namespace(@_);
278 my $namespace = $self->action_namespace($c);
511 $value = '/'.$self->action_namespace($c);
513 my @parts = split '/', $self->action_namespace($c);
518 my $action_ns = $self->action_namespace($c);
/dports/audio/rhythmbox/rhythmbox-3.4.4/sources/
H A Drb-source-search.c207 rb_source_search_add_to_menu (GMenu *menu, const char *action_namespace, GAction *action, const cha… in rb_source_search_add_to_menu() argument
216 if (action_namespace != NULL) { in rb_source_search_add_to_menu()
217 action_name = g_strdup_printf ("%s.%s", action_namespace, g_action_get_name (action)); in rb_source_search_add_to_menu()
H A Drb-source-search-basic.c283 rb_source_search_basic_add_to_menu (GMenu *menu, const char *action_namespace, GAction *search_acti… in rb_source_search_basic_add_to_menu() argument
286 rb_source_search_add_to_menu (menu, action_namespace, search_action, name); in rb_source_search_basic_add_to_menu()
H A Drb-source-search-basic.h72 const char *action_namespace,
H A Drb-source-search.h82 const char *action_namespace,
/dports/www/p5-Catalyst-Runtime/Catalyst-Runtime-5.90128/t/aggregate/
H A Dunit_controller_namespace.t22 is(MyApp::Controller::Foo->action_namespace('Stub'), 'foo');
24 is(MyApp::Controller::Root->action_namespace('Stub'), '');
/dports/deskutils/gnome-photos/gnome-photos-40.0/src/
H A Dphotos-removable-devices-button.c56 const gchar *action_namespace = "app"; in photos_removable_devices_button_refresh_devices() local
90 action_name = g_strconcat (action_namespace, ".", action_id, NULL); in photos_removable_devices_button_refresh_devices()
111 action_name = g_strconcat (action_namespace, ".", action_id, NULL); in photos_removable_devices_button_refresh_devices()
/dports/x11-toolkits/gtkmm30/gtkmm-3.24.2/gtk/gtkmm/
H A Dpopover.cc278 …pover::bind_model(const Glib::RefPtr<Gio::MenuModel>& model, const Glib::ustring& action_namespace) in bind_model() argument
280 …k_popover_bind_model(gobj(), Glib::unwrap(model), action_namespace.empty() ? nullptr : action_name… in bind_model()
H A Dmenushell.cc497 …del(const Glib::RefPtr<Gio::MenuModel>& model, const Glib::ustring& action_namespace, bool with_se… in bind_model() argument
499 …enu_shell_bind_model(gobj(), Glib::unwrap(model), action_namespace.empty() ? nullptr : action_name… in bind_model()
/dports/x11/nwg-drawer/nwg-drawer-0.2.8/vendor/github.com/gotk3/gotk3/gtk/
H A Dmenu_shell.go147 action_namespace string, with_separators bool) {
149 cstr := C.CString(action_namespace)
/dports/x11/nwg-dock/nwg-dock-0.2.2/vendor/github.com/gotk3/gotk3/gtk/
H A Dmenu_shell.go147 action_namespace string, with_separators bool) {
149 cstr := C.CString(action_namespace)
/dports/x11/nwg-bar/nwg-bar-0.0.1/vendor/github.com/gotk3/gotk3/gtk/
H A Dmenu_shell.go147 action_namespace string, with_separators bool) {
149 cstr := C.CString(action_namespace)
/dports/x11/nwg-menu/nwg-menu-0.1.1/vendor/github.com/gotk3/gotk3/gtk/
H A Dmenu_shell.go147 action_namespace string, with_separators bool) {
149 cstr := C.CString(action_namespace)
/dports/x11/gnome-shell/gnome-shell-41.1/src/
H A Dgtkactionmuxer.h58 … gtk_print_action_and_target (const gchar *action_namespace,
H A Dgtkactionmuxer.c921 gtk_print_action_and_target (const gchar *action_namespace, in gtk_print_action_and_target() argument
928 g_return_val_if_fail (action_namespace == NULL || strchr (action_namespace, '|') == NULL, NULL); in gtk_print_action_and_target()
936 if (action_namespace) in gtk_print_action_and_target()
938 g_string_append (result, action_namespace); in gtk_print_action_and_target()

123