OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tokenChars
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/i18n/
affixpatternparser.cpp
159
UChar *
tokenChars
= tokens.getBuffer(tlen + 4);
165
while (tLiteralStart > 0 && UNPACK_TOKEN(
tokenChars
[tLiteralStart - 1]) == kLiteral) {
168
literalLength |= UNPACK_LENGTH(
tokenChars
[tLiteralStart]);
175
tokenChars
[tlen++] = PACK_TOKEN_AND_LENGTH(kLiteral, literalLength & 0xFF);
178
tokenChars
[tlen++] = PACK_TOKEN_AND_LENGTH(kLiteral | 0x80, literalLength & 0xFF);
/external/testng/doc/
prettify.js
395
// We use
tokenChars
[:tokenCharsI] to accumulate the tag name so that we
397
var
tokenChars
= new Array(12);
515
if (tokenCharsI <
tokenChars
.length) {
516
tokenChars
[tokenCharsI++] = ch.toLowerCase();
523
if (PR_prefixMatch(
tokenChars
, tokenCharsI, endScriptTag)) {
527
if (PR_prefixMatch(
tokenChars
, tokenCharsI, 'script')) {
529
} else if (PR_prefixMatch(
tokenChars
, tokenCharsI, 'style')) {
531
} else if (PR_prefixMatch(
tokenChars
, tokenCharsI, 'xmp')) {
537
if (endScriptTag && tokenCharsI && '/' ==
tokenChars
[0]) {
[
all
...]
Completed in 206 milliseconds