Searched defs:matchLength (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseTextInputType.cpp47 int matchLength = 0; local
49 int matchOffset = ScriptRegexp(pattern, TextCaseSensitive).match(value, 0, &matchLength);
50 return matchOffset || matchLength != valueLength;
H A DEmailInputType.cpp142 int matchLength; local
143 int matchOffset = regExp.match(address, 0, &matchLength);
145 return !matchOffset && matchLength == addressLength;
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.cpp56 unsigned matchLength = m_is8Bit ? m_end.characters8 - m_data.characters8 : m_end.characters16 - m_data.characters16; local
57 if (matchLength < charactersCount)
75 size_t matchLength = run.length(); local
76 if (toMatch.length() > matchLength)
80 matched = WTF::equal(toMatch.impl(), m_data.characters8, matchLength);
82 matched = WTF::equal(toMatch.impl(), m_data.characters16, matchLength);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp73 int matchLength; local
74 if (regex->match(line, 0, &matchLength) != -1)
/external/icu/icu4c/source/i18n/
H A Dtznames.cpp317 int32_t matchLength; member in struct:MatchInfo
320 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) { argument
322 this->matchLength = matchLength;
354 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength, argument
359 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
371 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength, argument
376 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
408 return match->matchLength;
H A Dtzgnames.cpp114 int32_t matchLength; member in struct:GMatchInfo
168 return minfo->matchLength;
192 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
212 GNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) { argument
239 gmatch->matchLength = matchLength;
245 if (matchLength > fMaxMatchLen) {
246 fMaxMatchLen = matchLength;
H A Dtznames_impl.cpp760 int32_t matchLength; member in struct:ZMatchInfo
773 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
793 ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) { argument
815 fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
818 fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
820 if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
821 fMaxMatchLen = matchLength;
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_ext.c117 * - the returned matchLength is not offset by 2
128 int32_t i, j, idx, length, matchLength; local
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; local
569 i=j=matchLength
[all...]
/external/icu/icu4c/source/common/
H A Ducnv_ext.cpp118 * - the returned matchLength is not offset by 2
129 int32_t i, j, idx, length, matchLength; local
141 i=j=matchLength=0;
175 matchLength=i+j;
214 matchLength=i+j;
223 if(matchLength==0) {
230 return matchLength;
524 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
541 int32_t i, j, idx, length, matchLength; local
579 i=j=matchLength
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dusrchtst.c2929 int32_t matchLength = 0; local
2978 matchLength = usearch_getMatchedLength(usearch);
2980 if (matchLength != expectedMatchLength) {
2981 log_err("Error: matchLength=%d, expected=%d\n", matchLength, expectedMatchLength);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp1905 inline bool SearchBuffer::isBadMatch(const UChar* match, size_t matchLength) const
1914 normalizeCharactersIntoNFCForm(match, matchLength, m_normalizedMatch);
2114 size_t matchLength = 0; local
2144 matchLength = newMatchLength;
2157 return matchLength;
2169 size_t matchLength; local
2172 matchLength = findPlainTextInternal(findIterator, target, options, matchStart);
2173 if (!matchLength)
2181 calculateCharacterSubrange(computeRangeIterator, matchStart, matchLength, resultStart, resultEnd);
2197 size_t matchLength; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.cpp1120 unsigned matchLength = matchStringLength; local
1121 if (!matchLength)
1125 if (matchLength == 1)
1128 // Check index & matchLength are in range.
1132 if (matchLength > searchLength)
1135 unsigned delta = searchLength - matchLength;
1143 for (unsigned i = 0; i < matchLength; ++i) {
1150 while (searchHash != matchHash || !equal(searchCharacters + i, matchString, matchLength)) {
1153 searchHash += searchCharacters[i + matchLength];
1161 ALWAYS_INLINE size_t findIgnoringCaseInternal(const CharType* searchCharacters, const LChar* matchString, unsigned index, unsigned searchLength, unsigned matchLength) argument
1182 unsigned matchLength = matchStringLength; local
1199 findInternal(const SearchCharacterType* searchCharacters, const MatchCharacterType* matchCharacters, unsigned index, unsigned searchLength, unsigned matchLength) argument
1232 unsigned matchLength = matchString->length(); local
1272 unsigned matchLength = matchString->length(); local
1304 findIgnoringCaseInner(const SearchCharacterType* searchCharacters, const MatchCharacterType* matchCharacters, unsigned index, unsigned searchLength, unsigned matchLength) argument
1324 unsigned matchLength = matchString->length(); local
1375 reverseFindInner(const SearchCharacterType* searchCharacters, const MatchCharacterType* matchCharacters, unsigned index, unsigned length, unsigned matchLength) argument
1406 unsigned matchLength = matchString->length(); local
1435 reverseFindIgnoringCaseInner(const SearchCharacterType* searchCharacters, const MatchCharacterType* matchCharacters, unsigned index, unsigned length, unsigned matchLength) argument
1454 unsigned matchLength = matchString->length(); local
1475 equalInner(const StringImpl* stringImpl, unsigned startOffset, const char* matchString, unsigned matchLength, bool caseSensitive) argument
1496 startsWith(const char* matchString, unsigned matchLength, bool caseSensitive) const argument
1519 endsWith(const char* matchString, unsigned matchLength, bool caseSensitive) const argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dzstrfmt.cpp470 ZoneStringSearchResultHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) { argument
487 if (matchLength > fMatchLen[lenidx]) {
490 fMatchLen[lenidx] = matchLength;
499 fMatchLen[getTimeZoneTranslationTypeIndex(zsinfo->fType)] = matchLength;
512 ZoneStringSearchResultHandler::getMatch(int32_t index, int32_t &matchLength) { argument
516 matchLength = fMatchLen[getTimeZoneTranslationTypeIndex(zsinfo->fType)];
1312 int32_t &matchLength, UErrorCode &status) const {
1313 return find(text, start, STANDARD_LONG | DAYLIGHT_LONG, matchLength, status);
1318 int32_t &matchLength, UErrorCode &status) const {
1319 return find(text, start, STANDARD_SHORT | DAYLIGHT_SHORT, matchLength, statu
1311 findSpecificLong(const UnicodeString &text, int32_t start, int32_t &matchLength, UErrorCode &status) const argument
1317 findSpecificShort(const UnicodeString &text, int32_t start, int32_t &matchLength, UErrorCode &status) const argument
1323 findGenericLong(const UnicodeString &text, int32_t start, int32_t &matchLength, UErrorCode &status) const argument
1329 findGenericShort(const UnicodeString &text, int32_t start, int32_t &matchLength, UErrorCode &status) const argument
1335 findGenericLocation(const UnicodeString &text, int32_t start, int32_t &matchLength, UErrorCode &status) const argument
1619 find(const UnicodeString &text, int32_t start, int32_t types, int32_t &matchLength, UErrorCode &status) const argument
1660 subFind(const UnicodeString &text, int32_t start, int32_t types, int32_t &matchLength, UErrorCode &status) const argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 414 milliseconds