Home | History | Annotate | Download | only in cups

Lines Matching defs:width

37   double	w, l;			/* Width and length of page */
116 size->width = (float)w;
129 if ((cparam = ppdFindCustomParam(coption, "Width")) != NULL)
141 size->name, size->width, size->length));
155 size->name, size->width, size->length));
171 size->name, size->width, size->length));
203 float width, /* Min/max width */
242 * Figure out the current minimum width and length...
245 width = ppd->custom_min[0];
276 sscanf(attr->value, "%f%f", &width, &length) != 2) || !attr)
278 width = ppd->custom_min[0];
283 minimum->width = width;
287 minimum->right = width - ppd->custom_margins[2];
291 * Figure out the current maximum width and length...
294 width = ppd->custom_max[0];
325 (attr->value && sscanf(attr->value, "%f%f", &width, &length) != 2))
327 width = ppd->custom_max[0];
332 maximum->width = width;
336 maximum->right = width - ppd->custom_margins[2];
350 * 'ppdPageWidth()' - Get the page width for the given size.
353 float /* O - Width of page in points or 0.0 */
363 return (size->width);