Home | History | Annotate | Download | only in modules

Lines Matching refs:arguments

153     {LispFunction, Lisp_XtCreateManagedWidget, "xt-create-managed-widget name widget-class parent &optional arguments"},
154 {LispFunction, Lisp_XtCreateWidget, "xt-create-widget name widget-class parent &optional arguments"},
155 {LispFunction, Lisp_XtCreatePopupShell, "xt-create-popup-shell name widget-class parent &optional arguments"},
158 {LispFunction, Lisp_XtGetValues, "xt-get-values widget arguments"},
175 {LispFunction, Lisp_XtSetValues, "xt-set-values widget arguments"},
292 /* user arguments */
317 /* callback name */ /* user arguments */
380 CallbackArgs *arguments;
405 arguments = XtNew(CallbackArgs);
406 arguments->data = data;
409 LispXtCallback, (XtPointer)arguments);
411 LispXtCleanupCallback, (XtPointer)arguments);
425 CallbackArgs *arguments;
457 arguments = XtNew(CallbackArgs);
458 arguments->data = data;
461 LispXtInputCallback, (XtPointer)arguments);
474 arguments;
746 xt-create-widget name widget-class parent &optional arguments
755 xt-create-managed-widget name widget-class parent &optional arguments
764 xt-create-popup-shell name widget-class parent &optional arguments
773 xt-create-widget name widget-class parent &optional arguments
774 xt-create-managed-widget name widget-class parent &optional arguments
775 xt-create-popup-shell name widget-class parent &optional arguments
783 LispObj *oname, *owidget_class, *oparent, *arguments;
785 arguments = ARGUMENT(3);
803 if (arguments == UNSPEC)
804 arguments = NIL;
805 CHECK_LIST(arguments);
812 if (arguments == NIL)
815 resources = LispConvertResources(arguments, widget,
848 xt-get-values widget arguments
863 LispObj *owidget, *arguments;
865 arguments = ARGUMENT(1);
868 if (arguments == NIL)
875 CHECK_CONS(arguments);
883 for (list = arguments; CONSP(list); list = CDR(list)) {
1160 xt-set-values widget arguments
1166 LispObj *owidget, *arguments;
1168 arguments = ARGUMENT(1);
1171 if (arguments == NIL)
1178 CHECK_CONS(arguments);
1179 resources = LispConvertResources(arguments, widget,