Searched refs:fRunCapacity (Results 1 – 2 of 2) sorted by relevance
/third_party/icu/icu4c/source/layoutex/layout/ |
D | ParagraphLayout.h | 176 le_int32 fRunCapacity; variable 664 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL) in Line() 670 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL) in Line()
|
/third_party/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 1226 if (fRunCount >= fRunCapacity) { in append() 1227 if (fRunCapacity == 0) { in append() 1228 fRunCapacity = INITIAL_RUN_CAPACITY; in append() 1229 fRuns = LE_NEW_ARRAY(ParagraphLayout::VisualRun *, fRunCapacity); in append() 1231 … fRunCapacity += (fRunCapacity < RUN_CAPACITY_GROW_LIMIT? fRunCapacity : RUN_CAPACITY_GROW_LIMIT); in append() 1232 fRuns = (ParagraphLayout::VisualRun **) LE_GROW_ARRAY(fRuns, fRunCapacity); in append()
|