Home
last modified time | relevance | path

Searched refs:size_found (Results 1 – 3 of 3) sorted by relevance

/third_party/cups-filters/cupsfilters/
Draster.c89 pwg_media_t *size_found; /* page size found for given name */ in cupsRasterParseIPPOptions() local
176 size_found = NULL; in cupsRasterParseIPPOptions()
177 if ((size_found = pwgMediaForPWG(s)) == NULL) in cupsRasterParseIPPOptions()
178 if ((size_found = pwgMediaForPPD(s)) == NULL) in cupsRasterParseIPPOptions()
179 if ((size_found = pwgMediaForPPD(s)) == NULL) in cupsRasterParseIPPOptions()
200 if (page_size == NULL && size_found) in cupsRasterParseIPPOptions()
201 page_size = strdup(size_found->pwg); in cupsRasterParseIPPOptions()
609 size_found = NULL; in cupsRasterParseIPPOptions()
610 if ((size_found = pwgMediaForPWG(val)) == NULL) in cupsRasterParseIPPOptions()
611 if ((size_found = pwgMediaForPPD(val)) == NULL) in cupsRasterParseIPPOptions()
[all …]
/third_party/cups-filters/filter/
Dbannertopdf.c83 pwg_media_t *size_found; /* page size found for given name */ in get_pagesize() local
121 size_found = NULL; in get_pagesize()
122 if ((size_found = pwgMediaForPWG(s)) == NULL) in get_pagesize()
123 if ((size_found = pwgMediaForPPD(s)) == NULL) in get_pagesize()
124 size_found = pwgMediaForLegacy(s); in get_pagesize()
125 if (size_found != NULL) { in get_pagesize()
126 *width = size_found->width * 72.0 / 2540.0; in get_pagesize()
127 *length = size_found->length * 72.0 / 2540.0; in get_pagesize()
/third_party/cups-filters/filter/pdftopdf/
Dpdftopdf.cc410 pwg_media_t *size_found = NULL; in getParameters() local
412 if ((size_found = pwgMediaForPWG(val)) == NULL) in getParameters()
413 if ((size_found = pwgMediaForPPD(val)) == NULL) in getParameters()
414 size_found = pwgMediaForLegacy(val); in getParameters()
415 if (size_found != NULL) { in getParameters()
416 param.page.width = size_found->width * 72.0 / 2540.0; in getParameters()
417 param.page.height = size_found->length * 72.0 / 2540.0; in getParameters()