HomeSort by relevance Sort by last modified time
    Searched refs:_compile (Results 1 - 24 of 24) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre.py 12 # old pickles expect the _compile() reconstructor in this module
13 from re import _compile namespace
re.py 137 return _compile(pattern, flags).match(string)
142 return _compile(pattern, flags).search(string)
151 return _compile(pattern, flags).sub(repl, string, count)
162 return _compile(pattern, flags).subn(repl, string, count)
167 return _compile(pattern, flags).split(string, maxsplit)
177 return _compile(pattern, flags).findall(string)
186 return _compile(pattern, flags).finditer(string)
190 return _compile(pattern, flags)
199 return _compile(pattern, flags|T)
226 def _compile(*key) function
    [all...]
codeop.py 101 def _compile(source, filename, symbol): function
122 return _maybe_compile(_compile, source, filename, symbol)
sre_compile.py 33 def _compile(code, pattern, flags): function
72 _compile(code, av[2], flags)
83 _compile(code, av[2], flags)
91 _compile(code, av[2], flags)
102 _compile(code, av[1], flags)
118 _compile(code, av[1], flags)
124 _compile(code, av, flags)
143 _compile(code, av, flags)
167 _compile(code, av[1], flags)
172 _compile(code, av[2], flags
    [all...]
imputil.py 415 def _compile(pathname, timestamp): function
597 code = _compile(file, t_py)
682 # CRLF handling in _compile
683 # race condition in _compile
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre.py 12 # old pickles expect the _compile() reconstructor in this module
13 from re import _compile namespace
re.py 137 return _compile(pattern, flags).match(string)
142 return _compile(pattern, flags).search(string)
151 return _compile(pattern, flags).sub(repl, string, count)
162 return _compile(pattern, flags).subn(repl, string, count)
167 return _compile(pattern, flags).split(string, maxsplit)
177 return _compile(pattern, flags).findall(string)
186 return _compile(pattern, flags).finditer(string)
190 return _compile(pattern, flags)
199 return _compile(pattern, flags|T)
226 def _compile(*key) function
    [all...]
codeop.py 101 def _compile(source, filename, symbol): function
122 return _maybe_compile(_compile, source, filename, symbol)
sre_compile.py 33 def _compile(code, pattern, flags): function
72 _compile(code, av[2], flags)
83 _compile(code, av[2], flags)
91 _compile(code, av[2], flags)
102 _compile(code, av[1], flags)
118 _compile(code, av[1], flags)
124 _compile(code, av, flags)
143 _compile(code, av, flags)
167 _compile(code, av[1], flags)
172 _compile(code, av[2], flags
    [all...]
imputil.py 415 def _compile(pathname, timestamp): function
597 code = _compile(file, t_py)
682 # CRLF handling in _compile
683 # race condition in _compile
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSSettings.py 528 _compile = _Tool('VCCLCompilerTool', 'ClCompile') variable
536 _AddTool(_compile)
553 _Same(_compile, 'AdditionalIncludeDirectories', _folder_list) # /I
554 _Same(_compile, 'AdditionalOptions', _string_list)
555 _Same(_compile, 'AdditionalUsingDirectories', _folder_list) # /AI
556 _Same(_compile, 'AssemblerListingLocation', _file_name) # /Fa
557 _Same(_compile, 'BrowseInformationFile', _file_name)
558 _Same(_compile, 'BufferSecurityCheck', _boolean) # /GS
559 _Same(_compile, 'DisableLanguageExtensions', _boolean) # /Za
560 _Same(_compile, 'DisableSpecificWarnings', _string_list) # /w
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
config.py 132 def _compile(self, body, headers, include_dirs, lang): member in class:config
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
232 self._compile(body, headers, include_dirs, lang)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
config.py 132 def _compile(self, body, headers, include_dirs, lang): member in class:config
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
232 self._compile(body, headers, include_dirs, lang)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
emxccompiler.py 77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:EMXCCompiler
cygwinccompiler.py 178 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:CygwinCCompiler
unixccompiler.py 113 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:UnixCCompiler
ccompiler.py 562 # entirely or implement _compile().
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 class:CCompiler
583 # should implement _compile().
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
emxccompiler.py 77 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:EMXCCompiler
cygwinccompiler.py 178 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:CygwinCCompiler
unixccompiler.py 113 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): member in class:UnixCCompiler
ccompiler.py 562 # entirely or implement _compile().
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 class:CCompiler
583 # should implement _compile().
    [all...]
  /external/chromium_org/third_party/jinja2/
environment.py 506 def _compile(self, source, filename): member in class:Environment
551 return self._compile(source, filename)
681 c = self._compile(code, encode_filename(filename))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_re.py 550 # old pickles expect the _compile() reconstructor in sre module
552 from sre import _compile namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_re.py 550 # old pickles expect the _compile() reconstructor in sre module
552 from sre import _compile namespace
    [all...]

Completed in 822 milliseconds