Home
last modified time | relevance | path

Searched refs:custom_margins (Results 1 – 4 of 4) sorted by relevance

/external/libcups/cups/
Dppd-page.c118 size->left = ppd->custom_margins[0]; in ppdPageSize()
119 size->bottom = ppd->custom_margins[1]; in ppdPageSize()
120 size->right = (float)(w - ppd->custom_margins[2]); in ppdPageSize()
121 size->top = (float)(l - ppd->custom_margins[3]); in ppdPageSize()
285 minimum->left = ppd->custom_margins[0]; in ppdPageSizeLimits()
286 minimum->bottom = ppd->custom_margins[1]; in ppdPageSizeLimits()
287 minimum->right = width - ppd->custom_margins[2]; in ppdPageSizeLimits()
288 minimum->top = length - ppd->custom_margins[3]; in ppdPageSizeLimits()
334 maximum->left = ppd->custom_margins[0]; in ppdPageSizeLimits()
335 maximum->bottom = ppd->custom_margins[1]; in ppdPageSizeLimits()
[all …]
Dppd.h326 float custom_margins[4]; /* Margins around page */ member
Dppd-cache.c1187 pc->custom_size.left = PWG_FROM_POINTS(ppd->custom_margins[0]); in _ppdCacheCreateWithPPD()
1188 pc->custom_size.bottom = PWG_FROM_POINTS(ppd->custom_margins[1]); in _ppdCacheCreateWithPPD()
1189 pc->custom_size.right = PWG_FROM_POINTS(ppd->custom_margins[2]); in _ppdCacheCreateWithPPD()
1190 pc->custom_size.top = PWG_FROM_POINTS(ppd->custom_margins[3]); in _ppdCacheCreateWithPPD()
Dppd.c1114 ppd->custom_margins[i] = (float)_cupsStrScand(sptr, &sptr, loc); in _ppdOpen()