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
207
le_int32 i, dir = 1, out = 0,
outCharCount
= count;
264
outCharCount
= canonGSUBTable->process(fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success);
271
out = (rightToLeft?
outCharCount
- 1 : 0);
281
outChars = LE_NEW_ARRAY(LEUnicode,
outCharCount
);
289
for (i = 0; i <
outCharCount
; i += 1, out += dir) {
296
return
outCharCount
;
312
le_int32
outCharCount
= characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success);
315
mapCharsToGlyphs(outChars, 0,
outCharCount
, rightToLeft, rightToLeft, glyphStorage, success);
OpenTypeLayoutEngine.cpp
303
le_int32
outCharCount
, outGlyphCount, fakeGlyphCount;
314
outCharCount
= characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStorage, success);
321
fakeGlyphCount = glyphProcessing(outChars, 0,
outCharCount
,
outCharCount
, rightToLeft, fakeGlyphStorage, success);
323
//adjustGlyphs(outChars, 0,
outCharCount
, rightToLeft, fakeGlyphs, fakeGlyphCount);
Completed in 1308 milliseconds