Home | History | Annotate | Download | only in mac

Lines Matching refs:regExp

68 // Either get cached regexp or build one that matches any of the labels.
69 // The regexp we build is of the form: (STR1|STR2|STRN)
118 // add regexp to the cache, making sure it is at the front for LRU ordering
141 RegularExpression* regExp = regExpForLabels(labels);
171 NSString* result = searchForLabelsAboveCell(regExp, startingTableCell, resultDistance);
179 // For each text chunk, run the regexp
184 int pos = regExp->searchRev(nodeString);
188 return nodeString.substring(pos, regExp->matchedLength());
197 NSString* result = searchForLabelsAboveCell(regExp, startingTableCell, resultDistance);
219 RegularExpression* regExp = regExpForLabels(labels);
227 pos = regExp->match(mutableStringToMatch, start);
229 length = regExp->matchedLength();