HomeSort by relevance Sort by last modified time
    Searched refs:fLinesMax (Results 1 - 3 of 3) sorted by null

  /external/icu4c/samples/layout/
paragraph.cpp 78 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL),
94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax);
173 if (fLineCount >= fLinesMax) {
174 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow);
175 fLinesMax += fLinesGrow;
pflow.c 48 le_int32 fLinesMax;
130 flow->fLinesMax = LINE_GROW;
146 flow->fLines = NEW_ARRAY(pl_line *, flow->fLinesMax);
268 if (obj->fLineCount >= obj->fLinesMax) {
269 obj->fLines = (pl_line **) GROW_ARRAY(obj->fLines, obj->fLinesMax + obj->fLinesGrow);
270 obj->fLinesMax += obj->fLinesGrow;
paragraph.h 58 le_int32 fLinesMax;

Completed in 49 milliseconds