Searched refs:cparam (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/cups-408/cups/cups/
H A Demit.c612 ppd_cparam_t *cparam; /* Custom parameter */ local
660 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
661 cparam;
662 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
664 switch (cparam->type)
677 if (cparam->current.custom_string)
678 bufsize += strlen(cparam->current.custom_string);
706 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
707 cparam;
708 cparam
[all...]
H A Dmark.c828 ppd_cparam_t *cparam; /* Custom parameter */ local
834 if ((cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params)) == NULL)
837 switch (cparam->type)
842 cparam->current.custom_real = (float)_cupsStrScand(choice + 7,
847 cparam->current.custom_points = (float)_cupsStrScand(choice + 7,
854 cparam->current.custom_points *= 72.0f / 2.54f;
856 cparam->current.custom_points *= 72.0f / 25.4f;
858 cparam->current.custom_points *= 72.0f / 0.0254f;
860 cparam->current.custom_points *= 72.0f;
862 cparam
895 ppd_cparam_t *cparam; /* Custom parameter */ local
[all...]
H A Dtestppd.c931 ppd_cparam_t *cparam; /* Custom parameter */ local
981 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
982 cparam;
983 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
985 switch (cparam->type)
989 cparam->name, cparam->text,
990 cparam->minimum.custom_curve,
991 cparam->maximum.custom_curve);
996 cparam
[all...]
H A Dpage.c50 ppd_cparam_t *cparam; /* Custom option parameter */ local
138 if ((cparam = ppdFindCustomParam(coption, "Width")) != NULL)
139 cparam->current.custom_points = (float)w;
141 if ((cparam = ppdFindCustomParam(coption, "Height")) != NULL)
142 cparam->current.custom_points = (float)l;
H A Dppd.c108 ppd_cparam_t *cparam; /* Current custom parameter */ local
224 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
225 cparam;
226 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
228 switch (cparam->type)
233 _cupsStrFree(cparam->current.custom_string);
240 free(cparam);
913 ppd_cparam_t *cparam; /* Custom parameter */ local
931 if ((cparam = ppd_get_cparam(coption, name, text)) == NULL)
951 cparam
2574 ppd_cparam_t *cparam; /* New custom parameter */ local
[all...]
H A Dlocalize.c60 ppd_cparam_t *cparam; /* Current custom parameter */ local
127 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
128 cparam;
129 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
133 if ((locattr = _ppdLocalizedAttr(ppd, ckeyword, cparam->name,
135 strlcpy(cparam->text, locattr->text, sizeof(cparam->text));
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dadmin.c3110 ppd_cparam_t *cparam; /* Custom parameter */ local
3390 for (cparam = ppdFirstCustomParam(coption), m = 0;
3391 cparam;
3392 cparam = ppdNextCustomParam(coption), m ++)
3395 _cups_strcasecmp(cparam->name, "Width") &&
3396 _cups_strcasecmp(cparam->name, "Height"))
3402 cgiSetArray("PARAMS", m, cparam->name);
3403 cgiSetArray("PARAMTEXT", m, cparam->text);
3406 switch (cparam->type)
3427 cparam
3928 ppd_cparam_t *cparam; /* Current custom parameter */ local
[all...]
/macosx-10.10/cups-408/cups/systemv/
H A Dlpoptions.c427 ppd_cparam_t *cparam; /* Custom parameter */ local
449 cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
452 snprintf(ptr, sizeof(buffer) - (size_t)(ptr - buffer), " %sCustom.%s", choice->marked ? "*" : "", types[cparam->type]);
463 while (cparam)
465 snprintf(ptr, sizeof(buffer) - (size_t)(ptr - buffer), "%s%s=%s", prefix, cparam->name, types[cparam->type]);
466 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params);
H A Dcupstestppd.c3385 ppd_cparam_t *cparam; /* Custom parameter */ local
3520 for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
3521 cparam;
3522 cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
3530 cparam->name)) == NULL &&
3532 cparam->name)) == NULL)
3544 cparam->name);
3561 cparam->name);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/html/
H A Dhtml.tcl1128 # cparam Parameters for cells
1133 proc ::html::paramRow {list {rparam {}} {cparam {}}} {
1136 append html \t[cell $cparam $x td]\n

Completed in 252 milliseconds