Home
last modified time | relevance | path

Searched refs:IGNORECASE (Results 1 – 25 of 87) sorted by relevance

1234

/external/ply/ply/doc/
Dmakedoc.py24 alink = re.compile(r"<a *name *= *\"(.*)\"></a>", re.IGNORECASE)
25 heading = re.compile(r"(_nn\d)", re.IGNORECASE)
62 h1 = re.compile(r".*?<H1>(<a.*a>)*[\d\.\s]*(.*?)</H1>", re.IGNORECASE)
63 h2 = re.compile(r".*?<H2>(<a.*a>)*[\d\.\s]*(.*?)</H2>", re.IGNORECASE)
64 h3 = re.compile(r".*?<H3>(<a.*a>)*[\d\.\s]*(.*?)</H3>", re.IGNORECASE)
65 h4 = re.compile(r".*?<H4>(<a.*a>)*[\d\.\s]*(.*?)</H4>", re.IGNORECASE)
66 h5 = re.compile(r".*?<H5>(<a.*a>)*[\d\.\s]*(.*?)</H5>", re.IGNORECASE)
/external/yapf/yapf/yapflib/
Dyapf_api.py252 elif re.search(DISABLE_PATTERN, uwline.last.value.strip(), re.IGNORECASE):
259 line.split('\n')[0].strip(), re.IGNORECASE) or
261 line.split('\n')[-1].strip(), re.IGNORECASE))
266 line.split('\n')[0].strip(), re.IGNORECASE) or
268 line.split('\n')[-1].strip(), re.IGNORECASE))
/external/skqp/tools/copyright/
Dfileparser.py27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE)
29 'copyright.*\D(\d{4})\W*(\w.*[\w.])', re.IGNORECASE)
/external/skia/tools/copyright/
Dfileparser.py27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE)
29 'copyright.*\D(\d{4})\W*(\w.*[\w.])', re.IGNORECASE)
/external/autotest/client/bin/
Dpackage.py140 not_inst_pattern = re.compile('not-installed', re.IGNORECASE)
201 package_pattern = re.compile('RPM', re.IGNORECASE)
203 package_pattern = re.compile('Debian', re.IGNORECASE)
/external/python/cpython2/Tools/nuget/
Dmake_zip.py17 TKTCL_RE = re.compile(r'^(_?tk|tcl).+\.(pyd|dll)', re.IGNORECASE)
18 DEBUG_RE = re.compile(r'_d\.(pyd|dll|exe|pdb|lib)$', re.IGNORECASE)
19 PYTHON_DLL_RE = re.compile(r'python\d\d?\.dll$', re.IGNORECASE)
/external/python/cpython3/Lib/
Dtoken.py110 re.IGNORECASE)
113 re.IGNORECASE)
Dre.py145 IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case variable in RegexFlag
152 I = IGNORECASE
/external/python/setuptools/pkg_resources/_vendor/packaging/
Drequirements.py47 VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE)
48 VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE)
/external/python/setuptools/setuptools/_vendor/packaging/
Drequirements.py47 VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE)
48 VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE)
/external/python/cpython3/Tools/scripts/
Drgrep.py19 reflags = reflags | re.IGNORECASE
/external/python/cpython2/Tools/scripts/
Drgrep.py18 reflags = reflags | re.IGNORECASE
/external/autotest/client/cros/audio/
Dalsa_utils.py132 cpat = re.compile(r'\b%s\b' % cname, re.IGNORECASE)
133 scpat = re.compile(r'\b%s\b' % scname, re.IGNORECASE)
/external/autotest/client/tests/unixbench5/
Dunixbench5.py76 if re.search('no measured results', line, flags=re.IGNORECASE):
/external/freetype/src/tools/
Dchktrcmp.py52 c_pathname_pat = re.compile( '^.*\.[ch]$', re.IGNORECASE )
/external/llvm/utils/
Dschedcover.py76 filt = re.compile(sys.argv[2], re.IGNORECASE)
/external/clang/tools/clang-format/
Dclang-format-diff.py76 if not re.match('^%s$' % args.iregex, filename, re.IGNORECASE):
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dschedcover.py85 filt = re.compile(sys.argv[2], re.IGNORECASE)
/external/python/cpython2/Lib/
D_strptime.py17 from re import IGNORECASE
269 return re_compile(self.pattern(format), IGNORECASE)
Dtoken.py102 re.IGNORECASE)
/external/python/cpython2/Lib/idlelib/
DOutputWindow.py82 l.append(re.compile(pat, re.IGNORECASE))
/external/python/cpython3/Lib/test/
Dtest_re.py1038 self.assertEqual(re.I, re.IGNORECASE)
1492 pat = re.compile('\xc0', flags | re.IGNORECASE)
1496 pat = re.compile('\xc0', re.ASCII | re.IGNORECASE)
1498 pat = re.compile('(?a)\xc0', re.IGNORECASE)
1506 pat = re.compile(b'\xc0', flags | re.IGNORECASE)
1548 pat = re.compile(bpat, re.LOCALE | re.IGNORECASE)
1551 pat = re.compile(b'(?L)' + bpat, re.IGNORECASE)
1554 pat = re.compile(bpat, re.IGNORECASE)
1577 self.assertIsNone(re.match(r'(?-i:a)b', 'Ab', re.IGNORECASE))
1578 self.assertTrue(re.match(r'(?-i:a)b', 'aB', re.IGNORECASE))
[all …]
/external/python/cpython3/Lib/idlelib/
Doutwin.py27 file_line_progs = [re.compile(pat, re.IGNORECASE)
/external/python/apitools/apitools/base/protorpclite/
Dutil.py52 _TIME_ZONE_RE = re.compile(_TIME_ZONE_RE_STRING, re.IGNORECASE | re.VERBOSE)
/external/python/cpython2/Tools/world/
Dworld121 cre = re.compile(regexp, re.IGNORECASE)

1234