HomeSort by relevance Sort by last modified time
    Searched defs:matchIndex (Results 1 - 6 of 6) sorted by null

  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 337 void Generator::generateCharacterClassInvertedRange(JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
347 if ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
352 generateCharacterClassInvertedRange(failures, matchDest, ranges, which, matchIndex, matches, matchCount);
354 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
355 matchDest.append(branch32(Equal, character, Imm32((unsigned short)matches[*matchIndex])));
356 ++*matchIndex;
364 generateCharacterClassInvertedRange(failures, matchDest, ranges, which, matchIndex, matches, matchCount);
371 while ((*matchIndex < matchCount) && (matches[*matchIndex] <= hi)
    [all...]
  /external/webkit/WebKit/android/nav/
FindCanvas.cpp 356 int matchIndex = index - remaining + 1;
358 const uint16_t* glyphs = chars + matchIndex;
359 SkRect rect = (this->*addMatch)(matchIndex, paint,
399 index = matchIndex;
404 index = matchIndex;
  /external/webkit/JavaScriptCore/runtime/
StringPrototype.cpp 346 int matchIndex;
349 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
350 if (matchIndex < 0)
353 sourceRanges.append(StringRange(lastIndex, matchIndex - lastIndex));
376 lastIndex = matchIndex + matchLen;
388 int matchIndex;
391 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
392 if (matchIndex < 0)
395 sourceRanges.append(StringRange(lastIndex, matchIndex - lastIndex));
420 lastIndex = matchIndex + matchLen
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.cpp 99 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
109 if ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
114 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
116 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
117 matchDest.append(branch32(Equal, character, Imm32((unsigned short)matches[*matchIndex])));
118 ++*matchIndex;
126 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
133 while ((*matchIndex < matchCount) && (matches[*matchIndex] <= hi)
    [all...]
  /external/chromium/third_party/icu/source/i18n/
ucurr.cpp     [all...]
  /external/icu4c/i18n/
ucurr.cpp     [all...]

Completed in 187 milliseconds