HomeSort by relevance Sort by last modified time
    Searched refs:glyphCount (Results 1 - 25 of 47) sorted by null

1 2

  /external/icu4c/layout/
MultipleSubstSubtables.cpp 31 // glyphCount?
42 le_uint16 glyphCount = SWAPW(sequenceTable->glyphCount);
44 if (glyphCount == 0) {
47 } else if (glyphCount == 1) {
60 for (le_int32 i = 0; i < glyphCount; i += 1) {
69 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success);
77 insert = glyphCount - 1;
81 for (le_int32 i = 0; i < glyphCount; i += 1) {
TrimmedArrayProcessor.cpp 31 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
40 le_int32 glyphCount = glyphStorage.getGlyphCount();
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
SimpleArrayProcessor.cpp 38 le_int32 glyphCount = glyphStorage.getGlyphCount();
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
SingleTableProcessor.cpp 40 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
AlternateSubstSubtables.h 25 le_uint16 glyphCount;
MultipleSubstSubtables.h 25 le_uint16 glyphCount;
ThaiLayoutEngine.cpp 71 le_int32 glyphCount;
90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success);
95 glyphStorage.adoptGlyphCount(glyphCount);
96 return glyphCount;
SegmentArrayProcessor.cpp 39 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
SegmentSingleProcessor.cpp 39 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
CoverageTables.h 29 le_uint16 glyphCount;
SingleSubstitutionSubtables.h 37 le_uint16 glyphCount;
StateTableProcessor.cpp 49 le_int32 glyphCount = glyphStorage.getGlyphCount();
53 while (currGlyph <= glyphCount) {
55 if (currGlyph == glyphCount) {
ContextualSubstSubtables.h 33 const TTGlyphID *glyphArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
37 const le_uint16 *classArray, le_uint16 glyphCount, GlyphIterator *glyphIterator,
41 const Offset *coverageTableOffsetArray, le_uint16 glyphCount,
77 le_uint16 glyphCount;
101 le_uint16 glyphCount;
114 le_uint16 glyphCount;
ClassDefinitionTables.h 31 le_uint16 glyphCount;
GlyphDefinitionTables.h 35 le_uint16 glyphCount;
LookupTables.h 85 TTGlyphID glyphCount;
ClassDefinitionTables.cpp 69 TTGlyphID lastGlyph = firstGlyph + SWAPW(glyphCount);
80 le_uint16 count = SWAPW(glyphCount);
ContextualSubstSubtables.cpp 50 le_bool ContextualSubstitutionBase::matchGlyphIDs(const TTGlyphID *glyphArray, le_uint16 glyphCount,
57 match = glyphCount -1;
61 while (glyphCount > 0) {
72 glyphCount -= 1;
79 le_bool ContextualSubstitutionBase::matchGlyphClasses(const le_uint16 *classArray, le_uint16 glyphCount,
88 match = glyphCount - 1;
92 while (glyphCount > 0) {
111 glyphCount -= 1;
118 le_bool ContextualSubstitutionBase::matchGlyphCoverages(const Offset *coverageTableOffsetArray, le_uint16 glyphCount,
125 glyph = glyphCount - 1
    [all...]
  /external/icu4c/test/letest/
letest.h 37 le_int32 glyphCount;
cletest.c 45 le_int32 glyphCount = 0;
55 glyphCount = le_getGlyphCount(engine, &status);
56 if (glyphCount != 0) {
57 log_err("Calling getGlyphCount() on an empty layout returned %d.\n", glyphCount);
60 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10);
61 indices = NEW_ARRAY(le_int32, glyphCount + 10);
62 positions = NEW_ARRAY(float, glyphCount + 10);
124 glyphCount = le_layoutChars(engine, NULL, 0, 0, 0, FALSE, 0.0, 0.0, &status);
131 glyphCount = le_layoutChars(engine, chars, -1, 6, 20, TRUE, 0.0, 0.0, &status);
138 glyphCount = le_layoutChars(engine, chars, 8, -1, 20, TRUE, 0.0, 0.0, &status)
    [all...]
letest.cpp 62 le_int32 glyphCount = 0;
64 glyphCount = engine->getGlyphCount();
65 if (glyphCount != 0) {
66 log_err("Calling getGlyphCount() on an empty layout returned %d.\n", glyphCount);
69 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10);
70 indices = NEW_ARRAY(le_int32, glyphCount + 10);
71 positions = NEW_ARRAY(float, glyphCount + 10);
147 glyphCount = engine->layoutChars(NULL, 0, 0, 0, FALSE, 0.0, 0.0, status);
160 glyphCount = engine->layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status);
167 glyphCount = engine->layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status)
    [all...]
gendata.cpp 161 int32_t glyphCount = 0;
257 glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0, 0, leStatus);
259 glyphs = NEW_ARRAY(LEGlyphID, glyphCount);
260 indices = NEW_ARRAY(le_int32, glyphCount);
261 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
267 dumpLongs(outputFile, "result-glyphs", (le_int32 *) glyphs, glyphCount);
269 dumpLongs(outputFile, "result-indices", indices, glyphCount);
271 dumpFloats(outputFile, "result-positions", positions, glyphCount * 2 + 2);
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
226 expected.glyphs = (LEGlyphID *) getHexArray(glyphs, glyphCount);
230 expected.glyphCount = glyphCount;
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
  /external/webkit/Source/WebCore/platform/graphics/mac/
GlyphPageTreeNodeMac.cpp 103 CFIndex glyphCount = CTRunGetGlyphCount(ctRun);
106 glyphVector.resize(glyphCount);
112 indexVector.resize(glyphCount);
117 for (CFIndex i = 0; i < glyphCount; ++i) {
  /external/icu4c/layoutex/
ParagraphLayout.cpp 392 fStyleRunInfo[run].glyphCount = 0;
415 fStyleRunInfo[run].glyphCount = fStyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRunLimits[run] - runStart, fCharCount,
424 fGlyphCount += fStyleRunInfo[run].glyphCount;
448 le_int32 glyphCount = fStyleRunInfo[run].glyphCount;
451 fStyleRunInfo[run].glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount);
452 fStyleRunInfo[run].positions = LE_NEW_ARRAY(float, glyphCount * 2 + 2);
477 for (glyph = 0; glyph < glyphCount; glyph += 1) {
482 LXUtilities::reverse(&fGlyphWidths[glyphBase], glyphCount);
483 LXUtilities::reverse(&fGlyphToCharMap[glyphBase], glyphCount);
    [all...]

Completed in 515 milliseconds

1 2