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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/
__init__.py 38 _xmlplus.__path__.extend(__path__)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/
__init__.py 38 _xmlplus.__path__.extend(__path__)
  /external/e2fsprogs/lib/ext2fs/
ext3_extents.h 97 #define EXT_HAS_FREE_INDEX(__path__) \
98 ((__path__)->p_hdr->eh_entries < (__path__)->p_hdr->eh_max)
  /system/extras/ext4_utils/
ext4_extents.h 80 #define EXT_HAS_FREE_INDEX(__path__) (le16_to_cpu((__path__)->p_hdr->eh_entries) < le16_to_cpu((__path__)->p_hdr->eh_max))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 39 package = __import__(packagename, glo, loc, ['__path__'])
40 searchpath = package.__path__
57 package = __import__(packagename, glo, loc, ['__path__'])
58 searchpath = package.__path__
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
modulefinder.py 27 # handle __path__ modifications packages make at runtime. Therefore there
56 self.__path__ = path
70 if self.__path__ is not None:
71 s = s + ", %r" % (self.__path__,)
130 if m.__path__:
141 if caller.__path__:
154 if caller.__path__:
226 if not m.__path__:
235 for dir in m.__path__:
264 if parent and parent.__path__ is None
    [all...]
ihooks.py 325 m.__path__ = path
411 if hasattr(m, "__path__"):
427 if "__path__" in globals:
428 # __path__ is set so modname is already the package name
521 path = parent and parent.__path__
imputil.py 549 for submodule_path in parent.__path__:
563 values['__path__'] = [ pathname ]
655 # need __path__ processing
688 # (rather than FS-names like __path__)
pydoc.py 162 _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__',
662 if hasattr(object, '__path__'):
664 for importer, modname, ispkg in pkgutil.iter_modules(object.__path__):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
modulefinder.py 27 # handle __path__ modifications packages make at runtime. Therefore there
56 self.__path__ = path
70 if self.__path__ is not None:
71 s = s + ", %r" % (self.__path__,)
130 if m.__path__:
141 if caller.__path__:
154 if caller.__path__:
226 if not m.__path__:
235 for dir in m.__path__:
264 if parent and parent.__path__ is None
    [all...]
ihooks.py 325 m.__path__ = path
411 if hasattr(m, "__path__"):
427 if "__path__" in globals:
428 # __path__ is set so modname is already the package name
521 path = parent and parent.__path__
imputil.py 549 for submodule_path in parent.__path__:
563 values['__path__'] = [ pathname ]
655 # need __path__ processing
688 # (rather than FS-names like __path__)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgutil.py 101 mod.__path__ = []
test_importlib.py 88 module.__path__ = ['<mock __path__>']
test_importhooks.py 74 mod.__path__ = self._get__path__()
regrtest.py 173 # Some times __path__ and __file__ are not absolute (e.g. while running from
177 # they are found in the CWD their __file__ and __path__ will be relative (this
180 # (site.py absolutize them), the __file__ and __path__ will be absolute too.
181 # Therefore it is necessary to absolutize manually the __file__ and __path__ of
184 if hasattr(module, '__path__'):
185 module.__path__ = [os.path.abspath(path) for path in module.__path__]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgutil.py 101 mod.__path__ = []
test_importlib.py 88 module.__path__ = ['<mock __path__>']
test_importhooks.py 74 mod.__path__ = self._get__path__()
regrtest.py 173 # Some times __path__ and __file__ are not absolute (e.g. while running from
177 # they are found in the CWD their __file__ and __path__ will be relative (this
180 # (site.py absolutize them), the __file__ and __path__ will be absolute too.
181 # Therefore it is necessary to absolutize manually the __file__ and __path__ of
184 if hasattr(module, '__path__'):
185 module.__path__ = [os.path.abspath(path) for path in module.__path__]
    [all...]
  /external/chromium_org/tools/telemetry/build/
update_docs.py 61 module.__path__, module.__name__ + '.'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 48 path = package.__path__[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 48 path = package.__path__[0]
  /external/chromium_org/third_party/jinja2/
loaders.py 415 mod.__path__ = path
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 681 ispkg = mod.__path__ is not None
    [all...]

Completed in 1567 milliseconds

1 2