Searched defs:matchInfo (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dstring.js288 function ExpandReplacement(string, subject, matchInfo, builder) {
298 var m = NUMBER_OF_CAPTURES(matchInfo) >> 1; // Includes the match.
312 builder.addSpecialSlice(matchInfo[CAPTURE0],
313 matchInfo[CAPTURE1]);
316 builder.addSpecialSlice(0, matchInfo[CAPTURE0]);
319 builder.addSpecialSlice(matchInfo[CAPTURE1], subject.length);
340 addCaptureString(builder, matchInfo, n);
391 function addCaptureString(builder, matchInfo, index) {
395 var start = matchInfo[CAPTURE(scaled)];
397 var end = matchInfo[CAPTUR
641 var matchInfo = DoRegExpExec(separator, subject, startIndex); variable
[all...]
/external/icu4c/i18n/
H A Dtzfmt.cpp203 TimeZoneNameMatchInfo *matchInfo = fTimeZoneNames->find(text, startIdx, types, status); local
204 if (U_FAILURE(status) || matchInfo == NULL) {
210 for (int32_t i = 0; i < matchInfo->size(); i++) {
211 int32_t matchLen = matchInfo->getMatchLength(i);
218 matchInfo->getTimeZoneID(bestIdx, parsedTzID);
221 matchInfo->getMetaZoneID(bestIdx, mzID);
225 UTimeZoneNameType nameType = matchInfo->getNameType(bestIdx);
243 delete matchInfo;
H A Dtzgnames.cpp1042 TimeZoneNameMatchInfo *matchInfo = NULL; local
1055 matchInfo = fTimeZoneNames->find(text, start, nameTypes, status);
1058 return matchInfo;
H A Dtznames_impl.cpp1350 TimeZoneNameMatchInfoImpl *matchInfo = NULL; local
1356 matchInfo = new TimeZoneNameMatchInfoImpl(results);
1357 if (matchInfo == NULL) {
1362 return matchInfo;
1409 matchInfo = new TimeZoneNameMatchInfoImpl(results);
1410 if (matchInfo == NULL) {
1417 return matchInfo;

Completed in 327 milliseconds