Home
last modified time | relevance | path

Searched refs:matchEnd (Results 1 – 7 of 7) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
DTextHtmlFunction.java117 int matchEnd; in splitAndConvert() local
123 matchEnd = matcher.end(); in splitAndConvert()
130 if (in.charAt(matchEnd - 1) == ',' || in.charAt(matchEnd - 1) == '.') { in splitAndConvert()
131 matchEnd--; in splitAndConvert()
135 formatEmail(in, matchStart, matchEnd, out); in splitAndConvert()
137 formatUrl(in, matchStart, matchEnd, in splitAndConvert()
142 regionStart = matchEnd; in splitAndConvert()
/external/chromium_org/third_party/skia/tools/flags/
DSkCommandLineFlags.cpp325 bool matchExclude, matchStart, matchEnd; in ShouldSkipImpl() local
335 if ((matchEnd = matchName[matchLen - 1] == '$')) { in ShouldSkipImpl()
338 if (matchStart ? (!matchEnd || matchLen == testLen) in ShouldSkipImpl()
340 : matchEnd ? matchLen <= testLen in ShouldSkipImpl()
/external/skia/tools/flags/
DSkCommandLineFlags.cpp325 bool matchExclude, matchStart, matchEnd; in ShouldSkipImpl() local
335 if ((matchEnd = matchName[matchLen - 1] == '$')) { in ShouldSkipImpl()
338 if (matchStart ? (!matchEnd || matchLen == testLen) in ShouldSkipImpl()
340 : matchEnd ? matchLen <= testLen in ShouldSkipImpl()
/external/chromium_org/v8/src/
Dregexp.js352 var matchEnd = lastMatchInfo[CAPTURE(index + 1)];
353 if (matchStart == -1 || matchEnd == -1) return '';
354 return %_SubString(LAST_SUBJECT(lastMatchInfo), matchStart, matchEnd);
/external/icu/icu4c/source/test/intltest/
Dssearch.cpp1178 …ring &target, int32_t offset, const UnicodeString &pattern, int32_t &matchStart, int32_t &matchEnd) in simpleSearch() argument
1190 matchStart = matchEnd = -1; in simpleSearch()
1195 matchStart = matchEnd = -1; in simpleSearch()
1258 matchEnd = mend; in simpleSearch()
/external/chromium_org/third_party/icu/source/test/intltest/
Dssearch.cpp1959 …ring &target, int32_t offset, const UnicodeString &pattern, int32_t &matchStart, int32_t &matchEnd) in simpleSearch() argument
1971 matchStart = matchEnd = -1; in simpleSearch()
1976 matchStart = matchEnd = -1; in simpleSearch()
2029 matchEnd = mend; in simpleSearch()
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
DPhoneNumberUtil.java2587 int matchEnd = m.end();
2590 Matcher digitMatcher = CAPTURING_DIGIT_PATTERN.matcher(number.substring(matchEnd));
2597 number.delete(0, matchEnd);