Searched refs:matchEnd (Results 1 – 7 of 7) sorted by relevance
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | TextHtmlFunction.java | 117 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/ |
D | SkCommandLineFlags.cpp | 325 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/ |
D | SkCommandLineFlags.cpp | 325 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/ |
D | regexp.js | 352 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/ |
D | ssearch.cpp | 1178 …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/ |
D | ssearch.cpp | 1959 …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/ |
D | PhoneNumberUtil.java | 2587 int matchEnd = m.end(); 2590 Matcher digitMatcher = CAPTURING_DIGIT_PATTERN.matcher(number.substring(matchEnd)); 2597 number.delete(0, matchEnd);
|