Lines Matching refs:size
85 size=(o.sizeX,o.sizeY),
120 size=None,
132 pgSize -- page size, width x height
136 size -- override calculated size, width x height
163 size = self.expandTuple(unit, size, length = 2)
164 if size == None or calculateSize == True or len(size) < 2 or size[0] == 0 or size[1] == 0:
165 size = ((pgSize[width]
173 size = self.expandTuple(unit, size, length = 2)
176 sep = (size[width]+margin[right]+margin[left],
177 size[height]+margin[top]+margin[bottom])
184 'width': str(size[width] - padding[left] - padding[right]),
185 'height': str(size[height] - padding[top] - padding[bottom]),
191 'width': str(size[width]),
192 'height': str(size[height]),
261 x,y = c*size[width], r*size[height]
283 w, h = (size[width] - padding[left] - padding[right],
284 size[height] - padding[top] - padding[bottom])