OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newGlyphCount
(Results
1 - 5
of
5
) sorted by null
/external/icu/icu4c/source/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
125
le_int32
newGlyphCount
= glyphStorage.applyInsertions();
128
prevLimit =
newGlyphCount
;
130
nextLimit =
newGlyphCount
;
133
return
newGlyphCount
;
LEGlyphStorage.h
502
* @param
newGlyphCount
the new glyph count.
506
void adoptGlyphCount(le_int32
newGlyphCount
);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
BitmapFontCache.java
307
int
newGlyphCount
= 0;
309
newGlyphCount
+= layout.runs.get(i).glyphs.size;
310
requirePageGlyphs(0,
newGlyphCount
);
Completed in 92 milliseconds