Home
last modified time | relevance | path

Searched refs:Distribution (Results 1 - 25 of 26) sorted by relevance

12

/third_party/python/Lib/distutils/tests/
H A Dtest_dist.py11 from distutils.dist import Distribution, fix_help_options namespace
33 class TestDistribution(Distribution):
34 """Distribution subclasses that avoids the default search for
183 dist = Distribution(attrs={'author': 'xxx', 'name': 'xxx',
194 dist = Distribution(attrs=attrs)
203 dist = Distribution(attrs=attrs)
209 dist = Distribution()
222 dist = Distribution()
245 d = Distribution()
248 d = Distribution(attr
[all...]
H A Dtest_build_ext.py6 from distutils.core import Distribution namespace
67 dist = Distribution({'name': 'xx', 'ext_modules': [xx_ext]})
119 dist = Distribution({'name': 'xx'})
141 dist = Distribution({'name': 'xx'})
173 dist = Distribution({'name': 'xx', 'ext_modules': modules})
180 dist = Distribution({'name': 'xx', 'ext_modules': modules})
189 dist = Distribution({'name': 'xx', 'ext_modules': modules})
258 dist = Distribution()
307 dist = Distribution({'name': 'xx', 'ext_modules': modules})
317 dist = Distribution({'nam
[all...]
H A Dtest_install_scripts.py7 from distutils.core import Distribution namespace
18 dist = Distribution()
62 dist = Distribution()
H A Dtest_bdist_rpm.py8 from distutils.core import Distribution namespace
66 dist = Distribution({'name': 'foo', 'version': '0.1',
113 dist = Distribution({'name': 'foo', 'version': '0.1',
H A Dtest_build_py.py8 from distutils.core import Distribution namespace
34 dist = Distribution({"packages": ["pkg"],
78 dist = Distribution({"packages": ["pkg"],
147 dist = Distribution({"packages": ["pkg"],
H A Dtest_install.py15 from distutils.core import Distribution namespace
48 dist = Distribution({"name": "foopkg"})
110 dist = Distribution({'name': 'xx'})
136 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
164 dist = Distribution({'name': 'xx'})
H A Dtest_upload.py11 from distutils.core import Distribution namespace
91 dist = Distribution()
104 dist = Distribution()
H A Dtest_bdist_dumb.py9 from distutils.core import Distribution namespace
57 dist = Distribution({'name': 'foo', 'version': '0.1',
H A Dtest_cmd.py7 from distutils.dist import Distribution namespace
18 dist = Distribution()
H A Dtest_build_scripts.py7 from distutils.core import Distribution namespace
45 dist = Distribution()
H A Dtest_config.py6 from distutils.core import Distribution namespace
65 self.dist = Distribution()
H A Dsupport.py13 from distutils.core import Distribution namespace
96 - a Distribution instance using keywords
105 dist = Distribution(attrs=kw)
H A Dtest_sdist.py26 from distutils.core import Distribution namespace
83 dist = Distribution(metadata)
/third_party/python/Lib/test/test_importlib/
H A Dtest_main.py15 Distribution,
31 dist = Distribution.from_name('distinfo-pkg')
37 Distribution.from_name('does-not-exist')
47 Distribution.from_name('does-not-exist')
52 self.assertIsInstance(Distribution, type)
60 Distribution.from_name(name)
180 assert all(isinstance(dist, Distribution) for dist in dists)
H A Dtest_metadata_api.py10 Distribution,
146 Prior versions of Distribution.entry_points would return a
265 deps = sorted(Distribution._deps_from_requires_text(requires))
320 dists = Distribution.discover(path=[str(self.site_dir)])
326 dist = Distribution.at(dist_info_path)
331 dist = Distribution.at(str(dist_info_path))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp69 using Distribution = BlockFrequencyInfoImplBase::Distribution;
70 using WeightList = BlockFrequencyInfoImplBase::Distribution::WeightList;
98 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
105 DitheringDistributer::DitheringDistributer(Distribution &Dist,
123 void Distribution::add(const BlockNode &Node, uint64_t Amount,
214 void Distribution::normalize() { in normalize()
290 bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist, in addToDist()
353 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) { in addLoopSuccessorsToDist()
427 Distribution in distributeMass()
[all...]
/third_party/python/Lib/distutils/
H A Dcore.py5 indirectly provides the Distribution and Command classes, although they are
16 from distutils.dist import Distribution namespace
60 Distribution instance; find and parse config files; parse the command
65 The Distribution instance might be an instance of a class supplied via
67 supplied, then the Distribution class (in dist.py) is instantiated.
69 attributes of the Distribution instance.
84 driven entirely by the Distribution object (which each command object
93 # our Distribution (see below).
98 klass = Distribution
105 # Create the Distribution instanc
[all...]
H A Dcmd.py54 from distutils.dist import Distribution namespace
56 if not isinstance(dist, Distribution):
57 raise TypeError("dist must be a Distribution instance")
66 # commands fall back on the Distribution's behaviour. None means
293 """Wrapper around Distribution's 'get_command_obj()' method: find
310 Distribution, which creates and finalizes the command object if
343 former two default to whatever is in the Distribution object, and
H A Ddist.py3 Provides the Distribution class, which represents the module distribution
33 # be converted to a list by Distribution.finalize_options().
44 class Distribution: class
46 is really done within a Distribution instance, which farms the work out
49 Setup scripts will almost never instantiate Distribution directly,
52 Distribution for some specialized purpose, and then pass the subclass
54 necessary to respect the expectations that 'setup' has of Distribution.
137 """Construct a new Distribution instance: initialize all the
138 attributes of a Distribution, and then use 'attrs' (a dictionary
203 # than of the Distribution itsel
[all...]
/third_party/python/Lib/importlib/metadata/
H A D__init__.py31 'Distribution',
191 dist: Optional['Distribution'] = None
531 class Distribution: class
551 """Return the Distribution for the given package name.
554 :return: The Distribution instance (or subclass thereof) for the named
569 """Return an iterable of Distribution objects for all packages.
575 :return: Iterable of Distribution objects for all packages.
587 """Return a Distribution for the indicated metadata path
590 :return: a concrete Distribution instance for the path
604 """Return the parsed metadata for this Distribution
[all...]
/third_party/PyYAML/
H A Dsetup.py72 from setuptools import setup, Command, Distribution as _Distribution, Extension as _Extension
110 class Distribution(_Distribution): class
310 distclass=Distribution,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h367 /// Distribution of unscaled probability weight.
369 /// Distribution of unscaled probability weight to a set of successors.
375 struct Distribution { struct in llvm::BlockFrequencyInfoImplBase
382 Distribution() = default;
437 Distribution &Dist);
446 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
481 Distribution &Dist);
496 void distributeIrrLoopHeaderMass(Distribution &Dist);
760 /// Distribution. There can be multiple edges to each successor.
1160 Distribution Dis in computeMassInLoop()
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dbuild.py53 from distutils.core import Distribution, Extension namespace
101 dist = Distribution({"name": extension_name, "ext_modules": [extension]})
/third_party/rust/crates/unicode-ident/benches/
H A Dxid.rs25 use rand::distributions::{Bernoulli, Distribution, Uniform};
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1344 using Distribution = BlockFrequencyInfoImplBase::Distribution; in calculateNewCallTerminatorWeights()
1352 Distribution BranchDist; in calculateNewCallTerminatorWeights()

Completed in 16 milliseconds

12