HomeSort by relevance Sort by last modified time
    Searched full:glyphcount (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/icu4c/test/letest/
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.h 37 le_int32 glyphCount;
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);
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 37 le_int32 glyphCount;
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);
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 49 le_int32 glyphCount;
  /external/icu4c/layout/
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...]
GlyphPositionAdjustments.cpp 19 GlyphPositionAdjustments::GlyphPositionAdjustments(le_int32 glyphCount)
20 : fGlyphCount(glyphCount), fEntryExitPoints(NULL), fAdjustments(NULL)
22 fAdjustments = (Adjustment *) new Adjustment[glyphCount];
LayoutEngine.cpp 342 le_int32 i, glyphCount = glyphStorage.getGlyphCount();
344 for (i = 0; i < glyphCount; i += 1) {
354 glyphStorage.setPosition(glyphCount, x, y, success);
388 le_int32 p, glyphCount = glyphStorage.getGlyphCount();
403 for (p = 0; p < glyphCount; p += 1) {
418 glyphStorage.adjustPosition(glyphCount, xAdjust, 0, success);
425 le_int32 glyphCount = glyphStorage.getGlyphCount();
437 c = glyphCount - 1;
460 glyphStorage.adjustPosition(glyphCount, xAdjust, 0, success);
497 le_int32 glyphCount;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 51 uint16_t glyphs[], int glyphCount) const SK_OVERRIDE {
52 if (glyphs && glyphCount > 0) {
53 sk_bzero(glyphs, glyphCount * sizeof(glyphs[0]));
211 uint16_t glyphs[], int glyphCount) const {
212 if (glyphCount <= 0) {
217 sk_bzero(glyphs, glyphCount * sizeof(glyphs[0]));
221 return this->onCharsToGlyphs(chars, encoding, glyphs, glyphCount);
  /external/harfbuzz/src/
harfbuzz-gsub-private.h 55 HB_UShort GlyphCount; /* number of glyph IDs in
83 HB_UShort GlyphCount; /* number of glyph IDs in the
106 HB_UShort GlyphCount; /* number of glyph IDs in the
178 HB_UShort GlyphCount; /* total number of input glyphs */
211 HB_UShort GlyphCount; /* total number of context classes */
252 HB_UShort GlyphCount; /* number of input glyphs */
448 HB_UShort GlyphCount; /* number of Glyph IDs */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gsub-private.h 55 HB_UShort GlyphCount; /* number of glyph IDs in
83 HB_UShort GlyphCount; /* number of glyph IDs in the
106 HB_UShort GlyphCount; /* number of glyph IDs in the
178 HB_UShort GlyphCount; /* total number of input glyphs */
211 HB_UShort GlyphCount; /* total number of context classes */
252 HB_UShort GlyphCount; /* number of input glyphs */
448 HB_UShort GlyphCount; /* number of Glyph IDs */
  /external/skia/src/core/
SkTypeface.cpp 51 uint16_t glyphs[], int glyphCount) const SK_OVERRIDE {
52 if (glyphs && glyphCount > 0) {
53 sk_bzero(glyphs, glyphCount * sizeof(glyphs[0]));
211 uint16_t glyphs[], int glyphCount) const {
212 if (glyphCount <= 0) {
217 sk_bzero(glyphs, glyphCount * sizeof(glyphs[0]));
221 return this->onCharsToGlyphs(chars, encoding, glyphs, 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) {
ComplexTextController.cpp 166 glyphCountSoFar += m_complexTextRuns[i]->glyphCount();
189 for (unsigned j = 0; j < complexTextRun.glyphCount(); ++j) {
195 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.indexAt(j + 1) : static_cast<CFIndex>(complexTextRun.indexEnd()));
235 while (firstGlyphAfterCluster < complexTextRun.glyphCount() && complexTextRun.indexAt(firstGlyphAfterCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphAfterCluster) < clusterEnd) {
250 offsetIntoAdjustedGlyphs += complexTextRun.glyphCount();
448 leftmostGlyph += m_complexTextRuns[i]->glyphCount();
477 leftmostGlyph += m_complexTextRuns[m_currentRun++]->glyphCount();
508 size_t glyphCount = complexTextRun.glyphCount();
509 unsigned g = ltr ? m_glyphInCurrentRun : glyphCount - 1 - m_glyphInCurrentRun
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
PlatformFontsSidebarPane.js 98 return b.glyphCount - a.glyphCount;
110 var usage = platformFonts[i].glyphCount;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_text.c 171 VGint glyphCount,
185 if (glyphCount <= 0) {
205 font_draw_glyphs(f, glyphCount, glyphIndices,
  /external/icu4c/samples/layout/
GnomeFontInstance.cpp 178 void GnomeFontInstance::rasterizeGlyphs(cairo_t *cairo, const LEGlyphID *glyphs, le_int32 glyphCount, const float *positions,
181 cairo_glyph_t *glyph_t = LE_NEW_ARRAY(cairo_glyph_t, glyphCount);
184 for (in = 0, out = 0; in < glyphCount; in += 1) {
  /external/mesa3d/src/gallium/state_trackers/vega/
api_text.c 171 VGint glyphCount,
185 if (glyphCount <= 0) {
205 font_draw_glyphs(f, glyphCount, glyphIndices,
  /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 658 milliseconds

12 3 4 5