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

1 2 3

  /external/icu4c/layout/
AlternateSubstSubtables.h 25 le_uint16 glyphCount;
MultipleSubstSubtables.h 25 le_uint16 glyphCount;
SingleSubstitutionSubtables.h 37 le_uint16 glyphCount;
CoverageTables.h 29 le_uint16 glyphCount;
SimpleArrayProcessor.cpp 38 le_int32 glyphCount = glyphStorage.getGlyphCount();
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
SimpleArrayProcessor2.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) {
SingleTableProcessor2.cpp 40 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
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;
TrimmedArrayProcessor.cpp 31 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
40 le_int32 glyphCount = glyphStorage.getGlyphCount();
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
TrimmedArrayProcessor2.cpp 31 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
40 le_int32 glyphCount = glyphStorage.getGlyphCount();
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
ClassDefinitionTables.h 31 le_uint16 glyphCount;
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) {
SegmentArrayProcessor.cpp 39 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
SegmentArrayProcessor2.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) {
SegmentSingleProcessor2.cpp 39 le_int32 glyphCount = glyphStorage.getGlyphCount();
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
StateTableProcessor.cpp 49 le_int32 glyphCount = glyphStorage.getGlyphCount();
53 while (currGlyph <= glyphCount) {
55 if (currGlyph == glyphCount) {
StateTableProcessor2.cpp 48 le_int32 glyphCount = glyphStorage.getGlyphCount();
52 currGlyph = glyphCount - 1;
63 while ((dir == 1 && currGlyph <= glyphCount) || (dir == -1 && currGlyph >= -1)) {
65 if (currGlyph == glyphCount || currGlyph == -1) {
86 while ((dir == 1 && currGlyph <= glyphCount) || (dir == -1 && currGlyph >= -1)) {
88 if (currGlyph == glyphCount || currGlyph == -1) {
115 while ((dir == 1 && currGlyph <= glyphCount) || (dir == -1 && currGlyph >= -1)) {
117 if (currGlyph == glyphCount || currGlyph == -1) {
141 TTGlyphID lastGlyph = firstGlyph + SWAPW(lookupTable8->glyphCount);
143 while ((dir == 1 && currGlyph <= glyphCount) || (dir == -1 && currGlyph >= -1))
    [all...]
GlyphDefinitionTables.h 35 le_uint16 glyphCount;
LookupProcessor.cpp 57 le_int32 glyphCount = glyphStorage.getGlyphCount();
60 return glyphCount;
65 le_int32 newGlyphCount = glyphCount;
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 37 le_int32 glyphCount;
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 49 le_int32 glyphCount;
  /external/icu4c/test/letest/
letest.h 37 le_int32 glyphCount;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
GlyphPageTreeNodeMac.cpp 121 CFIndex glyphCount = CTRunGetGlyphCount(ctRun);
124 glyphVector.resize(glyphCount);
130 indexVector.resize(glyphCount);
136 for (CFIndex i = 0; i < glyphCount; ++i) {
149 for (CFIndex i = 0; i < glyphCount; ++i) {

Completed in 267 milliseconds

1 2 3