/external/ply/ply/doc/ |
D | makedoc.py | 24 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/ |
D | yapf_api.py | 252 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/ |
D | fileparser.py | 27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE) 29 'copyright.*\D(\d{4})\W*(\w.*[\w.])', re.IGNORECASE)
|
/external/skia/tools/copyright/ |
D | fileparser.py | 27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE) 29 'copyright.*\D(\d{4})\W*(\w.*[\w.])', re.IGNORECASE)
|
/external/autotest/client/bin/ |
D | package.py | 140 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/ |
D | make_zip.py | 17 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/ |
D | token.py | 110 re.IGNORECASE) 113 re.IGNORECASE)
|
D | re.py | 145 IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case variable in RegexFlag 152 I = IGNORECASE
|
/external/python/setuptools/pkg_resources/_vendor/packaging/ |
D | requirements.py | 47 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/ |
D | requirements.py | 47 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/ |
D | rgrep.py | 19 reflags = reflags | re.IGNORECASE
|
/external/python/cpython2/Tools/scripts/ |
D | rgrep.py | 18 reflags = reflags | re.IGNORECASE
|
/external/autotest/client/cros/audio/ |
D | alsa_utils.py | 132 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/ |
D | unixbench5.py | 76 if re.search('no measured results', line, flags=re.IGNORECASE):
|
/external/freetype/src/tools/ |
D | chktrcmp.py | 52 c_pathname_pat = re.compile( '^.*\.[ch]$', re.IGNORECASE )
|
/external/llvm/utils/ |
D | schedcover.py | 76 filt = re.compile(sys.argv[2], re.IGNORECASE)
|
/external/clang/tools/clang-format/ |
D | clang-format-diff.py | 76 if not re.match('^%s$' % args.iregex, filename, re.IGNORECASE):
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | schedcover.py | 85 filt = re.compile(sys.argv[2], re.IGNORECASE)
|
/external/python/cpython2/Lib/ |
D | _strptime.py | 17 from re import IGNORECASE 269 return re_compile(self.pattern(format), IGNORECASE)
|
D | token.py | 102 re.IGNORECASE)
|
/external/python/cpython2/Lib/idlelib/ |
D | OutputWindow.py | 82 l.append(re.compile(pat, re.IGNORECASE))
|
/external/python/cpython3/Lib/test/ |
D | test_re.py | 1038 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/ |
D | outwin.py | 27 file_line_progs = [re.compile(pat, re.IGNORECASE)
|
/external/python/apitools/apitools/base/protorpclite/ |
D | util.py | 52 _TIME_ZONE_RE = re.compile(_TIME_ZONE_RE_STRING, re.IGNORECASE | re.VERBOSE)
|
/external/python/cpython2/Tools/world/ |
D | world | 121 cre = re.compile(regexp, re.IGNORECASE)
|