OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newGlyphCount
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/layout/
LookupProcessor.cpp
65
le_int32
newGlyphCount
= glyphCount;
87
newGlyphCount
= glyphIterator.applyInsertions();
91
return
newGlyphCount
;
GlyphIterator.cpp
117
le_int32
newGlyphCount
= glyphStorage.applyInsertions();
120
prevLimit =
newGlyphCount
;
122
nextLimit =
newGlyphCount
;
125
return
newGlyphCount
;
LEGlyphStorage.cpp
508
void LEGlyphStorage::adoptGlyphCount(le_int32
newGlyphCount
)
510
fGlyphCount =
newGlyphCount
;
566
le_int32
newGlyphCount
= fGlyphCount + growAmount;
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
);
592
fDestIndex =
newGlyphCount
- 1;
604
position =
newGlyphCount
;
612
return fGlyphCount =
newGlyphCount
;
Completed in 666 milliseconds