Home
last modified time | relevance | path

Searched refs:_compile (Results 1 – 25 of 40) sorted by relevance

12

/external/python/cpython3/Lib/
Dre.py191 return _compile(pattern, flags).match(string)
196 return _compile(pattern, flags).fullmatch(string)
201 return _compile(pattern, flags).search(string)
210 return _compile(pattern, flags).sub(repl, string, count)
221 return _compile(pattern, flags).subn(repl, string, count)
231 return _compile(pattern, flags).split(string, maxsplit)
241 return _compile(pattern, flags).findall(string)
248 return _compile(pattern, flags).finditer(string)
252 return _compile(pattern, flags)
261 return _compile(pattern, flags|T)
[all …]
Dsre_compile.py71 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)
Dcodeop.py110 def _compile(source, filename, symbol): function
132 return _maybe_compile(_compile, source, filename, symbol)
Dtokenize.py98 def _compile(expr): function
525 pseudomatch = _compile(PseudoToken).match(line, pos)
547 endprog = _compile(endpats[token])
580 endprog = _compile(endpats.get(initial) or
/external/python/cpython2/Lib/
Dre.py141 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 …]
Dsre_compile.py64 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 …]
Dcodeop.py101 def _compile(source, filename, symbol): function
122 return _maybe_compile(_compile, source, filename, symbol)
Dsre.py13 from re import _compile
Dimputil.py415 def _compile(pathname, timestamp): function
597 code = _compile(file, t_py)
/external/minijail/tools/
Dcompiler_unittest.py44 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/grpc-grpc/src/python/grpcio/
Dsupport.py46 def _compile(compiler, source_string): function
60 if _compile(compiler, source_string) is not None:
/external/google-fruit/tests/
Dfruit_test_common.py128 self._compile(include_dirs, args=args)
133 self._compile(
142 def _compile(self, include_dirs, args): member in PosixCompiler
166 self._compile(include_dirs, args = args)
172 self._compile(
181 def _compile(self, include_dirs, args): member in MsvcCompiler
/external/fonttools/Tests/
Dmerge_test.py120 def _compile(ttFont): function
144 return _compile(fb.font)
150 buf = _compile(merged)
/external/python/cpython2/Lib/distutils/command/
Dconfig.py132 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/
Dconfig.py126 def _compile(self, body, headers, include_dirs, lang): member in config
137 (src, obj) = self._compile(body, headers, include_dirs, lang)
225 self._compile(body, headers, include_dirs, lang)
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/grpcio_tools/
D_parallel_compile_patch.py52 self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
/external/python/cpython2/Lib/distutils/
Demxccompiler.py77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in EMXCCompiler
Dccompiler.py574 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
Dunixccompiler.py115 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in UnixCCompiler
Dcygwinccompiler.py154 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CygwinCCompiler
/external/libchrome/third_party/jinja2/
Denvironment.py545 def _compile(self, source, filename): member in Environment
588 return self._compile(source, filename)
719 c = self._compile(code, encode_filename(filename))
/external/bazelbuild-rules_android/rules/
Djava.bzl249 java_info = _compile(
276 def _compile(
439 compile = _compile,
/external/python/cpython3/Lib/distutils/
Dccompiler.py574 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
Dcygwinccompiler.py157 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in CygwinCCompiler
/external/python/pybind11/pybind11/
Dsetup_helpers.py409 compiler._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)

12