Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 15 of 15) sorted by relevance

/tinycbor-2.7.6/
DDoxyfile20 # 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.gitattributes1 .tag export-subst
DTODO23 * (unlikely) Add API for checking the pairing of a tag and the tagged type
DMakefile.nmake46 tag:
DMakefile216 tag: distcheck target
/tinycbor-2.7.6/src/
Dcborvalidation.c243 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()
Dcbortojson.c325 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()
Dcborpretty.c358 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()
Dcbor.dox82 …* \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.
Dcborencoder.c377 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/
Dsimplereader.c94 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/
Djson2cbor.c46 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/
Dtst_encoder.cpp141 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/
Dcbor.h193 CBOR_API CborError cbor_encode_tag(CborEncoder *encoder, CborTag tag);
/tinycbor-2.7.6/tests/parser/
Dtst_parser.cpp1271 CborTag tag; in mapFind() local
1272 err = cbor_value_get_tag(&element, &tag); in mapFind()
1274 QCOMPARE(int(tag), 42); in mapFind()