| /third_party/json/test/src/ |
| D | unit-iterators1.cpp | 42 json::iterator it; variable 43 CHECK(it.m_object == nullptr); 56 json::iterator it = j.begin(); variable 57 CHECK(it != j.end()); 58 CHECK(*it == j); 60 it++; 61 CHECK(it != j.begin()); 62 CHECK(it == j.end()); 64 it--; 65 CHECK(it == j.begin()); [all …]
|
| D | unit-class_const_iterator.cpp | 45 json::const_iterator it(&j); variable 51 json::const_iterator it(&j); variable 57 json::const_iterator it(&j); variable 64 json::const_iterator it(&j); variable 66 it2 = it; 73 const json::iterator it {}; variable 74 json::const_iterator cit(it); 80 const json::iterator it = j.begin(); variable 81 json::const_iterator cit(it); 93 json::const_iterator it(&j); variable [all …]
|
| D | unit-class_iterator.cpp | 45 json::iterator it(&j); variable 51 json::iterator it(&j); variable 57 json::iterator it(&j); variable 64 json::iterator it(&j); variable 66 it2 = it; 77 json::iterator it(&j); variable 78 it.set_begin(); 79 CHECK((it == j.begin())); 85 json::iterator it(&j); variable 86 it.set_begin(); [all …]
|
| D | unit-iterators2.cpp | 301 auto it = j_object.begin(); variable 302 CHECK_THROWS_AS(it += 1, json::invalid_iterator&); 303 …CHECK_THROWS_WITH(it += 1, "[json.exception.invalid_iterator.209] cannot use offsets with object i… 306 auto it = j_object.cbegin(); variable 307 CHECK_THROWS_AS(it += 1, json::invalid_iterator&); 308 …CHECK_THROWS_WITH(it += 1, "[json.exception.invalid_iterator.209] cannot use offsets with object i… 311 auto it = j_object.begin(); variable 312 CHECK_THROWS_AS(it + 1, json::invalid_iterator&); 313 …CHECK_THROWS_WITH(it + 1, "[json.exception.invalid_iterator.209] cannot use offsets with object it… 316 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/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/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 …]
|
| D | dependencies.js | 2 module.exports = function generate_dependencies(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 …]
|
| /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/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 …]
|
| D | properties.jst | 9 $it.schema = $aProperties; 10 $it.schemaPath = it.schemaPath + '.additionalProperties'; 11 $it.errSchemaPath = it.errSchemaPath + '/additionalProperties'; 12 $it.errorPath = it.opts._errorDataPathProperty 13 ? it.errorPath 14 : it.util.getPathExpr(it.errorPath, $key, it.opts.jsonPointers); 16 $it.dataPathArr[$dataNxt] = $key; 27 , $dataNxt = $it.dataLevel = it.dataLevel + 1 32 , $pProperties = it.schema.patternProperties || {} 34 , $aProperties = it.schema.additionalProperties [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/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/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 | 32 // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) 34 template <class It> 35 ordered_map(It first, It last, const Allocator& alloc = Allocator()) in ordered_map() 42 for (auto it = this->begin(); it != this->end(); ++it) in emplace() local 44 if (it->first == key) in emplace() 46 return {it, false}; in emplace() 65 for (auto it = this->begin(); it != this->end(); ++it) in at() local 67 if (it->first == key) in at() 69 return it->second; in at() 78 for (auto it = this->begin(); it != this->end(); ++it) in at() local [all …]
|
| /third_party/typescript/src/testRunner/unittests/services/ |
| D | patternMatcher.ts | 3 it("EmptyIdentifier", () => { 7 it("SimpleIdentifier", () => { 11 it("PrefixUnderscoredIdentifier", () => { 15 it("UnderscoredIdentifier", () => { 19 it("PostfixUnderscoredIdentifier", () => { 23 it("PrefixUnderscoredIdentifierWithCapital", () => { 27 it("MUnderscorePrefixed", () => { 31 it("CamelCaseIdentifier", () => { 35 it("MixedCaseIdentifier", () => { 39 it("TwoCharacterCapitalIdentifier", () => { [all …]
|
| /third_party/openssl/crypto/asn1/ |
| D | tasn_new.c | 18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, 21 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it, 23 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it); 27 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it); 29 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it) in ASN1_item_new() argument 32 if (ASN1_item_ex_new(&ret, it) > 0) in ASN1_item_new() 37 ASN1_VALUE *ASN1_item_new_ex(const ASN1_ITEM *it, OSSL_LIB_CTX *libctx, in ASN1_item_new_ex() argument 41 if (asn1_item_embed_new(&ret, it, 0, libctx, propq) > 0) in ASN1_item_new_ex() 49 int ossl_asn1_item_ex_new_intern(ASN1_VALUE **pval, const ASN1_ITEM *it, in ossl_asn1_item_ex_new_intern() argument 52 return asn1_item_embed_new(pval, it, 0, libctx, propq); in ossl_asn1_item_ex_new_intern() [all …]
|