/external/icu/icu4c/source/layout/ |
loengine.cpp | 85 le->getGlyphs(glyphs, *success);
|
LayoutEngine.cpp | 177 void LayoutEngine::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const 179 fGlyphStorage->getGlyphs(glyphs, extraBits, success); 182 void LayoutEngine::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const 184 fGlyphStorage->getGlyphs(glyphs, success);
|
LEGlyphStorage.cpp | 212 void LEGlyphStorage::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const 235 void LEGlyphStorage::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const
|
LEGlyphStorage.h | 149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const; 163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
|
LayoutEngine.h | 398 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const; 412 virtual void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
BMFontUtil.java | 87 glyphCount += page.getGlyphs().size();
97 List<Glyph> glyphs = page.getGlyphs();
103 for (Iterator glyphIter = page.getGlyphs().iterator(); glyphIter.hasNext();) {
107 allGlyphs.addAll(page.getGlyphs());
|
Hiero.java | [all...] |
/external/icu/icu4c/source/test/letest/ |
letest.cpp | 73 engine->getGlyphs(NULL, status); 76 log_err("Calling getGlyphs(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 80 engine->getGlyphs(glyphs, status); 83 log_err("Calling getGlyphs(glyphs, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 87 engine->getGlyphs(NULL, 0xFF000000L, status); 90 log_err("Calling getGlyphs(NULL, 0xFF000000L, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 94 engine->getGlyphs(glyphs, 0xFF000000L, status); 97 log_err("Calling getGlyphs(glyphs, 0xFF000000L, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n"); 266 engine->getGlyphs(glyphs, status); 275 engine->getGlyphs(extraBitGlyphs, 0xFF000000L, status) [all...] |
gendata.cpp | 320 engine->getGlyphs(glyphs, leStatus);
|
cletest.c | 69 log_err("Calling getGlyphs(NULL, status) did not return LE_ILLEGAL_ARGUMENT_ERROR.\n"); 76 log_err("Calling getGlyphs(glyphs, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
|
/external/icu/icu4c/source/test/perf/leperf/ |
leperf.cpp | 46 engine->getGlyphs(glyphs, status);
|
/external/icu/icu4c/source/layoutex/ |
playout.cpp | 267 return vr->getGlyphs();
|
ParagraphLayout.cpp | 462 engine->getGlyphs(fStyleRunInfo[run].glyphs, layoutStatus); [all...] |
/external/icu/icu4c/source/samples/layout/ |
paragraph.cpp | 246 const LEGlyphID *glyphs = visualRun->getGlyphs();
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
GlyphPage.java | 237 public List<Glyph> getGlyphs () {
|
/external/icu/icu4c/source/layoutex/layout/ |
ParagraphLayout.h | 251 inline const LEGlyphID *getGlyphs() const; 695 inline const LEGlyphID *ParagraphLayout::VisualRun::getGlyphs() const
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
GlyphLayout.java | 141 fontData.getGlyphs(run, str, runStart, runEnd, colorRun); 244 fontData.getGlyphs(truncateRun, truncate, 0, truncate.length(), true);
|
BitmapFont.java | 763 * {@link #getGlyphs(GlyphRun, CharSequence, int, int, boolean)} should be be used to shape a string of characters into a 777 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) { [all...] |
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
FreeTypeFontGenerator.java | 678 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) {
680 super.getGlyphs(run, str, start, end, tightBounds);
|
/external/harfbuzz_ng/src/ |
hb-directwrite.cc | 742 hr = analyzer->GetGlyphs (textString, textLength, fontFace, FALSE,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
dwrite.h | [all...] |
/external/libgdx/ |
CHANGES | 113 - Fixed BitmapFont color tags changing glyph spacing versus not using color tags. BitmapFont#getGlyphs has a new paramter. See #3455. [all...] |