HomeSort by relevance Sort by last modified time
    Searched refs:matchLength (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/platform/text/
RegularExpression.cpp 97 int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
118 if (matchLength)
119 *matchLength = d->lastMatchLength;
133 int matchLength;
134 pos = match(str, start, &matchLength);
136 if (pos + matchLength > lastPos + lastMatchLength) {
139 lastMatchLength = matchLength;
157 int matchLength;
158 index = target.match(string, index, &matchLength);
161 string.replace(index, matchLength, replacement)
    [all...]
RegularExpression.h 41 int match(const String&, int startFrom = 0, int* matchLength = 0) const;
  /external/webkit/WebKit/chromium/src/
WebRegularExpression.cpp 59 int* matchLength) const
64 return m_private->match(str, startFrom, matchLength);
  /external/webkit/WebKit/chromium/public/
WebRegularExpression.h 48 WEBKIT_API int match(const WebString&, int startFrom = 0, int* matchLength = 0) const;
  /external/webkit/WebCore/html/
ValidityState.cpp 174 int matchLength;
175 int matchOffset = regExp.match(address, 0, &matchLength);
177 return matchOffset == 0 && matchLength == addressLength;
HTMLInputElement.cpp 246 int matchLength = 0;
248 int matchOffset = patternRegExp.match(value, 0, &matchLength);
250 return matchOffset != 0 || matchLength != valueLength;
    [all...]
  /external/icu4c/i18n/
zstrfmt.h 73 virtual UBool handleMatch(int32_t matchLength,
214 int32_t &matchLength, UErrorCode &status) const;
216 int32_t &matchLength, UErrorCode &status) const;
218 int32_t &matchLength, UErrorCode &status) const;
220 int32_t &matchLength, UErrorCode &status) const;
222 int32_t &matchLength, UErrorCode &status) const;
287 * @param matchLength Receives the match length
295 int32_t &matchLength, UErrorCode &status) const;
399 virtual UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
401 const ZoneStringInfo* getMatch(int32_t index, int32_t &matchLength);
    [all...]
zstrfmt.cpp 396 ZoneStringSearchResultHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
413 if (matchLength > fMatchLen[lenidx]) {
416 fMatchLen[lenidx] = matchLength;
425 fMatchLen[getTimeZoneTranslationTypeIndex(zsinfo->fType)] = matchLength;
438 ZoneStringSearchResultHandler::getMatch(int32_t index, int32_t &matchLength) {
442 matchLength = fMatchLen[getTimeZoneTranslationTypeIndex(zsinfo->fType)];
    [all...]
  /external/icu4c/common/
ucnv_ext.c 117 * - the returned matchLength is not offset by 2
128 int32_t i, j, idx, length, matchLength;
140 i=j=matchLength=0;
174 matchLength=i+j;
213 matchLength=i+j;
222 if(matchLength==0) {
229 return matchLength;
514 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
531 int32_t i, j, idx, length, matchLength;
569 i=j=matchLength=0
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]
  /external/webkit/JavaScriptCore/runtime/
StringPrototype.cpp 590 int matchLength = 0;
591 regExpConstructor->performMatch(reg.get(), u, 0, pos, matchLength);
603 list.append(jsSubstring(exec, u, pos, matchLength));
605 pos += matchLength == 0 ? 1 : matchLength;
606 regExpConstructor->performMatch(reg.get(), u, pos, pos, matchLength);
640 int matchLength = 0;
641 regExpConstructor->performMatch(reg.get(), u, 0, pos, matchLength);
    [all...]

Completed in 131 milliseconds