HomeSort by relevance Sort by last modified time
    Searched refs:regexes (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/components/url_matcher/
regex_set_matcher_unittest.cc 19 std::vector<const StringPattern*> regexes; local
20 regexes.push_back(&pattern_1);
21 regexes.push_back(&pattern_2);
22 regexes.push_back(&pattern_3);
24 matcher.AddPatterns(regexes);
46 std::vector<const StringPattern*> regexes; local
47 regexes.push_back(&pattern_1);
48 regexes.push_back(&pattern_2);
50 matcher.AddPatterns(regexes);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
misc.py 76 def join_regex(regexes):
77 """Combine a list of regexes into one that matches any of them."""
78 if len(regexes) > 1:
79 return "(" + ")|(".join(regexes) + ")"
80 elif regexes:
81 return regexes[0]
parser.py 71 def lines_matching(self, *regexes):
72 """Find the lines matching one of a list of regexes.
75 of the regexes in `regexes`. The entire line needn't match, just a
79 regex_c = re.compile(join_regex(regexes))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
FileBasedSearchResultsPane.js 135 var regexes = [];
137 regexes.push(createSearchRegex(queries[i], !this._searchConfig.ignoreCase(), this._searchConfig.isRegex()));
143 for (var j = 0; j < regexes.length; ++j)
144 matchRanges = matchRanges.concat(this._regexMatchRanges(lineContent, regexes[j]));
  /packages/apps/Settings/src/com/android/settings/
TetherSettings.java 617 private static String findIface(String[] ifaces, String[] regexes) {
619 for (String regex : regexes) {
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py     [all...]

Completed in 493 milliseconds