Home
last modified time | relevance | path

Searched full:dist (Results 1 – 25 of 2127) sorted by relevance

12345678910>>...86

/third_party/typescript/tests/baselines/reference/user/
Dacorn.log3 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,10): error TS2304: Cannot find name 'define'.
4 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,35): error TS2304: Cannot find name 'define'.
5 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,48): error TS2304: Cannot find name 'define'.
6 …-loose/dist/acorn-loose.js(4,45): error TS2339: Property 'acorn' does not exist on type 'typeof im…
7 …-loose/dist/acorn-loose.js(4,80): error TS2339: Property 'acorn' does not exist on type 'typeof im…
8 …loose/dist/acorn-loose.js(4,106): error TS2339: Property 'acorn' does not exist on type 'typeof im…
9 node_modules/acorn/acorn-loose/dist/acorn-loose.js(12,34): error TS2339: Property 'BaseParser' does…
10 node_modules/acorn/acorn-loose/dist/acorn-loose.js(83,12): error TS2339: Property 'next' does not e…
11 node_modules/acorn/acorn-loose/dist/acorn-loose.js(110,16): error TS2339: Property 'lookAhead' does…
12 node_modules/acorn/acorn-loose/dist/acorn-loose.js(111,44): error TS2339: Property 'next' does not …
[all …]
/third_party/boost/boost/math/distributions/
Dcomplement.hpp19 template <class Dist, class RealType>
23 const Dist& d, in complemented2_type()
25 : dist(d), in complemented2_type()
28 const Dist& dist; member
35 template <class Dist, class RealType1, class RealType2>
39 const Dist& d, in complemented3_type()
42 : dist(d), in complemented3_type()
46 const Dist& dist; member
53 template <class Dist, class RealType1, class RealType2, class RealType3>
57 const Dist& d, in complemented4_type()
[all …]
Dfind_scale.hpp32 template <class Dist, class Policy>
34 typename Dist::value_type find_scale( // For example, normal mean. in find_scale()
35 … typename Dist::value_type z, // location of random variable z to give probability, P(X > z) == p. in find_scale()
37 typename Dist::value_type p, // probability value desired at x, say 0.95 for 95% > z. in find_scale()
38 … typename Dist::value_type location, // location parameter, for example, normal distribution mean. in find_scale()
43 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<Dist>::value); in find_scale()
44 BOOST_STATIC_ASSERT(::boost::math::tools::is_scaled_distribution<Dist>::value); in find_scale()
46 static const char* function = "boost::math::find_scale<Dist, Policy>(%1%, %1%, %1%, Policy)"; in find_scale()
50 return policies::raise_domain_error<typename Dist::value_type>( in find_scale()
55 return policies::raise_domain_error<typename Dist::value_type>( in find_scale()
[all …]
Dfind_location.hpp31 template <class Dist, class Policy>
33 typename Dist::value_type find_location( // For example, normal mean. in find_location()
34 … typename Dist::value_type z, // location of random variable z to give probability, P(X > z) == p. in find_location()
36 typename Dist::value_type p, // probability value desired at x, say 0.95 for 95% > z. in find_location()
37 typename Dist::value_type scale, // scale parameter, for example, normal standard deviation. in find_location()
45 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<Dist>::value); in find_location()
46 BOOST_STATIC_ASSERT(::boost::math::tools::is_scaled_distribution<Dist>::value); in find_location()
48 static const char* function = "boost::math::find_location<Dist, Policy>&, %1%)"; in find_location()
52 return policies::raise_domain_error<typename Dist::value_type>( in find_location()
57 return policies::raise_domain_error<typename Dist::value_type>( in find_location()
[all …]
Dhypergeometric.hpp96 …onst std::pair<unsigned, unsigned> range(const hypergeometric_distribution<RealType, Policy>& dist) in range() argument
102 unsigned r = dist.defective(); in range()
103 unsigned n = dist.sample_count(); in range()
104 unsigned N = dist.total(); in range()
120 inline RealType pdf(const hypergeometric_distribution<RealType, Policy>& dist, const unsigned& x) in pdf() argument
124 if(!dist.check_params(function, &result)) in pdf()
126 if(!dist.check_x(x, function, &result)) in pdf()
130 x, dist.defective(), dist.sample_count(), dist.total(), Policy()); in pdf()
134 inline RealType pdf(const hypergeometric_distribution<RealType, Policy>& dist, const U& x) in pdf() argument
145 return pdf(dist, u); in pdf()
[all …]
Dnon_central_f.hpp69 …std::pair<RealType, RealType> range(const non_central_f_distribution<RealType, Policy>& /* dist */) in range()
76 …d::pair<RealType, RealType> support(const non_central_f_distribution<RealType, Policy>& /* dist */) in support()
84 inline RealType mean(const non_central_f_distribution<RealType, Policy>& dist) in mean() argument
87 RealType v1 = dist.degrees_of_freedom1(); in mean()
88 RealType v2 = dist.degrees_of_freedom2(); in mean()
89 RealType l = dist.non_centrality(); in mean()
114 inline RealType mode(const non_central_f_distribution<RealType, Policy>& dist) in mode() argument
118 RealType n = dist.degrees_of_freedom1(); in mode()
119 RealType m = dist.degrees_of_freedom2(); in mode()
120 RealType l = dist.non_centrality(); in mode()
[all …]
Dlognormal.hpp79 …const std::pair<RealType, RealType> range(const lognormal_distribution<RealType, Policy>& /*dist*/) in range()
86 …nst std::pair<RealType, RealType> support(const lognormal_distribution<RealType, Policy>& /*dist*/) in support()
94 RealType pdf(const lognormal_distribution<RealType, Policy>& dist, const RealType& x) in pdf() argument
98 RealType mu = dist.location(); in pdf()
99 RealType sigma = dist.scale(); in pdf()
125 inline RealType cdf(const lognormal_distribution<RealType, Policy>& dist, const RealType& x) in cdf() argument
132 if(0 == detail::check_scale(function, dist.scale(), &result, Policy())) in cdf()
134 if(0 == detail::check_location(function, dist.location(), &result, Policy())) in cdf()
142 normal_distribution<RealType, Policy> norm(dist.location(), dist.scale()); in cdf()
147 inline RealType quantile(const lognormal_distribution<RealType, Policy>& dist, const RealType& p) in quantile() argument
[all …]
Duniform.hpp144 …const std::pair<RealType, RealType> range(const uniform_distribution<RealType, Policy>& /* dist */) in range()
152 …ine const std::pair<RealType, RealType> support(const uniform_distribution<RealType, Policy>& dist) in support() argument
156 return std::pair<RealType, RealType>(dist.lower(), dist.upper()); in support()
160 inline RealType pdf(const uniform_distribution<RealType, Policy>& dist, const RealType& x) in pdf() argument
162 RealType lower = dist.lower(); in pdf()
163 RealType upper = dist.upper(); in pdf()
182 } // RealType pdf(const uniform_distribution<RealType, Policy>& dist, const RealType& x) in pdf()
185 inline RealType cdf(const uniform_distribution<RealType, Policy>& dist, const RealType& x) in cdf() argument
187 RealType lower = dist.lower(); in cdf()
188 RealType upper = dist.upper(); in cdf()
[all …]
Dtriangular.hpp188 …st std::pair<RealType, RealType> range(const triangular_distribution<RealType, Policy>& /* dist */) in range()
195 … const std::pair<RealType, RealType> support(const triangular_distribution<RealType, Policy>& dist) in support() argument
198 return std::pair<RealType, RealType>(dist.lower(), dist.upper()); in support()
202 RealType pdf(const triangular_distribution<RealType, Policy>& dist, const RealType& x) in pdf() argument
205 RealType lower = dist.lower(); in pdf()
206 RealType mode = dist.mode(); in pdf()
207 RealType upper = dist.upper(); in pdf()
237 } // RealType pdf(const triangular_distribution<RealType, Policy>& dist, const RealType& x) in pdf()
240 inline RealType cdf(const triangular_distribution<RealType, Policy>& dist, const RealType& x) in cdf() argument
243 RealType lower = dist.lower(); in cdf()
[all …]
/third_party/boost/libs/math/test/compile_test/
Dtest_compile_result.hpp93 const Distribution& dist = DistributionConcept<Distribution>::get_object(); in constraints() local
97 check_result<value_type>(cdf(dist, x)); in constraints()
98 check_result<value_type>(cdf(complement(dist, x))); in constraints()
99 check_result<value_type>(pdf(dist, x)); in constraints()
100 check_result<value_type>(quantile(dist, x)); in constraints()
101 check_result<value_type>(quantile(complement(dist, x))); in constraints()
102 check_result<value_type>(mean(dist)); in constraints()
103 check_result<value_type>(mode(dist)); in constraints()
104 check_result<value_type>(standard_deviation(dist)); in constraints()
105 check_result<value_type>(variance(dist)); in constraints()
[all …]
/third_party/boost/boost/math/distributions/detail/
Dinv_discrete_quantile.hpp16 template <class Dist>
19 typedef typename Dist::value_type value_type;
20 typedef typename Dist::policy_type policy_type;
22 distribution_quantile_finder(const Dist d, value_type p, bool c) in distribution_quantile_finder()
23 : dist(d), target(p), comp(c) {} in distribution_quantile_finder()
27 … return comp ? value_type(target - cdf(complement(dist, x))) : value_type(cdf(dist, x) - target); in operator ()()
31 Dist dist; member
71 template <class Dist, class Tolerance>
72 typename Dist::value_type
74 const Dist& dist, in do_inverse_discrete_quantile() argument
[all …]
Dgeneric_mode.hpp17 template <class Dist>
20 pdf_minimizer(const Dist& d) in pdf_minimizer()
21 : dist(d) {} in pdf_minimizer()
23 typename Dist::value_type operator()(const typename Dist::value_type& x) in operator ()()
25 return -pdf(dist, x); in operator ()()
28 Dist dist; member
31 template <class Dist>
32 typename Dist::value_type generic_find_mode(const Dist& dist, typename Dist::value_type guess, cons… in generic_find_mode() argument
35 typedef typename Dist::value_type value_type; in generic_find_mode()
36 typedef typename Dist::policy_type policy_type; in generic_find_mode()
[all …]
Dgeneric_quantile.hpp11 template <class Dist>
14 typedef typename Dist::value_type value_type;
15 typedef typename Dist::policy_type policy_type;
17 generic_quantile_finder(const Dist& d, value_type t, bool c) in generic_quantile_finder()
18 : dist(d), target(t), comp(c) {} in generic_quantile_finder()
23 value_type(target - cdf(complement(dist, x))) in operator ()()
24 : value_type(cdf(dist, x) - target); in operator ()()
28 Dist dist; member
45 template <class Dist>
46 typename Dist::value_type generic_quantile(const Dist& dist, const typename Dist::value_type& p, co… in generic_quantile() argument
[all …]
Dderived_accessors.hpp42 typename Distribution::value_type variance(const Distribution& dist);
45 inline typename Distribution::value_type standard_deviation(const Distribution& dist) in standard_deviation() argument
48 return sqrt(variance(dist)); in standard_deviation()
52 inline typename Distribution::value_type variance(const Distribution& dist) in variance() argument
54 typename Distribution::value_type result = standard_deviation(dist); in variance()
59 inline typename Distribution::value_type hazard(const Distribution& dist, const RealType& x) in hazard() argument
64 value_type p = cdf(complement(dist, x)); in hazard()
65 value_type d = pdf(dist, x); in hazard()
78 inline typename Distribution::value_type chf(const Distribution& dist, const RealType& x) in chf() argument
82 return -log(cdf(complement(dist, x))); in chf()
[all …]
/third_party/boost/tools/build/test/
Dstage.py17 stage dist : a a.h auxilliary/1 ;
30 t.expect_addition(["dist/a.dll", "dist/a.h", "dist/1"])
37 stage dist : a a.h auxilliary/1 ;
38 alias dist-alias : dist ;
47 stage dist : a : <variant>debug:<location>ds <variant>release:<location>rs ;
60 t.write("jamroot.jam", "path-constant DIST : dist ;")
64 stage dist : a : <location>$(DIST) ;
69 t.expect_addition("dist/a.exe")
71 t.rm("dist")
78 t.expect_addition("dist/a.exe")
[all …]
/third_party/typescript_eslint/.vscode/
Dlaunch.json24 "${workspaceFolder}/packages/experimental-utils/dist/index.js",
26 "${workspaceFolder}/packages/experimental-utils/dist/ts-estree.js",
28 "${workspaceFolder}/packages/parser/dist/index.js",
30 "${workspaceFolder}/packages/typescript-estree/dist/index.js",
32 "${workspaceFolder}/packages/types/dist/index.js",
34 "${workspaceFolder}/packages/visitor-keys/dist/index.js",
35 "${workspaceFolder}/packages/scope-manager/dist/index.js",
36 "${workspaceFolder}/packages/scope-manager/dist/index.js",
56 "${workspaceFolder}/packages/experimental-utils/dist/index.js",
58 "${workspaceFolder}/packages/experimental-utils/dist/ts-estree.js",
[all …]
/third_party/boost/libs/algorithm/test/
Dfind_backward_test.cpp68 const dist_t<std::vector<int> > dist(v1); in test_find_backward() local
73 dist(ba::find_backward(v1.begin(), v1.end(), 0)), v1.size()); in test_find_backward()
75 dist(ba::find_backward(v1.begin(), v1.end(), 100)), v1.size()); in test_find_backward()
77 dist(ba::find_backward(v1.begin(), v1.end(), v1.back())), in test_find_backward()
80 dist(ba::find_backward(v1.begin(), v1.end(), v1.front())), 0); in test_find_backward()
82 BOOST_CHECK_EQUAL(dist(ba::find_backward(v1, 0)), v1.size()); in test_find_backward()
83 BOOST_CHECK_EQUAL(dist(ba::find_backward(v1, 100)), v1.size()); in test_find_backward()
85 dist(ba::find_backward(v1, v1.back())), v1.size() - 1); in test_find_backward()
86 BOOST_CHECK_EQUAL(dist(ba::find_backward(v1, v1.front())), 0); in test_find_backward()
92 const dist_t<std::list<int> > dist(l1); in test_find_backward() local
[all …]
Dfind_not_test.cpp69 const dist_t<std::vector<int> > dist(v1); in test_sequence() local
73 BOOST_CHECK_EQUAL(dist(ba::find_not(v1.begin(), v1.end(), 0)), 0); in test_sequence()
75 dist(ba::find_not(v1.begin(), v1.end(), v1.back())), 0); in test_sequence()
77 dist(ba::find_not(v1.begin(), v1.end(), v1.front())), 1); in test_sequence()
79 BOOST_CHECK_EQUAL(dist(ba::find_not(v1, 0)), 0); in test_sequence()
80 BOOST_CHECK_EQUAL(dist(ba::find_not(v1, v1.back())), 0); in test_sequence()
81 BOOST_CHECK_EQUAL(dist(ba::find_not(v1, v1.front())), 1); in test_sequence()
84 BOOST_CHECK_EQUAL(dist(ba::find_not(v1.begin(), v1.end(), 0)), 0); in test_sequence()
86 dist(ba::find_not(v1.begin(), v1.end(), v1.back())), v1.size()); in test_sequence()
88 dist(ba::find_not(v1.begin(), v1.end(), v1.front())), v1.size()); in test_sequence()
[all …]
/third_party/boost/boost/math/concepts/
Ddistributions.hpp59 RealType pdf(const distribution_archetype<RealType>& dist, const RealType& x);
62 RealType cdf(const distribution_archetype<RealType>& dist, const RealType& x);
65 RealType quantile(const distribution_archetype<RealType>& dist, const RealType& p);
74 RealType mean(const distribution_archetype<RealType>& dist);
77 RealType standard_deviation(const distribution_archetype<RealType>& dist);
80 RealType variance(const distribution_archetype<RealType>& dist);
83 RealType hazard(const distribution_archetype<RealType>& dist);
86 RealType chf(const distribution_archetype<RealType>& dist);
90 RealType coefficient_of_variation(const distribution_archetype<RealType>& dist);
93 RealType mode(const distribution_archetype<RealType>& dist);
[all …]
/third_party/boost/libs/math/test/
Dtest_weibull.cpp262 weibull_distribution<RealType> dist(2, 3); in test_spots() local
269 mean(dist) in test_spots()
270 , dist.scale() * boost::math::tgamma(1 + 1 / dist.shape()), tolerance); in test_spots()
273 variance(dist) in test_spots()
274 …, dist.scale() * dist.scale() * boost::math::tgamma(1 + 2 / dist.shape()) - mean(dist) * mean(dist in test_spots()
277 standard_deviation(dist) in test_spots()
278 , sqrt(variance(dist)), tolerance); in test_spots()
281 hazard(dist, x) in test_spots()
282 , pdf(dist, x) / cdf(complement(dist, x)), tolerance); in test_spots()
285 chf(dist, x) in test_spots()
[all …]
/third_party/boost/libs/random/test/
Dtest_distribution.ipp24 BOOST_RANDOM_DISTRIBUTION dist;
25 BOOST_CHECK_EQUAL(dist.BOOST_RANDOM_ARG1(), BOOST_RANDOM_ARG1_DEFAULT);
27 BOOST_CHECK_EQUAL(dist.BOOST_RANDOM_ARG2(), BOOST_RANDOM_ARG2_DEFAULT);
30 BOOST_CHECK_EQUAL(dist.BOOST_RANDOM_ARG3(), BOOST_RANDOM_ARG3_DEFAULT);
54 BOOST_RANDOM_DISTRIBUTION copy(dist);
55 BOOST_CHECK_EQUAL(dist, copy);
70 …BOOST_RANDOM_DISTRIBUTION dist(BOOST_RANDOM_ARG1_VALUE, BOOST_RANDOM_ARG2_VALUE, BOOST_RANDOM_ARG3…
72 BOOST_RANDOM_DISTRIBUTION dist(BOOST_RANDOM_ARG1_VALUE, BOOST_RANDOM_ARG2_VALUE);
74 BOOST_RANDOM_DISTRIBUTION dist(BOOST_RANDOM_ARG1_VALUE);
76 BOOST_RANDOM_DISTRIBUTION::param_type param = dist.param();
[all …]
/third_party/typescript/tests/baselines/reference/docker/
Dvue-next.log11 Writing package typings: /vue-next/packages/compiler-core/dist/compiler-core.d.ts
12 Writing package typings: /vue-next/dist/compiler-core.d.ts
19 Writing package typings: /vue-next/packages/compiler-dom/dist/compiler-dom.d.ts
20 Writing package typings: /vue-next/dist/compiler-dom.d.ts
27 Writing package typings: /vue-next/packages/compiler-ssr/dist/compiler-ssr.d.ts
28 Writing package typings: /vue-next/dist/compiler-ssr.d.ts
35 Writing package typings: /vue-next/packages/compiler-sfc/dist/compiler-sfc.d.ts
36 Writing package typings: /vue-next/dist/compiler-sfc.d.ts
43 /vue-next/packages/compiler-core/src/index.ts → packages/compiler-core/dist/compiler-core.esm-bundl…
44 /vue-next/packages/compiler-dom/src/index.ts → packages/compiler-dom/dist/compiler-dom.esm-bundler.…
[all …]
/third_party/python/Lib/distutils/tests/
Dtest_dist.py1 """Tests for distutils.dist."""
11 from distutils.dist import Distribution, fix_help_options
182 dist = Distribution(attrs={'author': 'xxx', 'name': 'xxx',
187 self.assertNotIn('options', dir(dist))
193 dist = Distribution(attrs=attrs)
194 dist.finalize_options()
197 self.assertEqual(dist.metadata.platforms, ['one', 'two'])
198 self.assertEqual(dist.metadata.keywords, ['one', 'two'])
202 dist = Distribution(attrs=attrs)
203 dist.finalize_options()
[all …]
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/scripts/
Dpublish-built-version6 echo "About to publish $TRAVIS_TAG to ajv-dist..."
11 git clone https://${GITHUB_TOKEN}@github.com/ajv-validator/ajv-dist.git ../ajv-dist
13 rm -rf ../ajv-dist/dist
14 mkdir ../ajv-dist/dist
15 cp ./dist/ajv.* ../ajv-dist/dist
16 cat bower.json | sed 's/"name": "ajv"/"name": "ajv-dist"/' > ../ajv-dist/bower.json
17 cd ../ajv-dist
/third_party/python/Doc/library/
Dtkinter.tix.rst40 `Tix Man Pages <http://tix.sourceforge.net/dist/current/man/>`_
43 `Tix Programming Guide <http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_
83 `Tix <http://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm>`_
94 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixBalloon.htm>`_ that
100 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl}
106 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixButtonBox.htm>`_
110 .. \ulink{ButtonBox}{http://tix.sourceforge.net/dist/current/demos/samples/BtnBox.tcl}
116 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixComboBox.htm>`_
122 .. \ulink{ComboBox}{http://tix.sourceforge.net/dist/current/demos/samples/ComboBox.tcl}
128 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixControl.htm>`_
[all …]

12345678910>>...86