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

  /external/webkit/Source/WebKit/android/nav/
FindCanvas.cpp 379 int matchIndex = index - remaining + 1;
381 const uint16_t* glyphs = chars + matchIndex;
382 SkRect rect = (this->*addMatch)(matchIndex, paint,
419 index = matchIndex;
  /external/webkit/Source/JavaScriptCore/runtime/
StringPrototype.cpp 335 int matchIndex;
338 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
339 if (matchIndex < 0)
342 sourceRanges.append(StringRange(lastIndex, matchIndex - lastIndex));
368 lastIndex = matchIndex + matchLen;
380 int matchIndex;
383 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
384 if (matchIndex < 0)
388 sourceRanges.append(StringRange(lastIndex, matchIndex - lastIndex));
411 if (lastIndex < matchIndex || replLen)
    [all...]
  /external/icu4c/i18n/
ucurr.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 114 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
124 if ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
129 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
131 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) {
132 matchDest.append(branch32(Equal, character, Imm32((unsigned short)matches[*matchIndex])));
133 ++*matchIndex;
141 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
148 while ((*matchIndex < matchCount) && (matches[*matchIndex] <= hi)
    [all...]

Completed in 69 milliseconds