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

  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
__init__.py 1 import pkg_resources
2 __version__ = pkg_resources.require('modulegraph')[0].version
modulegraph.py 12 import pkg_resources
84 working_set = pkg_resources.WorkingSet(path)
160 # - In earlier setuptools versions you pkg_resources.ImpWrapper
174 ImpImporter = pkg_resources.ImpWrapper
179 importer = pkg_resources.get_importer(entry)
708 ImpImporter = pkg_resources.ImpWrapper
715 importer = pkg_resources.get_importer(entry)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
__init__.py 131 import pkg_resources
132 __version__ = pkg_resources.require('altgraph')[0].version
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/build/lib/nspkg/
__init__.py 3 import pkg_resources
4 pkg_resources.declare_namespace(__name__)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/build/lib/nspkg/nssubpkg/
__init__.py 3 import pkg_resources
4 pkg_resources.declare_namespace(__name__)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/
__init__.py 3 import pkg_resources
4 pkg_resources.declare_namespace(__name__)
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/nssubpkg/
__init__.py 3 import pkg_resources
4 pkg_resources.declare_namespace(__name__)
  /external/chromium-trace/catapult/third_party/WebOb/docs/
conf.py 2 import pkg_resources
4 version = release = pkg_resources.get_distribution('webob').version
  /external/chromium-trace/catapult/third_party/Paste/tests/
__init__.py 6 import pkg_resources
7 pkg_resources.require('Paste')
test_urlparser.py 4 from pkg_resources import get_distribution
  /external/chromium-trace/catapult/third_party/Paste/paste/
__init__.py 4 import pkg_resources
5 pkg_resources.declare_namespace(__name__)
7 # don't prevent use of paste if pkg_resources isn't installed
urlparser.py 13 import pkg_resources
15 pkg_resources = None variable
527 if pkg_resources is None:
528 raise NotImplementedError("This class requires pkg_resources.")
530 self.egg = pkg_resources.get_distribution(egg_or_spec)
535 manager = pkg_resources.ResourceManager()
598 ``pkg_resources``. Takes a configuration value ``egg``, which is
602 if pkg_resources is None:
603 raise NotImplementedError("This function requires pkg_resources.")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
_qpol.py 3 import sys, pkg_resources, imp
4 __file__ = pkg_resources.resource_filename(__name__,'_qpol.so')
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
util.py 24 # pkg_resources (part of setuptools) is needed when WPR is
28 import pkg_resources
31 return pkg_resources.resource_exists(__name__, resource_name)
34 return pkg_resources.resource_string(__name__, resource_name)
37 # Import of pkg_resources failed, so fall back to getting resources
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/src/
install.py 9 import pkg_resources
16 r = pkg_resources.require('setuptools')[0]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/
ez_setup.py 68 was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules
74 import pkg_resources
78 pkg_resources.require("setuptools>="+version); return
79 except pkg_resources.VersionConflict, e:
88 except pkg_resources.DistributionNotFound:
91 del pkg_resources, sys.modules['pkg_resources'] # reload ok
199 import pkg_resources
201 pkg_resources.require(req)
202 except pkg_resources.VersionConflict
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/
ez_setup.py 68 was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules
74 import pkg_resources
78 pkg_resources.require("setuptools>="+version); return
79 except pkg_resources.VersionConflict, e:
88 except pkg_resources.DistributionNotFound:
91 del pkg_resources, sys.modules['pkg_resources'] # reload ok
199 import pkg_resources
201 pkg_resources.require(req)
202 except pkg_resources.VersionConflict
    [all...]
  /external/protobuf/python/
ez_setup.py 100 was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules
106 import pkg_resources
111 pkg_resources.require("setuptools>="+version); return
112 except pkg_resources.VersionConflict, e:
121 except pkg_resources.DistributionNotFound:
124 del pkg_resources, sys.modules['pkg_resources'] # reload ok
232 import pkg_resources
234 pkg_resources.require(req)
235 except pkg_resources.VersionConflict
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 87 import pkg_resources
89 pkg_resources.require("setuptools>="+version)
91 except pkg_resources.VersionConflict, e:
168 import pkg_resources
170 pkg_resources.require(req)
171 except pkg_resources.VersionConflict:
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_modulegraph.py 3 import pkg_resources
130 saved_ws = pkg_resources.WorkingSet
132 pkg_resources.WorkingSet = WS
139 pkg_resources.WorkingSet = saved_ws
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/
setup.py 775 from pkg_resources import normalize_path, add_activation_listener
776 from pkg_resources import working_set, require
805 # Reset pkg_resources state:
811 from pkg_resources import working_set
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/
setup.py 775 from pkg_resources import normalize_path, add_activation_listener
776 from pkg_resources import working_set, require
805 # Reset pkg_resources state:
811 from pkg_resources import working_set
  /external/opencv3/3rdparty/jinja2/
loaders.py 212 from pkg_resources import DefaultProvider, ResourceManager, \
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
template.py 692 import sys, optparse, pkg_resources, os
695 dist = pkg_resources.get_distribution('Paste')
  /external/nanopb-c/generator/
nanopb_generator.py 11 import pkg_resources # pyinstaller / protobuf 2.5 seem to need these
    [all...]

Completed in 1272 milliseconds