/external/python/cpython3/Lib/ |
D | re.py | 173 return _compile(pattern, flags).match(string) 178 return _compile(pattern, flags).fullmatch(string) 183 return _compile(pattern, flags).search(string) 192 return _compile(pattern, flags).sub(repl, string, count) 203 return _compile(pattern, flags).subn(repl, string, count) 213 return _compile(pattern, flags).split(string, maxsplit) 223 return _compile(pattern, flags).findall(string) 230 return _compile(pattern, flags).finditer(string) 234 return _compile(pattern, flags) 243 return _compile(pattern, flags|T) [all …]
|
D | sre_compile.py | 71 def _compile(code, pattern, flags): function 148 _compile(code, av[2], flags) 156 _compile(code, av[2], flags) 168 _compile(code, p, _combine_flags(flags, add_flags, del_flags)) 184 _compile(code, av[1], flags) 190 _compile(code, av, flags) 209 _compile(code, av, flags) 237 _compile(code, av[1], flags) 242 _compile(code, av[2], flags) 607 _compile(code, p.data, flags)
|
D | codeop.py | 101 def _compile(source, filename, symbol): function 122 return _maybe_compile(_compile, source, filename, symbol)
|
D | tokenize.py | 147 def _compile(expr): function 583 pseudomatch = _compile(PseudoToken).match(line, pos) 605 endprog = _compile(endpats[token]) 638 endprog = _compile(endpats.get(initial) or
|
D | zipfile.py | 2020 def _compile(file, optimize=-1): function 2062 if _compile(file_py): 2088 if not _compile(file_py, optimize=self._optimize):
|
/external/python/cpython2/Lib/ |
D | re.py | 141 return _compile(pattern, flags).match(string) 146 return _compile(pattern, flags).search(string) 155 return _compile(pattern, flags).sub(repl, string, count) 166 return _compile(pattern, flags).subn(repl, string, count) 171 return _compile(pattern, flags).split(string, maxsplit) 181 return _compile(pattern, flags).findall(string) 190 return _compile(pattern, flags).finditer(string) 194 return _compile(pattern, flags) 203 return _compile(pattern, flags|T) 230 def _compile(*key): function [all …]
|
D | sre_compile.py | 64 def _compile(code, pattern, flags): function 121 _compile(code, av[2], flags) 132 _compile(code, av[2], flags) 140 _compile(code, av[2], flags) 151 _compile(code, av[1], flags) 167 _compile(code, av[1], flags) 173 _compile(code, av, flags) 192 _compile(code, av, flags) 216 _compile(code, av[1], flags) 221 _compile(code, av[2], flags) [all …]
|
D | codeop.py | 101 def _compile(source, filename, symbol): function 122 return _maybe_compile(_compile, source, filename, symbol)
|
D | sre.py | 13 from re import _compile
|
D | imputil.py | 415 def _compile(pathname, timestamp): function 597 code = _compile(file, t_py)
|
/external/minijail/tools/ |
D | compiler_unittest.py | 44 def _compile(self, line): member in CompileFilterStatementTests 58 block = self._compile('read: allow') 69 block = self._compile('read: arg0 == 0x100') 104 block = self._compile('read: arg0 %s 0x100' % operator) 115 block = self._compile('read: arg0 & 0x3') 147 block = self._compile('read: arg0 in 0x3') 197 short_block = self._compile( 199 long_block = self._compile( 221 block = self._compile('read: arg0 == 0 && arg1 == 0 || arg0 == 1') 238 block = self._compile('read: trap') [all …]
|
/external/google-fruit/tests/ |
D | fruit_test_common.py | 101 self._compile(include_dirs, args=args) 106 self._compile( 115 def _compile(self, include_dirs, args): member in PosixCompiler 139 self._compile(include_dirs, args = args) 145 self._compile( 154 def _compile(self, include_dirs, args): member in MsvcCompiler
|
/external/grpc-grpc/src/python/grpcio/ |
D | support.py | 46 def _compile(compiler, source_string): function 60 if _compile(compiler, source_string) is not None:
|
/external/python/cpython2/Lib/distutils/command/ |
D | config.py | 132 def _compile(self, body, headers, include_dirs, lang): member in config 143 (src, obj) = self._compile(body, headers, include_dirs, lang) 232 self._compile(body, headers, include_dirs, lang)
|
/external/python/cpython3/Lib/distutils/command/ |
D | config.py | 127 def _compile(self, body, headers, include_dirs, lang): member in config 138 (src, obj) = self._compile(body, headers, include_dirs, lang) 227 self._compile(body, headers, include_dirs, lang)
|
/external/honggfuzz/examples/bind/ |
D | README.md | 23 * edit _compile.sh_, so it contains correct dist path
|
/external/libchrome/third_party/jinja2/ |
D | environment.py | 545 def _compile(self, source, filename): member in Environment 588 return self._compile(source, filename) 719 c = self._compile(code, encode_filename(filename))
|
/external/python/cpython2/Lib/distutils/ |
D | emxccompiler.py | 77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in EMXCCompiler
|
D | ccompiler.py | 574 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) 579 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CCompiler
|
D | unixccompiler.py | 115 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in UnixCCompiler
|
D | cygwinccompiler.py | 154 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CygwinCCompiler
|
/external/python/cpython3/Lib/distutils/ |
D | ccompiler.py | 574 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) 579 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CCompiler
|
D | cygwinccompiler.py | 159 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CygwinCCompiler
|
D | unixccompiler.py | 111 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in UnixCCompiler
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | HowToSubmitABug.rst | 81 .. _compile-time optimization bugs:
|