HomeSort by relevance Sort by last modified time
    Searched refs:imp (Results 151 - 175 of 203) sorted by null

1 2 3 4 5 67 8 9

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 38 import imp namespace
429 imp.get_suffixes())
447 for suffix, mode, kind in imp.get_suffixes():
    [all...]
pydoc.py 48 # - imp.load_module() cannot be prevented from clobbering existing
55 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings namespace
224 try: module = imp.load_module('__temp__', file, filename, info[1:])
251 magic = imp.get_magic()
254 kind = imp.PY_COMPILED
256 kind = imp.PY_SOURCE
262 module = imp.load_module(name, file, path, (ext, 'r', kind))
358 (object.__name__ in ('errno', 'exceptions', 'gc', 'imp',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 38 import imp namespace
429 imp.get_suffixes())
447 for suffix, mode, kind in imp.get_suffixes():
    [all...]
pydoc.py 48 # - imp.load_module() cannot be prevented from clobbering existing
55 import sys, imp, os, re, types, inspect, __builtin__, pkgutil, warnings namespace
224 try: module = imp.load_module('__temp__', file, filename, info[1:])
251 magic = imp.get_magic()
254 kind = imp.PY_COMPILED
256 kind = imp.PY_SOURCE
262 module = imp.load_module(name, file, path, (ext, 'r', kind))
358 (object.__name__ in ('errno', 'exceptions', 'gc', 'imp',
    [all...]
  /external/chromium_org/third_party/jinja2/
compiler.py 784 imp = import_.importname
785 self.import_aliases[imp] = alias = self.temporary_identifier()
786 if '.' in imp:
787 module, obj = imp.rsplit('.', 1)
791 self.writeline('import %s as %s' % (imp, alias))
    [all...]
environment.py 637 import imp, marshal namespace
638 py_header = imp.get_magic() + \
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 4 import imp namespace
37 """Version of imp.find_module() that handles hierarchical module names"""
43 (file, filename, descr) = imp.find_module(tgt, path)
44 if descr[2] == imp.PY_SOURCE:
46 module = imp.load_module(tgt, file, filename, descr)
51 if descr[2] != imp.PY_SOURCE:
65 descr = filename, None, imp.PY_SOURCE
666 if type != imp.PY_SOURCE:
    [all...]
TreeWidget.py 19 import imp namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 4 import imp namespace
37 """Version of imp.find_module() that handles hierarchical module names"""
43 (file, filename, descr) = imp.find_module(tgt, path)
44 if descr[2] == imp.PY_SOURCE:
46 module = imp.load_module(tgt, file, filename, descr)
51 if descr[2] != imp.PY_SOURCE:
65 descr = filename, None, imp.PY_SOURCE
666 if type != imp.PY_SOURCE:
    [all...]
TreeWidget.py 19 import imp namespace
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 392 @imported_grammars = @imports.map do | imp |
393 file = group.locate( "#{ imp }.g" ) or raise( Util.tidy( <<-END ) )
394 | #{ @path }: unable to locate imported grammar file #{ imp }.g
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
parser_unittest.py 5 import imp namespace
21 imp.find_module("mojom")
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 33 import imp namespace
563 googlers = imp.load_source('googlers_mapping',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys.py 754 # imp.NullImporter
755 import imp namespace
756 check(imp.NullImporter(self.file.name), size(''))
test_exceptions.py 20 from imp import reload
regrtest.py 168 import imp namespace
    [all...]
test_unicode.py 1050 import imp namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys.py 754 # imp.NullImporter
755 import imp namespace
756 check(imp.NullImporter(self.file.name), size(''))
test_exceptions.py 20 from imp import reload
regrtest.py 168 import imp namespace
    [all...]
  /external/openssl/crypto/bn/asm/
ia64.S 183 brp.loop.imp .L_bn_add_words_ctop,.L_bn_add_words_cend-16
236 brp.loop.imp .L_bn_sub_words_ctop,.L_bn_sub_words_cend-16
306 brp.loop.imp .L_bn_mul_words_ctop,.L_bn_mul_words_cend-16
412 brp.loop.imp .L_bn_mul_add_words_ctop,.L_bn_mul_add_words_cend-16
486 brp.loop.imp .L_bn_sqr_words_ctop,.L_bn_sqr_words_cend-16
    [all...]
  /external/chromium_org/third_party/cython/src/
runtests.py 364 import imp namespace
365 return imp.load_dynamic(module_name, file_path)
1003 import imp namespace
    [all...]
  /external/openssl/crypto/aes/asm/
aes-ia64.S 102 brp.loop.imp .Le_top,.Le_end-16 };;
481 brp.loop.imp .Ld_top,.Ld_end-16 };;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 1 import imp namespace
123 MAGIC = imp.get_magic()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 1 import imp namespace
123 MAGIC = imp.get_magic()
    [all...]

Completed in 969 milliseconds

1 2 3 4 5 67 8 9