Lines Matching defs:format
310 * a given type determines the format for that type. Any successive
311 * appends to that type must have the same format or an error will
332 Tk_ClipboardAppend(interp, tkwin, type, format, buffer)
337 Atom format; /* Format in which the selection
375 targetPtr->format = format;
380 type, ClipboardHandler, (ClientData) targetPtr, format);
381 } else if (targetPtr->format != format) {
382 Tcl_AppendResult(interp, "format \"", Tk_GetAtomName(tkwin, format),
383 "\" does not match current format \"",
384 Tk_GetAtomName(tkwin, targetPtr->format),"\" for ",
453 Atom target, format;
471 && (strncmp(args[0], "-format", length) == 0)) {
499 format = Tk_InternAtom(tkwin, formatName);
501 format = XA_STRING;
503 return Tk_ClipboardAppend(interp, tkwin, target, format, args[0]);