Searched refs:IGNORECASE (Results 1 – 25 of 115) sorted by relevance
12345
/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/pigweed/pw_console/py/ |
D | log_filter_test.py | 47 re.IGNORECASE, 54 re.IGNORECASE, 68 re.IGNORECASE, 76 re.IGNORECASE,
|
/external/yapf/yapf/yapflib/ |
D | yapf_api.py | 302 elif re.search(DISABLE_PATTERN, uwline.last.value.strip(), re.IGNORECASE): 309 line.split('\n')[0].strip(), re.IGNORECASE) or 311 line.split('\n')[-1].strip(), re.IGNORECASE)) 316 line.split('\n')[0].strip(), re.IGNORECASE) or 318 line.split('\n')[-1].strip(), 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/pigweed/pw_presubmit/py/pw_presubmit/ |
D | keep_sorted.py | 45 _START = re.compile(r'keep-sorted: (begin|start)', re.IGNORECASE) 46 _END = re.compile(r'keep-sorted: (stop|end)', re.IGNORECASE) 47 _IGNORE_CASE = re.compile(r'ignore-case', re.IGNORECASE) 48 _ALLOW_DUPES = re.compile(r'allow-dupes', re.IGNORECASE) 49 _IGNORE_PREFIX = re.compile(r'ignore-prefix=(\S+)', re.IGNORECASE) 50 _STICKY_COMMENTS = re.compile(r'sticky-comments=(\S+)', re.IGNORECASE)
|
/external/autotest/client/bin/ |
D | package.py | 145 not_inst_pattern = re.compile('not-installed', re.IGNORECASE) 206 package_pattern = re.compile('RPM', re.IGNORECASE) 208 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/tensorflow/tensorflow/tools/docs/ |
D | fenced_doctest_lib.py | 132 if re.search('<!--.*?doctest.*?skip.*?all.*?-->', string, re.IGNORECASE): 136 if re.search('doctest.*skip', match.group(0), re.IGNORECASE):
|
/external/python/setuptools/setuptools/_vendor/packaging/ |
D | requirements.py | 56 VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) 57 VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE)
|
/external/python/setuptools/pkg_resources/_vendor/packaging/ |
D | requirements.py | 56 VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) 57 VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE)
|
/external/webrtc/tools_webrtc/sslroots/ |
D | generate_sslroots.py | 152 prog = re.compile(decl_block, re.IGNORECASE) 157 prog2 = re.compile(cert_block, re.IGNORECASE | re.MULTILINE | re.DOTALL)
|
/external/python/cpython2/Tools/scripts/ |
D | rgrep.py | 18 reflags = reflags | re.IGNORECASE
|
/external/python/cpython3/Tools/scripts/ |
D | rgrep.py | 19 reflags = reflags | re.IGNORECASE
|
/external/autotest/client/cros/audio/ |
D | alsa_utils.py | 140 cpat = re.compile(r'\b%s\b' % cname, re.IGNORECASE) 141 scpat = re.compile(r'\b%s\b' % scname, re.IGNORECASE)
|
/external/llvm/utils/ |
D | schedcover.py | 76 filt = re.compile(sys.argv[2], re.IGNORECASE)
|
/external/freetype/src/tools/ |
D | chktrcmp.py | 53 c_pathname_pat = re.compile('^.*\.[ch]$', re.IGNORECASE)
|
/external/gfxstream-protocols/registry/vulkan/scripts/htmldiff/ |
D | htmldiff | 45 re.IGNORECASE)
|
/external/clang/tools/clang-format/ |
D | clang-format-diff.py | 76 if not re.match('^%s$' % args.iregex, filename, re.IGNORECASE):
|
/external/python/cpython3/Lib/idlelib/ |
D | outwin.py | 26 file_line_progs = [re.compile(pat, re.IGNORECASE)
|
/external/yapf/yapf/third_party/yapf_diff/ |
D | yapf_diff.py | 98 elif not re.match('^%s$' % args.iregex, filename, re.IGNORECASE):
|
/external/python/cpython2/Lib/ |
D | token.py | 102 re.IGNORECASE)
|
D | _strptime.py | 17 from re import IGNORECASE 269 return re_compile(self.pattern(format), IGNORECASE)
|
/external/python/cpython2/Lib/idlelib/ |
D | OutputWindow.py | 82 l.append(re.compile(pat, re.IGNORECASE))
|
/external/crosvm/tools/ |
D | bench | 18 syscall_re = re.compile(r"^(\w+)\(.+?= .+$", re.IGNORECASE | re.MULTILINE)
|
/external/python/apitools/apitools/base/protorpclite/ |
D | util.py | 52 _TIME_ZONE_RE = re.compile(_TIME_ZONE_RE_STRING, re.IGNORECASE | re.VERBOSE)
|
12345