Home
last modified time | relevance | path

Searched refs:cumulateLength (Results 1 – 2 of 2) sorted by relevance

/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/layoutmgr/table/
H A DActiveCell.java243 int cumulateLength = 0; in handleExplicitHeight() local
245 while (iter.hasNext() && cumulateLength < minBPD) { in handleExplicitHeight()
249 cumulateLength += el.getWidth(); in handleExplicitHeight()
253 new FillerPenalty(minBPD - cumulateLength)); in handleExplicitHeight()
256 cumulateLength += el.getWidth(); in handleExplicitHeight()
259 if (cumulateLength + el.getWidth() < minBPD) { in handleExplicitHeight()
260 iter.set(new FillerPenalty((KnuthPenalty) el, minBPD - cumulateLength)); in handleExplicitHeight()
H A DTableStepper.java183 int cumulateLength = 0; // Length of the content accumulated before the break in getCombinedKnuthElementsForRowGroup() local
191 int boxLen = step - cumulateLength - Math.max(0, penaltyOrGlueLen)/* penalty, if any */; in getCombinedKnuthElementsForRowGroup()
192 cumulateLength += boxLen + Math.max(0, -penaltyOrGlueLen)/* the glue, if any */; in getCombinedKnuthElementsForRowGroup()