/tinycbor-2.7.6/ |
D | Doxyfile | 20 # This tag specifies the encoding used for all characters in the config file 22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv 29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description 49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all [all …]
|
D | .gitattributes | 1 .tag export-subst
|
D | TODO | 23 * (unlikely) Add API for checking the pairing of a tag and the tagged type
|
D | Makefile.nmake | 46 tag:
|
D | Makefile | 216 tag: distcheck target
|
/tinycbor-2.7.6/src/ |
D | cborvalidation.c | 243 struct KnownTagData { uint32_t tag; uint32_t types; }; member 325 static inline CborError validate_tag(CborValue *it, CborTag tag, int flags, int recursionLeft) in validate_tag() argument 339 if (tagData->tag < tag) in validate_tag() 341 if (tagData->tag > tag) in validate_tag() 350 if (flags & CborValidateNoUnknownTagsSA && tag < 24) in validate_tag() 352 if ((flags & CborValidateNoUnknownTagsSR) == CborValidateNoUnknownTagsSR && tag < 256) in validate_tag() 593 CborTag tag; in validate_value() local 594 err = cbor_value_get_tag(it, &tag); in validate_value() 600 err = validate_tag(it, tag, flags, recursionLeft - 1); in validate_value()
|
D | cbortojson.c | 325 static CborError find_tagged_type(CborValue *it, CborTag *tag, CborType *type) in find_tagged_type() argument 330 cbor_value_get_tag(it, tag); /* can't fail */ in find_tagged_type() 342 CborTag tag; in tagged_value_to_json() local 346 cbor_value_get_tag(it, &tag); /* can't fail */ in tagged_value_to_json() 351 if (fprintf(out, "{\"tag%" PRIu64 "\":", tag) < 0) in tagged_value_to_json() 359 if (fprintf(out, ",\"tag%" PRIu64 "$cbor\":{", tag) < 0 || in tagged_value_to_json() 374 tag = status->lastTag; in tagged_value_to_json() 378 … (tag == CborNegativeBignumTag || tag == CborExpectedBase16Tag || tag == CborExpectedBase64Tag)) { in tagged_value_to_json() 382 if (tag == CborNegativeBignumTag) { in tagged_value_to_json() 385 } else if (tag == CborExpectedBase64Tag) { in tagged_value_to_json()
|
D | cborpretty.c | 358 CborTag tag; in value_to_pretty() local 359 cbor_value_get_tag(it, &tag); /* can't fail */ in value_to_pretty() 360 if (fprintf(out, "%" PRIu64 "(", tag) < 0) in value_to_pretty()
|
D | cbor.dox | 82 …* \value CborTagType Type is a CBOR tag (a 64-bit integer describing the item that f… 114 …* This tag is also used as "file magic," marking a file as contai… 120 * but the user application may use other tag values than the ones specified in RFC 7049.
|
D | cborencoder.c | 377 CborError cbor_encode_tag(CborEncoder *encoder, CborTag tag) in cbor_encode_tag() argument 380 return encode_number_no_update(encoder, tag, TagType << MajorTypeShift); in cbor_encode_tag()
|
/tinycbor-2.7.6/examples/ |
D | simplereader.c | 94 CborTag tag; in dumprecursive() local 95 cbor_value_get_tag(it, &tag); // can't fail in dumprecursive() 96 printf("Tag(%lld)\n", (long long)tag); in dumprecursive()
|
/tinycbor-2.7.6/tools/json2cbor/ |
D | json2cbor.c | 46 CborTag tag; member 215 if (md->type != cJSON_String || sscanf(md->valuestring, "%" PRIu64, &result.tag) < 0) in parse_meta_data() 249 if (md.tag == CborExpectedBase64Tag) in decode_json_with_metadata() 251 else if (md.tag == CborExpectedBase16Tag) in decode_json_with_metadata() 253 else if (md.tag == CborNegativeBignumTag) in decode_json_with_metadata() 379 err = cbor_encode_tag(&container, md.tag); in decode_json()
|
/tinycbor-2.7.6/tests/encoder/ |
D | tst_encoder.cpp | 141 struct Tag { CborTag tag; QVariant tagged; }; member 227 CborError err = cbor_encode_tag(encoder, v.value<Tag>().tag); in encodeVariant()
|
/tinycbor-2.7.6/include/tinycbor/ |
D | cbor.h | 193 CBOR_API CborError cbor_encode_tag(CborEncoder *encoder, CborTag tag);
|
/tinycbor-2.7.6/tests/parser/ |
D | tst_parser.cpp | 1271 CborTag tag; in mapFind() local 1272 err = cbor_value_get_tag(&element, &tag); in mapFind() 1274 QCOMPARE(int(tag), 42); in mapFind()
|