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

  /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...]
  /frameworks/av/media/libstagefright/
OMXCodec.cpp 200 ssize_t matchIndex =
203 if (matchIndex < 0) {
207 index = matchIndex + 1;
209 const char *componentName = list->getCodecName(matchIndex);
227 matchingCodecQuirks->push(getComponentQuirks(list, matchIndex));
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java     [all...]

Completed in 279 milliseconds