OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outCharCount
(Results
1 - 6
of
6
) sorted by null
/external/icu4c/layout/
HangulLayoutEngine.cpp
238
le_int32
outCharCount
= 0;
245
le_int32 outStart =
outCharCount
;
257
outChars[
outCharCount
] = trail;
258
glyphStorage.setCharIndex(
outCharCount
, i-offset, success);
259
glyphStorage.setAuxData(
outCharCount
++, nullFeatures, success);
264
outChars[
outCharCount
] = lead;
265
glyphStorage.setCharIndex(
outCharCount
, i-offset, success);
266
glyphStorage.setAuxData(
outCharCount
++, ljmoFeatures, success);
270
outChars[
outCharCount
] = vowel;
271
glyphStorage.setCharIndex(
outCharCount
, i-offset, success)
[
all
...]
KhmerLayoutEngine.cpp
75
le_int32
outCharCount
= KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
77
glyphStorage.adoptGlyphCount(
outCharCount
);
78
return
outCharCount
;
TibetanLayoutEngine.cpp
81
le_int32
outCharCount
= TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
83
glyphStorage.adoptGlyphCount(
outCharCount
);
84
return
outCharCount
;
IndicLayoutEngine.cpp
119
le_int32
outCharCount
;
121
outCharCount
= IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage);
123
outCharCount
= IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage, &fMPreFixups, success);
131
glyphStorage.adoptGlyphCount(
outCharCount
);
132
return
outCharCount
;
LayoutEngine.cpp
211
le_int32 i, dir = 1, out = 0,
outCharCount
= count;
268
outCharCount
= canonGSUBTable->process(fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success);
275
out = (rightToLeft?
outCharCount
- 1 : 0);
285
outChars = LE_NEW_ARRAY(LEUnicode,
outCharCount
);
293
for (i = 0; i <
outCharCount
; i += 1, out += dir) {
300
return
outCharCount
;
316
le_int32
outCharCount
= characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success);
319
mapCharsToGlyphs(outChars, 0,
outCharCount
, rightToLeft, rightToLeft, glyphStorage, success);
OpenTypeLayoutEngine.cpp
401
le_int32
outCharCount
, outGlyphCount;
412
outCharCount
= characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStorage, success);
420
glyphProcessing(outChars, 0,
outCharCount
,
outCharCount
, rightToLeft, fakeGlyphStorage, success);
422
//adjustGlyphs(outChars, 0,
outCharCount
, rightToLeft, fakeGlyphs, fakeGlyphCount);
Completed in 551 milliseconds