Home
last modified time | relevance | path

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

/external/icu/icu4c/source/samples/layout/
Dparagraph.cpp84 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL), in Paragraph()
100 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax); in Paragraph()
184 if (fLineCount >= fLinesMax) { in addLine()
185 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow); in addLine()
186 fLinesMax += fLinesGrow; in addLine()
Dpflow.c51 le_int32 fLinesMax; member
133 flow->fLinesMax = LINE_GROW; in pf_create()
149 flow->fLines = NEW_ARRAY(pl_line *, flow->fLinesMax); in pf_create()
271 if (obj->fLineCount >= obj->fLinesMax) { in addLine()
272 obj->fLines = (pl_line **) GROW_ARRAY(obj->fLines, obj->fLinesMax + obj->fLinesGrow); in addLine()
273 obj->fLinesMax += obj->fLinesGrow; in addLine()
Dparagraph.h64 le_int32 fLinesMax; variable