HomeSort by relevance Sort by last modified time
    Searched refs:find_module (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 43 searchpath = None # "top-level search" in imp.find_module()
44 openfile, pathname, _ = imp.find_module(name, searchpath)
59 openfile, pathname, _ = imp.find_module(name, searchpath)
  /external/chromium_org/tools/perf/
run_measurement 40 imp.find_module(module_name, paths)
47 imp.find_module(module_name, paths)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None): member in class:TestImporter
94 def find_module(self, fullname, path=None): member in class:ImportBlocker
109 def find_module(self, fullname, path=None): member in class:ImpWrapper
118 file, filename, stuff = imp.find_module(subname, path)
test_pkgutil.py 110 def find_module(self, fullname, path=None): member in class:PkgutilPEP302Tests.MyTestImporter
test_importlib.py 94 def find_module(self, fullname, path=None): member in class:mock_modules
test_zipimport.py 442 self.assertRaises(TypeError, z.find_module, None)
450 self.assertEqual(z.find_module('abc'), None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None): member in class:TestImporter
94 def find_module(self, fullname, path=None): member in class:ImportBlocker
109 def find_module(self, fullname, path=None): member in class:ImpWrapper
118 file, filename, stuff = imp.find_module(subname, path)
test_pkgutil.py 110 def find_module(self, fullname, path=None): member in class:PkgutilPEP302Tests.MyTestImporter
test_importlib.py 94 def find_module(self, fullname, path=None): member in class:mock_modules
test_zipimport.py 442 self.assertRaises(TypeError, z.find_module, None)
450 self.assertEqual(z.find_module('abc'), None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pyclbr.py 138 f, fname, (_s, _m, ty) = imp.find_module(module, path)
140 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path)
144 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
ihooks.py 29 the imp module's find_module interface, while HookableModuleLoader
103 find_module() and a load_module(), as well as find_module_in_dir()
109 find_module(name, [path]) returns None or 'stuff', and
114 def find_module(self, name, path = None): member in class:BasicModuleLoader
130 return imp.find_module(name, [dir])
366 stuff = self.loader.find_module(name)
373 stuff = self.loader.find_module(name, path)
525 stuff = self.loader.find_module(partname, path)
pkgutil.py 176 def find_module(self, fullname, path=None): member in class:ImpImporter
186 file, filename, etc = imp.find_module(subname, path)
315 return ImpImporter(self.filename).find_module('__init__')
475 loader = importer.find_module(fullname)
modulefinder.py 268 fp, pathname, stuff = self.find_module(partname,
461 fp, buf, stuff = self.find_module("__init__", m.__path__)
472 def find_module(self, name, path, parent=None): member in class:ModuleFinder
479 self.msgout(3, "find_module -> Excluded", fullname)
487 return imp.find_module(name, path)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pyclbr.py 138 f, fname, (_s, _m, ty) = imp.find_module(module, path)
140 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path)
144 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
ihooks.py 29 the imp module's find_module interface, while HookableModuleLoader
103 find_module() and a load_module(), as well as find_module_in_dir()
109 find_module(name, [path]) returns None or 'stuff', and
114 def find_module(self, name, path = None): member in class:BasicModuleLoader
130 return imp.find_module(name, [dir])
366 stuff = self.loader.find_module(name)
373 stuff = self.loader.find_module(name, path)
525 stuff = self.loader.find_module(partname, path)
pkgutil.py 176 def find_module(self, fullname, path=None): member in class:ImpImporter
186 file, filename, etc = imp.find_module(subname, path)
315 return ImpImporter(self.filename).find_module('__init__')
475 loader = importer.find_module(fullname)
modulefinder.py 268 fp, pathname, stuff = self.find_module(partname,
461 fp, buf, stuff = self.find_module("__init__", m.__path__)
472 def find_module(self, name, path, parent=None): member in class:ModuleFinder
479 self.msgout(3, "find_module -> Excluded", fullname)
487 return imp.find_module(name, path)
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 110 = imp.find_module(testID, [testDir])
244 = imp.find_module(testID, [testDir])
  /external/chromium_org/v8/tools/testrunner/local/
testsuite.py 42 (f, pathname, description) = imp.find_module("testcfg", [root])
  /external/libcap-ng/libcap-ng-0.7/bindings/python/
capng.py 16 fp, pathname, description = imp.find_module('_capng', [dirname(__file__)])
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 304 = imp.find_module(name, [self.baseDir])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 489 file, path_name, etc = imp.find_module(main_name, dirs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 489 file, path_name, etc = imp.find_module(main_name, dirs)
  /build/tools/releasetools/
common.py 749 info = imp.find_module("releasetools", [path])
755 info = imp.find_module(f, [d])

Completed in 484 milliseconds

1 2