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

  /external/webkit/Source/WebCore/html/
BaseTextInputType.cpp 46 int matchLength = 0;
48 int matchOffset = RegularExpression(pattern, TextCaseSensitive).match(value, 0, &matchLength);
49 return matchOffset || matchLength != valueLength;
EmailInputType.cpp 47 int matchLength;
48 int matchOffset = regExp.match(address, 0, &matchLength);
50 return !matchOffset && matchLength == addressLength;
  /external/webkit/Source/WebKit/chromium/src/
WebRegularExpression.cpp 59 int* matchLength) const
64 return m_private->match(str, startFrom, matchLength);
  /external/webkit/Source/WebCore/platform/text/
RegularExpression.cpp 94 int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
123 if (matchLength)
124 *matchLength = d->lastMatchLength;
138 int matchLength;
139 pos = match(str, start, &matchLength);
141 if (pos + matchLength > lastPos + lastMatchLength) {
144 lastMatchLength = matchLength;
162 int matchLength;
163 index = target.match(string, index, &matchLength);
166 string.replace(index, matchLength, replacement)
    [all...]
RegularExpression.h 42 int match(const String&, int startFrom = 0, int* matchLength = 0) const;
  /external/webkit/Source/WebKit/chromium/public/
WebRegularExpression.h 48 WEBKIT_API int match(const WebString&, int startFrom = 0, int* matchLength = 0) const;
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 539 unsigned matchLength = matchStringLength;
540 if (!matchLength)
544 if (matchLength == 1)
547 // Check index & matchLength are in range.
551 if (matchLength > searchLength)
554 unsigned delta = searchLength - matchLength;
563 for (unsigned i = 0; i < matchLength; ++i) {
570 while (searchHash != matchHash || !equal(searchCharacters + i, matchString, matchLength)) {
573 searchHash += searchCharacters[i + matchLength];
588 unsigned matchLength = matchStringLength
    [all...]
  /external/chromium/webkit/glue/
regular_expression_unittest.cc 21 const int matchLength;
33 EXPECT_EQ(matches[i].matchLength, matchedLength);
40 #define MATCH_DESC(webuchar, matchPosition, matchLength) \
41 { webuchar, arraysize(webuchar), matchPosition, matchLength }
  /external/icu4c/i18n/unicode/
tznames.h 283 * @param matchLength The match length.
288 void addZone(UTimeZoneNameType nameType, int32_t matchLength,
294 * @param matchLength The match length.
299 void addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
  /external/icu4c/i18n/
tznames.cpp 350 int32_t matchLength;
353 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
355 this->matchLength = matchLength;
387 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength,
392 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
404 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
409 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
441 return match->matchLength;
tznames_impl.cpp 721 int32_t matchLength;
734 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
754 ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
776 fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
779 fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
781 if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
782 fMaxMatchLen = matchLength;
    [all...]
tznames_impl.h 119 virtual UBool handleMatch(int32_t matchLength,
tzgnames.cpp 115 int32_t matchLength;
169 return minfo->matchLength;
193 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
213 GNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
240 gmatch->matchLength = matchLength;
246 if (matchLength > fMaxMatchLen) {
247 fMaxMatchLen = matchLength;
    [all...]
  /external/icu4c/common/
ucnv_ext.cpp 118 * - the returned matchLength is not offset by 2
129 int32_t i, j, idx, length, matchLength;
141 i=j=matchLength=0;
175 matchLength=i+j;
214 matchLength=i+j;
223 if(matchLength==0) {
230 return matchLength;
515 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
532 int32_t i, j, idx, length, matchLength;
570 i=j=matchLength=0
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
StringPrototype.cpp 620 int matchLength = 0;
621 regExpConstructor->performMatch(reg.get(), s, 0, pos, matchLength);
633 list.append(jsSubstring(exec, s, pos, matchLength));
635 pos += matchLength == 0 ? 1 : matchLength;
636 regExpConstructor->performMatch(reg.get(), s, pos, pos, matchLength);
670 int matchLength = 0;
671 regExpConstructor->performMatch(reg.get(), s, 0, pos, matchLength);
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java     [all...]
  /external/icu4c/test/cintltst/
usrchtst.c 344 int32_t matchlength; local
360 matchlength = search.size[count];
363 matchlength != (uint32_t)usearch_getMatchedLength(strsrch)) {
370 matchindex, matchlength);
376 (int32_t) matchlength || U_FAILURE(status) ||
379 matchlength * sizeof(UChar)) != 0) {
402 matchlength = search.size[count];
405 matchlength != (uint32_t)usearch_getMatchedLength(strsrch)) {
412 matchindex, matchlength);
417 (int32_t) matchlength || U_FAILURE(status) |
1256 uint32_t matchlength = search.size[count]; local
1438 int32_t matchlength = search.size[count]; local
2314 uint32_t matchlength = search.size[count]; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
com.ibm.icu_4.2.1.v20100412.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 1867 milliseconds