Home
last modified time | relevance | path

Searched refs:mutableStringToMatch (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/page/mac/
DFrameMac.mm213 String mutableStringToMatch = stringToMatch;
216 replace(mutableStringToMatch, RegularExpression("\\d", TextCaseSensitive), " ");
217 mutableStringToMatch.replace('_', ' ');
227 pos = regExp->match(mutableStringToMatch, start);
239 return mutableStringToMatch.substring(bestPos, bestLength);
/external/webkit/Source/WebCore/page/
DFrame.cpp469 String mutableStringToMatch = stringToMatch; in matchLabelsAgainstString() local
472 replace(mutableStringToMatch, RegularExpression("\\d", TextCaseSensitive), " "); in matchLabelsAgainstString()
473 mutableStringToMatch.replace('_', ' '); in matchLabelsAgainstString()
483 pos = regExp->match(mutableStringToMatch, start); in matchLabelsAgainstString()
495 return mutableStringToMatch.substring(bestPos, bestLength); in matchLabelsAgainstString()