Home
last modified time | relevance | path

Searched refs:over (Results 1 – 25 of 2747) sorted by relevance

12345678910>>...110

/third_party/skia/third_party/externals/brotli/tests/testdata/
Dquickfox_repeated1over the lazy dogThe quick brown fox jumps over the lazy dogThe quick brown fox jumps over the laz…
/third_party/pcre2/pcre2/testdata/
Dgrepinput12 Here follows a whole lot of stuff that makes the file over 24KiB long.
15 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
16 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
17 jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
18 brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
20 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
21 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
22 jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
23 brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
25 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
[all …]
/third_party/openssl/Configurations/
DINTERNALS.Configure23 should just be skipped over. The possible states of the stack top are
33 Ground rule is that non-condition lines are skipped over if the
48 | ... whatever ... | | this line is skipped over |
50 | ... whatever ... | | this line is skipped over |
54 | ... whatever ... | | this line is skipped over |
56 | ... whatever ... | | this line is skipped over |
58 | ... whatever ... | | this line is skipped over |
60 | ... whatever ... | | this line is skipped over |
62 | ... whatever ... | | this line is skipped over |
68 | ... whatever ... | | this line is skipped over |
[all …]
/third_party/abseil-cpp/absl/random/
Ddiscrete_distribution.cc55 std::vector<size_t> over; in InitDiscreteDistribution() local
65 over.push_back(idx++); in InitDiscreteDistribution()
68 while (!over.empty() && !under.empty()) { in InitDiscreteDistribution()
71 auto hi = over.back(); in InitDiscreteDistribution()
72 over.pop_back(); in InitDiscreteDistribution()
80 over.push_back(hi); in InitDiscreteDistribution()
87 for (auto i : over) { in InitDiscreteDistribution()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Ddiscrete_distribution.cc55 std::vector<size_t> over; in InitDiscreteDistribution() local
65 over.push_back(idx++); in InitDiscreteDistribution()
68 while (!over.empty() && !under.empty()) { in InitDiscreteDistribution()
71 auto hi = over.back(); in InitDiscreteDistribution()
72 over.pop_back(); in InitDiscreteDistribution()
80 over.push_back(hi); in InitDiscreteDistribution()
87 for (auto i : over) { in InitDiscreteDistribution()
/third_party/openssl/test/ssl-tests/
D08-npn.conf15 test-10 = 10-alpn-preferred-over-npn
16 test-11 = 11-sni-npn-preferred-over-alpn
23 test-18 = 18-alpn-preferred-over-npn-resumption
383 [10-alpn-preferred-over-npn]
384 ssl_conf = 10-alpn-preferred-over-npn-ssl
386 [10-alpn-preferred-over-npn-ssl]
387 server = 10-alpn-preferred-over-npn-server
388 client = 10-alpn-preferred-over-npn-client
390 [10-alpn-preferred-over-npn-server]
395 [10-alpn-preferred-over-npn-client]
[all …]
/third_party/python/Doc/library/
Demail.iterators.rst5 :synopsis: Iterate over a message object tree.
11 Iterating over a message object tree is fairly easy with the
13 :mod:`email.iterators` module provides some useful higher level iterations over
19 This iterates over all the payloads in all the subparts of *msg*, returning the
20 string payloads line-by-line. It skips over all the subpart headers, and it
21 skips over any subpart with a payload that isn't a Python string. This is
23 a file using :meth:`~io.TextIOBase.readline`, skipping over all the
32 This iterates over all the subparts of *msg*, returning only those subparts that
/third_party/flutter/flutter/packages/flutter/test/physics/
Dnewton_test.dart130 final SpringSimulation over = SpringSimulation(SpringDescription.withDampingRatio(
132 expect(over.type, SpringType.overDamped);
167 final SpringSimulation over = SpringSimulation(SpringDescription.withDampingRatio(
170 over.tolerance = const Tolerance(distance: 0.01, velocity: 0.01);
172 expect(over.type, SpringType.overDamped);
174 expect(over.isDone(0.0), false);
175 expect(over.x(0.0), 0.0);
177 expect(over.x(0.5).floor(), 445.0);
178 expect(over.x(1.0).floor(), 495.0);
179 expect(over.x(1.5).floor(), 499.0);
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dno-for-in-array.md1 # Disallow iterating over an array with a for-in loop (`no-for-in-array`)
3 This rule prohibits iterating over an array with a for-in loop.
9 A for-in loop (`for (var k in o)`) iterates over the properties of an Object.
11 for-in will iterate over the indices of the array as strings, omitting any "holes" in
13 More common is to use for-of, which iterates over the values of an array.
14 If you want to iterate over the indices, alternatives include:
/third_party/typescript/tests/baselines/reference/
DgeneratorAssignability.types34 // binding pattern over iterable
43 // binding rest pattern over iterable
52 // assignment pattern over iterable
65 // assignment rest pattern over iterable
80 // for-of over iterable
92 // for-await-of over iterable
101 // for-await-of over asynciterable
114 // yield* over iterable
127 // yield* over iterable
136 // yield* over asynciterable
DgeneratorAssignability.symbols36 // binding pattern over iterable
45 // binding rest pattern over iterable
54 // assignment pattern over iterable
63 // assignment rest pattern over iterable
72 // for-of over iterable
84 // for-await-of over iterable
93 // for-await-of over asynciterable
107 // yield* over iterable
119 // yield* over iterable
126 // yield* over asynciterable
DgeneratorAssignability.errors.txt29 // binding pattern over iterable
35 // binding rest pattern over iterable
41 // assignment pattern over iterable
47 // assignment rest pattern over iterable
53 // for-of over iterable
60 // for-await-of over iterable
66 // for-await-of over asynciterable
74 // yield* over iterable
82 // yield* over iterable
88 // yield* over asynciterable
DexcessPropertyCheckWithUnions.js47 let over: Overlapping variable
50 over = { a: 1, b: 1, first: "ok", second: "error" } variable
51 over = { a: 1, b: 1, first: "ok", third: "error" } variable
186 var over; variable
188 over = { a: 1, b: 1, first: "ok", second: "error" }; variable
189 over = { a: 1, b: 1, first: "ok", third: "error" }; variable
DfunctionNameConflicts.symbols43 function over();
44 >over : Symbol(over, Decl(functionNameConflicts.ts, 20, 1))
/third_party/boost/boost/accumulators/statistics/
Dweighted_median.hpp102 float_type over = numeric::fdiv(this->sum - 0.5 * cnt, it->second * cnt); in result() local
103 this->median = it->first * over + (it + 1)->first * ( 1. - over ); in result()
168 float_type over = numeric::fdiv(it->second - 0.5, it->second - (it - 1)->second); in result() local
169 this->median = it->first * over + (it + 1)->first * ( 1. - over ); in result()
Dmedian.hpp105 float_type over = numeric::fdiv(this->sum - 0.5 * cnt, it->second * cnt); in result() local
106 this->median = it->first * over + (it + 1)->first * (1. - over); in result()
171 float_type over = numeric::fdiv(it->second - 0.5, it->second - (it - 1)->second); in result() local
172 this->median = it->first * over + (it + 1)->first * ( 1. - over ); in result()
/third_party/boost/libs/icl/doc/
Dfunctions_element_iteration.qbk13 This section refers to ['*element iteration*] over ['*interval containers*].
30 Iteration over segments is fast, compared to an iteration over elements,
34 iterate over elements.
36 Iteration over elements . . .
42 On the other hand, sometimes iteration over interval containers
49 [caution So we advice you to choose element iteration over
54 or iteration over segments first.]
/third_party/json/doc/examples/
Dbasic_json__CompatibleType.output19 "The quick brown fox jumps over the lazy dog."
20 "The quick brown fox jumps over the lazy dog."
21 "The quick brown fox jumps over the lazy dog."
/third_party/curl/docs/cmdline-opts/
Ddoh-url.d3 Help: Resolve host names over DoH
8 Specifies which DNS-over-HTTPS (DoH) server to use to resolve hostnames,
12 name lookups take place over SSL. However, the certificate verification
/third_party/python/Lib/test/
Dtokenize_tests.txt81 jumps over
84 y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n'
88 jumps over
94 jumps over\n\
100 jumps over\n\
/third_party/ffmpeg/tests/filtergraphs/
Doverlay2 [1:v] scale=50:50 [over];
3 [0:v][over] overlay=20:20
Doverlay_yuv4202 split [main][over];
3 [over] scale=88:72, pad=96:80:4:4 [overf];
Doverlay_yuv4442 split [main][over];
3 [over] scale=88:72, pad=96:80:4:4 [overf];
Doverlay_yuv4222 split [main][over];
3 [over] scale=88:72, pad=96:80:4:4 [overf];
Doverlay_rgb2 split [main][over];
3 [over] scale=88:72, pad=96:80:4:4 [overf];

12345678910>>...110