Searched defs:re (Results 126 - 150 of 1081) sorted by relevance

1234567891011>>

/external/chromium_org/tools/findit/common/
H A Dutils.py5 import re namespace
11 GIT_HASH_PATTERN = re.compile(r'^[0-9a-fA-F]{40}$')
/external/chromium_org/tools/findit/
H A Dmatch_set.py5 import re namespace
12 REVIEW_URL_PATTERN = re.compile(r'Review URL:( *)(.*?)/(\d+)')
43 REVERT_PATTERN = re.compile(r'(revert\w*) r?(\d+)', re.I)
/external/chromium_org/tools/grit/grit/format/
H A Dc_format.py10 import re namespace
75 two_digit_hex_num = re.compile(
/external/chromium_org/tools/grit/grit/
H A Dlazy_re_unittest.py14 import re namespace
29 rex = lazy_re.compile(flags=re.I, pattern='BiNgO')
33 rex = lazy_re.compile('BiNgO', flags=re.I)
/external/chromium_org/tools/gyp/pylib/gyp/
H A Deasy_xml.py5 import re namespace
145 _xml_escape_re = re.compile(
146 "(%s)" % "|".join(map(re.escape, _xml_escape_map.keys())))
/external/chromium_org/tools/gyp/test/lib/
H A DTestWin.py11 import re namespace
86 match = re.search(r'REG_\w+\s+([^\r]+)\r\n', text)
/external/chromium_org/tools/gyp/test/linux/
H A Dgyptest-implicit-rpath.py13 import re namespace
26 r = re.compile(r'Library rpath: \[([^\]]+)\]')
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-archs.py14 import re namespace
H A Dgyptest-strip-default.py13 import re namespace
40 o = re.sub(r'^[a-fA-F0-9]+', 'XXXXXXXX', o, flags=re.MULTILINE)
H A Dgyptest-strip.py14 import re namespace
31 r = re.compile(r'nsyms\s+(\d+)')
/external/chromium_org/tools/gyp/test/no-cpp/
H A Dgyptest-no-cpp.py13 import re namespace
/external/chromium_org/tools/mac/
H A Ddump-static-initializers.py17 import re namespace
23 dsymutil_file_re = re.compile("N_SO.*'([^']*)'")
27 dsymutil_o_file_re = re.compile("N_OSO.*'([^']*)'")
32 dsymutil_re = re.compile(r"(?:N_FUN|N_STSYM).*\s[0-9a-f]*\s'__GLOBAL__I_")
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dresults_unittest.py5 import re namespace
63 return bool(re.match(self._regex, s)
/external/chromium_org/tools/metrics/histograms/
H A Dupdate_net_error_codes.py13 import re namespace
29 ERROR_REGEX = re.compile(r'^NET_ERROR\(([\w]+), -([0-9]+)\)')
/external/chromium_org/tools/perf/page_sets/
H A Dgmail_compose_discard.py5 import re namespace
17 '.singleNodeValue' % re.escape(xpath))
H A Dindexeddb_offline.py5 import re namespace
17 '.singleNodeValue' % re.escape(xpath))
/external/chromium_org/tools/resources/
H A Dfind_unused_resources.py22 import re namespace
94 pattern = re.compile(
98 re.VERBOSE)
/external/chromium_org/tools/
H A Droll_swarming_client.py15 import re namespace
48 m = re.match(r'\s+"' + key + '": "([a-z0-9]{40})",', i)
/external/chromium_org/tools/security/
H A Dcheck_message_owners.py9 import re namespace
32 regexp = re.compile('^per-file.*_messages[^=]*=\s*(.*)@([^#]*)')
/external/chromium_org/tools/tcmalloc/
H A Dprint-live-objects.py11 import re namespace
24 leakfmt = re.compile(
/external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
H A Dwebdriver_ie_backend.py4 import re namespace
21 if re.search('SCODEF:\d+ CREDAT:\d+', cmd_line, re.IGNORECASE):
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dv8_profiler.py5 import re namespace
34 match = re.match(self._V8_ARG % '(\S+)', i)
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_filter.py6 import re namespace
44 cls._page_regex = re.compile(args.page_filter)
45 except re.error:
50 cls._page_exclude_regex = re.compile(args.page_filter_exclude)
51 except re.error:
/external/chromium_org/ui/ozone/
H A Dgenerate_constructor_list.py51 import re namespace
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dregexp-sticky.js30 var re = /foo.bar/; variable
32 assertTrue(!!"foo*bar".match(re));
33 assertTrue(!!"..foo*bar".match(re));

Completed in 457 milliseconds

1234567891011>>