/third_party/json/test/src/ |
D | unit-iterators1.cpp | 43 json::iterator it; variable 44 CHECK(it.m_object == nullptr); 57 json::iterator it = j.begin(); variable 58 CHECK(it != j.end()); 59 CHECK(*it == j); 61 it++; 62 CHECK(it != j.begin()); 63 CHECK(it == j.end()); 65 it--; 66 CHECK(it == j.begin()); [all …]
|
D | unit-class_const_iterator.cpp | 46 json::const_iterator it(&j); variable 52 json::const_iterator it(&j); variable 58 json::const_iterator it(&j); variable 65 json::const_iterator it(&j); variable 67 it2 = it; 74 const json::iterator it {}; variable 75 json::const_iterator cit(it); 81 const json::iterator it = j.begin(); variable 82 json::const_iterator cit(it); 94 json::const_iterator it(&j); variable [all …]
|
D | unit-class_iterator.cpp | 46 json::iterator it(&j); variable 52 json::iterator it(&j); variable 58 json::iterator it(&j); variable 65 json::iterator it(&j); variable 67 it2 = it; 78 json::iterator it(&j); variable 79 it.set_begin(); 80 CHECK((it == j.begin())); 86 json::iterator it(&j); variable 87 it.set_begin(); [all …]
|
D | unit-iterators2.cpp | 254 auto it = j_object.begin(); variable 255 CHECK_THROWS_AS(it += 1, json::invalid_iterator&); 256 …CHECK_THROWS_WITH(it += 1, "[json.exception.invalid_iterator.209] cannot use offsets with object i… 259 auto it = j_object.cbegin(); variable 260 CHECK_THROWS_AS(it += 1, json::invalid_iterator&); 261 …CHECK_THROWS_WITH(it += 1, "[json.exception.invalid_iterator.209] cannot use offsets with object i… 264 auto it = j_object.begin(); variable 265 CHECK_THROWS_AS(it + 1, json::invalid_iterator&); 266 …CHECK_THROWS_WITH(it + 1, "[json.exception.invalid_iterator.209] cannot use offsets with object it… 269 auto it = j_object.cbegin(); variable [all …]
|
/third_party/cef/tests/cefclient/resources/ |
D | response_filter.html | 8 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 9 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 10 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 11 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 12 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 13 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 14 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 15 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 16 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… 17 …It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of f… [all …]
|
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/ |
D | writer.js | 12 function literal(it) { argument 13 return it.value; 15 function type(it) { argument 16 if (typeof it === "string") return opt.type(it); // XXX should maintain some context 17 let ret = extended_attributes(it.extAttrs); 18 if (it.union) ret += `(${it.idlType.map(type).join(" or ")})`; 20 if (it.generic) ret += `${it.generic}<`; 21 if (Array.isArray(it.idlType)) ret += it.idlType.map(type).join(", "); 22 else ret += type(it.idlType); 23 if (it.generic) ret += ">"; [all …]
|
/third_party/boost/tools/quickbook/src/ |
D | xml_parse.cpp | 56 for (xml_element* it = node->children(); it; it = it->next()) { in write_xml_tree_impl() local 57 write_xml_tree_impl(out, it, depth + 1); in write_xml_tree_impl() 65 string_iterator& it, 70 string_iterator& it, 74 string_iterator& it, string_iterator start, string_iterator end); 76 string_iterator& it, string_iterator start, string_iterator end); 78 string_iterator& it, string_iterator start, string_iterator end); 80 string_iterator& it, string_iterator start, string_iterator end); 82 string_iterator& it, string_iterator end); 87 iterator it = source.begin(), end = source.end(); in xml_parse() local [all …]
|
D | id_xml.cpp | 40 iterator it = source.begin(), end = source.end(); in parse() local 43 read_past(it, end, "<"); in parse() 44 if (it == end) break; in parse() 46 if (read(it, end, "!--quickbook-escape-prefix-->")) { in parse() 47 read_past(it, end, "<!--quickbook-escape-postfix-->"); in parse() 51 switch (*it) { in parse() 53 ++it; in parse() 54 read_past(it, end, "?>"); in parse() 58 if (read(it, end, "!--")) in parse() 59 read_past(it, end, "-->"); in parse() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | IntermTraverse.cpp | 34 void TIntermSymbol::traverse(TIntermTraverser* it) in traverse() argument 36 it->visitSymbol(this); in traverse() 39 void TIntermConstantUnion::traverse(TIntermTraverser* it) in traverse() argument 41 it->visitConstantUnion(this); in traverse() 47 void TIntermBinary::traverse(TIntermTraverser* it) in traverse() argument 54 if(it->preVisit) in traverse() 56 visit = it->visitBinary(PreVisit, this); in traverse() 64 it->incrementDepth(this); in traverse() 66 if(it->rightToLeft) in traverse() 70 right->traverse(it); in traverse() [all …]
|
/third_party/glslang/glslang/MachineIndependent/ |
D | IntermTraverse.cpp | 64 void TIntermSymbol::traverse(TIntermTraverser *it) in traverse() argument 66 it->visitSymbol(this); in traverse() 69 void TIntermConstantUnion::traverse(TIntermTraverser *it) in traverse() argument 71 it->visitConstantUnion(this); in traverse() 77 void TIntermBinary::traverse(TIntermTraverser *it) in traverse() argument 84 if (it->preVisit) in traverse() 85 visit = it->visitBinary(EvPreVisit, this); in traverse() 91 it->incrementDepth(this); in traverse() 93 if (it->rightToLeft) { in traverse() 95 right->traverse(it); in traverse() [all …]
|
/third_party/boost/tools/quickbook/test/ |
D | identifier-1_6.quickbook | 13 [heading Generate a really long id and duplicate it by having several headers] 14 [heading Generate a really long id and duplicate it by having several headers] 15 [heading Generate a really long id and duplicate it by having lots of headers] 16 [heading Generate a really long id and duplicate it by having lots of headers] 17 [heading Generate a really long id and duplicate it by having lots of headers] 18 [heading Generate a really long id and duplicate it by having several headers] 19 [heading Generate a really long id and duplicate it by having several headers] 20 [heading Generate a really long id and duplicate it by having several headers] 21 [heading Generate a really long id and duplicate it by having several headers] 22 [heading Generate a really long id and duplicate it by having too many headers] [all …]
|
D | identifier-1_5.quickbook | 13 [heading Generate a really long id and duplicate it by having several headers] 14 [heading Generate a really long id and duplicate it by having several headers] 15 [heading Generate a really long id and duplicate it by having lots of headers] 16 [heading Generate a really long id and duplicate it by having lots of headers] 17 [heading Generate a really long id and duplicate it by having lots of headers] 18 [heading Generate a really long id and duplicate it by having several headers] 19 [heading Generate a really long id and duplicate it by having several headers] 20 [heading Generate a really long id and duplicate it by having several headers] 21 [heading Generate a really long id and duplicate it by having several headers] 22 [heading Generate a really long id and duplicate it by having too many headers] [all …]
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/ |
D | properties.js | 2 module.exports = function generate_properties(it, $keyword, $ruleType) { argument 4 var $lvl = it.level; 5 var $dataLvl = it.dataLevel; 6 var $schema = it.schema[$keyword]; 7 var $schemaPath = it.schemaPath + it.util.getProperty($keyword); 8 var $errSchemaPath = it.errSchemaPath + '/' + $keyword; 9 var $breakOnError = !it.opts.allErrors; 12 var $it = it.util.copy(it); 14 $it.level++; 15 var $nextValid = 'valid' + $it.level; [all …]
|
D | if.js | 2 module.exports = function generate_if(it, $keyword, $ruleType) { argument 4 var $lvl = it.level; 5 var $dataLvl = it.dataLevel; 6 var $schema = it.schema[$keyword]; 7 var $schemaPath = it.schemaPath + it.util.getProperty($keyword); 8 var $errSchemaPath = it.errSchemaPath + '/' + $keyword; 9 var $breakOnError = !it.opts.allErrors; 13 var $it = it.util.copy(it); 14 $it.level++; 15 var $nextValid = 'valid' + $it.level; [all …]
|
D | items.js | 2 module.exports = function generate_items(it, $keyword, $ruleType) { argument 4 var $lvl = it.level; 5 var $dataLvl = it.dataLevel; 6 var $schema = it.schema[$keyword]; 7 var $schemaPath = it.schemaPath + it.util.getProperty($keyword); 8 var $errSchemaPath = it.errSchemaPath + '/' + $keyword; 9 var $breakOnError = !it.opts.allErrors; 13 var $it = it.util.copy(it); 15 $it.level++; 16 var $nextValid = 'valid' + $it.level; [all …]
|
D | validate.js | 2 module.exports = function generate_validate(it, $keyword, $ruleType) { argument 4 var $async = it.schema.$async === true, 5 $refKeywords = it.util.schemaHasRulesExcept(it.schema, it.RULES.all, '$ref'), 6 $id = it.self._getId(it.schema); 7 if (it.opts.strictKeywords) { 8 var $unknownKwd = it.util.schemaUnknownRules(it.schema, it.RULES.keywords); 11 if (it.opts.strictKeywords === 'log') it.logger.warn($keywordsMsg); 15 if (it.isTop) { 18 it.async = true; 22 if ($id && (it.opts.sourceCode || it.opts.processCode)) { [all …]
|
D | not.js | 2 module.exports = function generate_not(it, $keyword, $ruleType) { argument 4 var $lvl = it.level; 5 var $dataLvl = it.dataLevel; 6 var $schema = it.schema[$keyword]; 7 var $schemaPath = it.schemaPath + it.util.getProperty($keyword); 8 var $errSchemaPath = it.errSchemaPath + '/' + $keyword; 9 var $breakOnError = !it.opts.allErrors; 12 var $it = it.util.copy(it); 13 $it.level++; 14 var $nextValid = 'valid' + $it.level; [all …]
|
D | contains.js | 2 module.exports = function generate_contains(it, $keyword, $ruleType) { argument 4 var $lvl = it.level; 5 var $dataLvl = it.dataLevel; 6 var $schema = it.schema[$keyword]; 7 var $schemaPath = it.schemaPath + it.util.getProperty($keyword); 8 var $errSchemaPath = it.errSchemaPath + '/' + $keyword; 9 var $breakOnError = !it.opts.allErrors; 13 var $it = it.util.copy(it); 15 $it.level++; 16 var $nextValid = 'valid' + $it.level; [all …]
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dot/ |
D | validate.jst | 8 * it = { schema, RULES, _validate, opts } 9 * it.validate - this template function, 10 * it is used recursively to generate code for subschemas 18 var $async = it.schema.$async === true 19 , $refKeywords = it.util.schemaHasRulesExcept(it.schema, it.RULES.all, '$ref') 20 , $id = it.self._getId(it.schema); 24 if (it.opts.strictKeywords) { 25 var $unknownKwd = it.util.schemaUnknownRules(it.schema, it.RULES.keywords); 28 if (it.opts.strictKeywords === 'log') it.logger.warn($keywordsMsg); 34 {{? it.isTop }} [all …]
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstiterator.c | 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Library General Public 12 * This library is distributed in the hope that it will be useful, 39 * if it wants to continue using it later. 43 * GstIterator *it = _get_iterator(object); 47 * switch (gst_iterator_next (it, &item)) { 54 * gst_iterator_resync (it); 66 * gst_iterator_free (it); 75 * @it: a #GstIterator 79 * Returns: a new copy of @it. [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/jp2kdecimator/ |
D | jp2kcodestream.c | 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 10 * This library is distributed in the hope that it will be useful, 63 packet_iterator_changed_resolution_or_component (PacketIterator * it) in packet_iterator_changed_resolution_or_component() argument 74 tx0 = it->tile->tx0; in packet_iterator_changed_resolution_or_component() 75 tx1 = it->tile->tx1; in packet_iterator_changed_resolution_or_component() 76 ty0 = it->tile->ty0; in packet_iterator_changed_resolution_or_component() 77 ty1 = it->tile->ty1; in packet_iterator_changed_resolution_or_component() 79 it->two_nl_r = two_nl_r = (1 << (it->n_resolutions - it->cur_resolution - 1)); in packet_iterator_changed_resolution_or_component() 81 PPx = it->tile->cod ? it->tile->cod->PPx : it->header->cod.PPx; in packet_iterator_changed_resolution_or_component() [all …]
|
/third_party/gstreamer/gstplugins_good/sys/v4l2/ |
D | v4l2-utils.c | 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 10 * This library is distributed in the hope that it will be useful, 47 struct _GstV4l2GUdevIterator *it; in gst_v4l2_iterator_new() local 49 it = g_slice_new0 (struct _GstV4l2GUdevIterator); in gst_v4l2_iterator_new() 51 it->client = g_udev_client_new (subsystems); in gst_v4l2_iterator_new() 52 it->devices = g_udev_client_query_by_subsystem (it->client, "video4linux"); in gst_v4l2_iterator_new() 54 return (GstV4l2Iterator *) it; in gst_v4l2_iterator_new() 60 struct _GstV4l2GUdevIterator *it = (struct _GstV4l2GUdevIterator *) _it; in gst_v4l2_iterator_next() local 63 if (it->device) in gst_v4l2_iterator_next() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | iterator_enc.c | 22 static void InitLeft(VP8EncIterator* const it) { in InitLeft() argument 23 it->y_left_[-1] = it->u_left_[-1] = it->v_left_[-1] = in InitLeft() 24 (it->y_ > 0) ? 129 : 127; in InitLeft() 25 memset(it->y_left_, 129, 16); in InitLeft() 26 memset(it->u_left_, 129, 8); in InitLeft() 27 memset(it->v_left_, 129, 8); in InitLeft() 28 it->left_nz_[8] = 0; in InitLeft() 29 if (it->top_derr_ != NULL) { in InitLeft() 30 memset(&it->left_derr_, 0, sizeof(it->left_derr_)); in InitLeft() 34 static void InitTop(VP8EncIterator* const it) { in InitTop() argument [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | iterator_enc.c | 22 static void InitLeft(VP8EncIterator* const it) { in InitLeft() argument 23 it->y_left_[-1] = it->u_left_[-1] = it->v_left_[-1] = in InitLeft() 24 (it->y_ > 0) ? 129 : 127; in InitLeft() 25 memset(it->y_left_, 129, 16); in InitLeft() 26 memset(it->u_left_, 129, 8); in InitLeft() 27 memset(it->v_left_, 129, 8); in InitLeft() 28 it->left_nz_[8] = 0; in InitLeft() 29 if (it->top_derr_ != NULL) { in InitLeft() 30 memset(&it->left_derr_, 0, sizeof(it->left_derr_)); in InitLeft() 34 static void InitTop(VP8EncIterator* const it) { in InitTop() argument [all …]
|
/third_party/json/include/nlohmann/ |
D | ordered_map.hpp | 27 // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) 29 template <class It> 30 ordered_map(It first, It last, const Allocator& alloc = Allocator()) in ordered_map() 37 for (auto it = this->begin(); it != this->end(); ++it) in emplace() local 39 if (it->first == key) in emplace() 41 return {it, false}; in emplace() 60 for (auto it = this->begin(); it != this->end(); ++it) in at() local 62 if (it->first == key) in at() 64 return it->second; in at() 73 for (auto it = this->begin(); it != this->end(); ++it) in at() local [all …]
|