OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LE_GROW_ARRAY
(Results
1 - 7
of
7
) sorted by null
/external/icu4c/layoutex/
RunArrays.cpp
57
fLimits = (le_int32 *)
LE_GROW_ARRAY
(fLimits, newCapacity);
101
fFonts = (const LEFontInstance **)
LE_GROW_ARRAY
(fFonts, capacity);
153
fLocales = (const Locale **)
LE_GROW_ARRAY
(fLocales, capacity);
205
fValues = (const le_int32 *)
LE_GROW_ARRAY
(fValues, capacity);
plruns.cpp
380
fLocaleNames = (const char **)
LE_GROW_ARRAY
(fLocaleNames, capacity);
ParagraphLayout.cpp
[
all
...]
/external/icu4c/samples/layout/
FontTableCache.cpp
77
fTableCache = (FontTableCacheEntry *)
LE_GROW_ARRAY
(fTableCache, newSize);
paragraph.cpp
143
fParagraphLayout = (ParagraphLayout **)
LE_GROW_ARRAY
(fParagraphLayout, fParagraphMax + fParagraphGrow);
174
fLines = (const ParagraphLayout::Line **)
LE_GROW_ARRAY
(fLines, fLinesMax + fLinesGrow);
/external/icu4c/layout/
LEGlyphStorage.cpp
568
LEGlyphID *newGlyphs = (LEGlyphID *)
LE_GROW_ARRAY
(fGlyphs, newGlyphCount);
575
le_int32 *newCharIndices = (le_int32 *)
LE_GROW_ARRAY
(fCharIndices, newGlyphCount);
583
le_uint32 *newAuxData = (le_uint32 *)
LE_GROW_ARRAY
(fAuxData, newGlyphCount);
LETypes.h
303
#define
LE_GROW_ARRAY
(array, newSize) uprv_realloc((void *) (array), (newSize) * sizeof (array)[0])
347
#define
LE_GROW_ARRAY
(array, newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
Completed in 68 milliseconds