/third_party/boost/libs/thread/test/ |
D | test_scheduler.cpp | 34 void test_scheduler(const int n, boost::scheduler<>& sch) in test_scheduler() argument 38 sch.submit_after(boost::bind(fn,i), seconds(i)); in test_scheduler() 39 sch.submit_after(boost::bind(fn,i), milliseconds(i*100)); in test_scheduler() 43 void test_after(const int n, boost::scheduler<>& sch) in test_after() argument 47 sch.after(seconds(i)).submit(boost::bind(fn,i)); in test_after() 48 sch.after(milliseconds(i*100)).submit(boost::bind(fn,i)); in test_after() 52 void test_at(const int n, boost::scheduler<>& sch) in test_at() argument 56 sch.at(steady_clock::now()+seconds(i)).submit(boost::bind(fn,i)); in test_at() 57 sch.at(steady_clock::now()+milliseconds(i*100)).submit(boost::bind(fn,i)); in test_at() 61 void test_on(const int n, boost::scheduler<>& sch, thread_pool& tp) in test_on() argument [all …]
|
/third_party/boost/boost/thread/executors/ |
D | scheduler.hpp | 66 …resubmit_at_executor(Scheduler& sch, Executor& ex, chrono::time_point<clock, Duration> const& tp) : in resubmit_at_executor() argument 67 sch(sch), in resubmit_at_executor() 86 sch.submit_at(resubmit(ex,boost::forward<Work>(w)), tp); in submit() 95 return sch; in underlying_scheduler() 105 return is_closed || sch.closed() || ex.closed(); in closed() 109 Scheduler& sch; member in boost::executors::resubmit_at_executor 128 scheduler_executor_wrapper(Scheduler& sch, Executor& ex) : in scheduler_executor_wrapper() argument 129 sch(sch), in scheduler_executor_wrapper() 143 return sch; in underlying_scheduler() 155 return the_executor(sch, ex, abs_time); in at() [all …]
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/ |
D | index.js | 67 var sch = schema[key]; 68 if (Array.isArray(sch)) { 70 for (var i=0; i<sch.length; i++) 71 …_traverse(opts, pre, post, sch[i], jsonPtr + '/' + key + '/' + i, rootSchema, jsonPtr, key, schema… 74 if (sch && typeof sch == 'object') { 75 for (var prop in sch) 76 …_traverse(opts, pre, post, sch[prop], jsonPtr + '/' + key + '/' + escapeJsonPtr(prop), rootSchema,… 79 _traverse(opts, pre, post, sch, jsonPtr + '/' + key, rootSchema, jsonPtr, key, schema);
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dot/ |
D | defaults.def | 18 {{= it.useDefault($sch.default) }} 20 {{= JSON.stringify($sch.default) }} 31 {{ var $sch = $schema[$propertyKey]; }} 32 {{? $sch.default !== undefined }} 41 {{~ it.schema.items:$sch:$i }} 42 {{? $sch.default !== undefined }}
|
D | dependencies.jst | 23 var $sch = $schema[$property]; 24 var $deps = Array.isArray($sch) ? $propertyDeps : $schemaDeps; 25 $deps[$property] = $sch; 58 {{ var $sch = $schemaDeps[$property]; }} 59 {{? {{# def.nonEmptySchema:$sch }} }} 64 $it.schema = $sch;
|
D | anyOf.jst | 7 var $noEmptySchema = $schema.every(function($sch) { 8 return {{# def.nonEmptySchema:$sch }}; 18 {{~ $schema:$sch:$i }} 20 $it.schema = $sch;
|
D | allOf.jst | 11 {{~ $schema:$sch:$i }} 12 {{? {{# def.nonEmptySchema:$sch }} }} 15 $it.schema = $sch;
|
D | oneOf.jst | 19 {{~ $schema:$sch:$i }} 20 {{? {{# def.nonEmptySchema:$sch }} }} 22 $it.schema = $sch;
|
D | properties.jst | 140 {{ var $sch = $schema[$propertyKey]; }} 142 {{? {{# def.nonEmptySchema:$sch}} }} 146 , $hasDefault = $useDefaults && $sch.default !== undefined; 147 $it.schema = $sch; 210 {{ var $sch = $pProperties[$pProperty]; }} 212 {{? {{# def.nonEmptySchema:$sch}} }} 214 $it.schema = $sch;
|
D | items.jst | 48 {{~ $schema:$sch:$i }} 49 {{? {{# def.nonEmptySchema:$sch }} }} 55 $it.schema = $sch;
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/compile/ |
D | async.js | 45 function loadMetaSchemaOf(sch) { argument 46 var $schema = sch.$schema; 71 return schemaPromise.then(function (sch) { argument 73 return loadMetaSchemaOf(sch).then(function () { 74 if (!added(ref)) self.addSchema(sch, ref, undefined, meta);
|
D | resolve.js | 239 …traverse(schema, {allKeys: true}, function(sch, jsonPtr, rootSchema, parentJsonPtr, parentKeyword,… argument 241 var id = self._getId(sch); 253 if (!equal(sch, refVal.schema)) 257 if (localRefs[id] && !equal(sch, localRefs[id])) 259 localRefs[id] = sch;
|
/third_party/boost/boost/sort/common/ |
D | scheduler.hpp | 260 const scheduler<Func_t, Allocator> &sch) in operator <<() argument 262 std::unique_lock < spinlock_t > s(sch.spl); in operator <<() 263 out << "Nelem :" << sch.nelem << std::endl; in operator <<() 264 for (auto it = sch.mp.begin(); it != sch.mp.end(); ++it) in operator <<()
|
/third_party/ltp/testcases/kernel/sched/sched_stress/ |
D | sched_stress.sh | 31 echo 0.000000 > sch.measure 35 rm -rf /tmp/tmp$$ ./sched_datafile sch.measure
|
/third_party/musl/src/crypt/ |
D | crypt_des.c | 652 int sch = (ch < 0x80) ? ch : -(0x100 - ch); in ascii_to_bin() local 655 retval = sch - '.'; in ascii_to_bin() 656 if (sch >= 'A') { in ascii_to_bin() 657 retval = sch - ('A' - 12); in ascii_to_bin() 658 if (sch >= 'a') in ascii_to_bin() 659 retval = sch - ('a' - 38); in ascii_to_bin()
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/spec/fixtures/ |
D | schema.js | 49 var sch = { variable 58 sch.properties['foo_' + keyword] = {title: 'foo'}; 59 sch.properties['bar_' + keyword] = {title: 'bar'}; 60 return sch;
|
/third_party/grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/ |
D | 14f9a0cda0d64590430218aaf6dedd9be2a3533f | 5 �upath/foo/baz:sch
|
D | 0aa599e20761777c2cb9b41cd89e5c2e18f82d9e | 5 �upath/foo/bar:sch
|
D | 5d43ac923d7607a16e3d7bf8b838f52622871251 | 5 �upath/foo/bar:sch
|
D | 18d8d274aa7c163fd6d0084d5c25c8623e10c541 | 5 �nupath/foo/bar:sch
|
/third_party/iowow/src/utils/ |
D | iwpool.c | 170 const char *sch = strchr(split_chars, ch); in iwpool_split_string() local 171 if (ep >= sp && (sch || *(ep + 1) == '\0')) { in iwpool_split_string() 172 if (!sch && *(ep + 1) == '\0') ++ep; in iwpool_split_string()
|
D | iwutils.c | 179 char *iwu_replace_char(char *data, char sch, char rch) { in iwu_replace_char() argument 181 if (data[i] == sch) { in iwu_replace_char()
|
/third_party/icu/icu4c/source/data/translit/ |
D | rm_SURSILV_rm_FONIPA_SURSILV.txt | 62 {sch} [aeiou] → ʒ ; # can also be /ʃ/; needs a dictionary 63 {sch} → ʃ ; # can also be /ʒ/; needs a dictionary
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | rm_SURSILV_rm_FONIPA_SURSILV.txt | 62 {sch} [aeiou] → ʒ ; # can also be /ʃ/; needs a dictionary 63 {sch} → ʃ ; # can also be /ʒ/; needs a dictionary
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | rm_SURSILV_rm_FONIPA_SURSILV.txt | 63 {sch} [aeiou] → ʒ ; # can also be /ʃ/; needs a dictionary 64 {sch} → ʃ ; # can also be /ʒ/; needs a dictionary
|