OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:literallength
(Results
1 - 1
of
1
) sorted by null
/external/icu/icu4c/source/i18n/
affixpatternparser.cpp
159
int32_t
literalLength
= 0;
163
literalLength
<<= 8;
164
literalLength
|= UNPACK_LENGTH(tokenChars[tLiteralStart]);
167
literalLength
+= len;
171
tokenChars[tlen++] = PACK_TOKEN_AND_LENGTH(kLiteral,
literalLength
& 0xFF);
172
literalLength
>>= 8;
173
while (
literalLength
) {
174
tokenChars[tlen++] = PACK_TOKEN_AND_LENGTH(kLiteral | 0x80,
literalLength
& 0xFF);
175
literalLength
>>= 8;
Completed in 551 milliseconds