Lines Matching defs:result

58  *	interp->result will hold an error message.
219 * in interp->result.
550 sprintf(interp->result, "bad config table: unknown type %d",
570 * Always returns TCL_OK. Interp->result will be modified
573 * options available. In the "all" case, the result will
574 * available for "widgRec" via "specs". The result will
629 interp->result = FormatConfigInfo(interp, tkwin, specPtr, widgRec);
687 char *argv[6], *result;
712 result = Tcl_Merge(5, argv);
720 return result;
737 * free the result, and the caller must invoke this procedure
738 * when it is finished with the result.
757 * of procedure to free the result, or NULL
758 * if result is static. */
760 char *ptr, *result;
764 result = "";
768 result = "0";
770 result = "1";
775 result = buffer;
779 result = buffer;
782 result = (*(char **) ptr);
783 if (result == NULL) {
784 result = "";
790 result = uid;
797 result = Tk_NameOfColor(colorPtr);
804 result = Tk_NameOfFontStruct(fontStructPtr);
811 result = Tk_NameOfBitmap(Tk_Display(tkwin), pixmap);
818 result = Tk_NameOf3DBorder(border);
823 result = Tk_NameOfRelief(*((int *) ptr));
829 result = Tk_NameOfCursor(Tk_Display(tkwin), cursor);
834 result = Tk_NameOfJustify(*((Tk_Justify *) ptr));
837 result = Tk_NameOfAnchor(*((Tk_Anchor *) ptr));
840 result = Tk_NameOfCapStyle(*((int *) ptr));
843 result = Tk_NameOfJoinStyle(*((int *) ptr));
847 result = buffer;
851 result = buffer;
858 result = Tk_PathName(tkwin);
863 result = (*specPtr->customPtr->printProc)(
868 result = "?? unknown type ??";
870 return result;
884 * TCL_ERROR). Interp->result will be set to hold either the value
920 interp->result = FormatConfigValue(interp, tkwin, specPtr, widgRec,
921 interp->result, &interp->freeProc);