OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newGlyphCount
(Results
1 - 4
of
4
) sorted by null
/external/icu4c/layout/
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
;
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.h
502
* @param
newGlyphCount
the new glyph count.
506
void adoptGlyphCount(le_int32
newGlyphCount
);
Completed in 53 milliseconds