Home
last modified time | relevance | path

Searched refs:tag (Results 1 - 25 of 2098) sorted by relevance

12345678910>>...84

/third_party/typescript/tests/baselines/reference/
H A DinvalidTaggedTemplateEscapeSequences(target=es2015).js2 function tag (str: any, ...args: any[]): any {
6 const a = tag`123`
7 const b = tag`123 ${100}`
8 const x = tag`\u{hello} ${ 100 } \xtraordinary ${ 200 } wonderful ${ 300 } \uworld`;
10 const z = tag`\u{hello} \xtraordinary wonderful \uworld` // should work with Tagged NoSubstitutionTemplate
12 const a1 = tag`${ 100 }\0` // \0
13 const a2 = tag`${ 100 }\00` // \\00
14 const a3 = tag`${ 100 }\u` // \\u
15 const a4 = tag`${ 100 }\u0` // \\u0
16 const a5 = tag`
33 function tag(str, ...args) { global() function
[all...]
H A DinvalidTaggedTemplateEscapeSequences(target=es5).js2 function tag (str: any, ...args: any[]): any {
6 const a = tag`123`
7 const b = tag`123 ${100}`
8 const x = tag`\u{hello} ${ 100 } \xtraordinary ${ 200 } wonderful ${ 300 } \uworld`;
10 const z = tag`\u{hello} \xtraordinary wonderful \uworld` // should work with Tagged NoSubstitutionTemplate
12 const a1 = tag`${ 100 }\0` // \0
13 const a2 = tag`${ 100 }\00` // \\00
14 const a3 = tag`${ 100 }\u` // \\u
15 const a4 = tag`${ 100 }\u0` // \\u0
16 const a5 = tag`
33 function tag(str) { global() function
[all...]
H A DexcessPropertyCheckWithUnions.js3 tag: "A",
6 tag: "D",
9 tag: "T",
11 let wrong: ADT = { tag: "T", a1: "extra" }
12 wrong = { tag: "A", d20: 12 }
13 wrong = { tag: "D" }
16 tag: "A",
19 tag: "A",
22 tag: "B",
25 tag
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dnumber_affixutils.cpp164 AffixTag tag; in unescape() local
165 while (hasNext(tag, affixPattern)) { in unescape()
166 tag = nextToken(tag, affixPattern, status); in unescape()
168 if (tag.type == TYPE_CURRENCY_OVERFLOW) { in unescape()
175 } else if (tag.type < 0) { in unescape()
177 position + length, provider.getSymbol(tag.type), getFieldForType(tag.type), status); in unescape()
179 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape()
188 AffixTag tag; in unescapedCodePointCount() local
208 AffixTag tag; containsType() local
223 AffixTag tag; hasCurrencySymbols() local
240 AffixTag tag; replaceType() local
256 AffixTag tag; containsOnlySymbolsAndIgnorables() local
272 AffixTag tag; iterateWithConsumer() local
281 nextToken(AffixTag tag, const UnicodeString &patternString, UErrorCode &status) nextToken() argument
425 hasNext(const AffixTag &tag, const UnicodeString &string) hasNext() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_affixutils.cpp164 AffixTag tag; in unescape() local
165 while (hasNext(tag, affixPattern)) { in unescape()
166 tag = nextToken(tag, affixPattern, status); in unescape()
168 if (tag.type == TYPE_CURRENCY_OVERFLOW) { in unescape()
175 } else if (tag.type < 0) { in unescape()
177 position + length, provider.getSymbol(tag.type), getFieldForType(tag.type), status); in unescape()
179 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape()
188 AffixTag tag; in unescapedCodePointCount() local
208 AffixTag tag; containsType() local
223 AffixTag tag; hasCurrencySymbols() local
240 AffixTag tag; replaceType() local
256 AffixTag tag; containsOnlySymbolsAndIgnorables() local
272 AffixTag tag; iterateWithConsumer() local
281 nextToken(AffixTag tag, const UnicodeString &patternString, UErrorCode &status) nextToken() argument
425 hasNext(const AffixTag &tag, const UnicodeString &string) hasNext() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_affixutils.cpp162 AffixTag tag; in unescape() local
163 while (hasNext(tag, affixPattern)) { in unescape()
164 tag = nextToken(tag, affixPattern, status); in unescape()
166 if (tag.type == TYPE_CURRENCY_OVERFLOW) { in unescape()
173 } else if (tag.type < 0) { in unescape()
175 position + length, provider.getSymbol(tag.type), getFieldForType(tag.type), status); in unescape()
177 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape()
186 AffixTag tag; in unescapedCodePointCount() local
206 AffixTag tag; containsType() local
221 AffixTag tag; hasCurrencySymbols() local
238 AffixTag tag; replaceType() local
254 AffixTag tag; containsOnlySymbolsAndIgnorables() local
270 AffixTag tag; iterateWithConsumer() local
279 nextToken(AffixTag tag, const UnicodeString &patternString, UErrorCode &status) nextToken() argument
421 hasNext(const AffixTag &tag, const UnicodeString &string) hasNext() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dder_writer.c16 static int int_start_context(WPACKET *pkt, int tag) in int_start_context() argument
18 if (tag < 0) in int_start_context()
20 if (!ossl_assert(tag <= 30)) in int_start_context()
25 static int int_end_context(WPACKET *pkt, int tag) in int_end_context() argument
32 * anything was written, and only write our tag if it has. in int_end_context()
37 if (tag < 0) in int_end_context()
39 if (!ossl_assert(tag <= 30)) in int_end_context()
43 tag |= DER_F_CONSTRUCTED | DER_C_CONTEXT; in int_end_context()
48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); in int_end_context()
51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, in ossl_DER_w_precompiled() argument
60 ossl_DER_w_boolean(WPACKET *pkt, int tag, int b) ossl_DER_w_boolean() argument
70 ossl_DER_w_octet_string(WPACKET *pkt, int tag, const unsigned char *data, size_t data_n) ossl_DER_w_octet_string() argument
81 ossl_DER_w_octet_string_uint32(WPACKET *pkt, int tag, uint32_t value) ossl_DER_w_octet_string_uint32() argument
93 int_der_w_integer(WPACKET *pkt, int tag, int (*put_bytes)(WPACKET *pkt, const void *v, unsigned int *top_byte), const void *v) int_der_w_integer() argument
128 ossl_DER_w_uint32(WPACKET *pkt, int tag, uint32_t v) ossl_DER_w_uint32() argument
151 ossl_DER_w_bn(WPACKET *pkt, int tag, const BIGNUM *v) ossl_DER_w_bn() argument
161 ossl_DER_w_null(WPACKET *pkt, int tag) ossl_DER_w_null() argument
171 ossl_DER_w_begin_sequence(WPACKET *pkt, int tag) ossl_DER_w_begin_sequence() argument
177 ossl_DER_w_end_sequence(WPACKET *pkt, int tag) ossl_DER_w_end_sequence() argument
[all...]
/third_party/openssl/crypto/
H A Dder_writer.c16 static int int_start_context(WPACKET *pkt, int tag) in int_start_context() argument
18 if (tag < 0) in int_start_context()
20 if (!ossl_assert(tag <= 30)) in int_start_context()
25 static int int_end_context(WPACKET *pkt, int tag) in int_end_context() argument
32 * anything was written, and only write our tag if it has. in int_end_context()
37 if (tag < 0) in int_end_context()
39 if (!ossl_assert(tag <= 30)) in int_end_context()
43 tag |= DER_F_CONSTRUCTED | DER_C_CONTEXT; in int_end_context()
48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); in int_end_context()
51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, in ossl_DER_w_precompiled() argument
60 ossl_DER_w_boolean(WPACKET *pkt, int tag, int b) ossl_DER_w_boolean() argument
70 ossl_DER_w_octet_string(WPACKET *pkt, int tag, const unsigned char *data, size_t data_n) ossl_DER_w_octet_string() argument
81 ossl_DER_w_octet_string_uint32(WPACKET *pkt, int tag, uint32_t value) ossl_DER_w_octet_string_uint32() argument
93 int_der_w_integer(WPACKET *pkt, int tag, int (*put_bytes)(WPACKET *pkt, const void *v, unsigned int *top_byte), const void *v) int_der_w_integer() argument
128 ossl_DER_w_uint32(WPACKET *pkt, int tag, uint32_t v) ossl_DER_w_uint32() argument
151 ossl_DER_w_bn(WPACKET *pkt, int tag, const BIGNUM *v) ossl_DER_w_bn() argument
161 ossl_DER_w_null(WPACKET *pkt, int tag) ossl_DER_w_null() argument
171 ossl_DER_w_begin_sequence(WPACKET *pkt, int tag) ossl_DER_w_begin_sequence() argument
177 ossl_DER_w_end_sequence(WPACKET *pkt, int tag) ossl_DER_w_end_sequence() argument
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DFieldCodec.cs50 /// Retrieves a codec suitable for a string field with the given tag.
52 /// <param name="tag">The tag.</param>
53 /// <returns>A codec for the given tag.</returns>
54 public static FieldCodec<string> ForString(uint tag) in ForString() argument
56 return FieldCodec.ForString(tag, ""); in ForString()
60 /// Retrieves a codec suitable for a bytes field with the given tag.
62 /// <param name="tag">The tag.</param>
63 /// <returns>A codec for the given tag
64 ForBytes(uint tag) ForBytes() argument
74 ForBool(uint tag) ForBool() argument
84 ForInt32(uint tag) ForInt32() argument
94 ForSInt32(uint tag) ForSInt32() argument
104 ForFixed32(uint tag) ForFixed32() argument
114 ForSFixed32(uint tag) ForSFixed32() argument
124 ForUInt32(uint tag) ForUInt32() argument
134 ForInt64(uint tag) ForInt64() argument
144 ForSInt64(uint tag) ForSInt64() argument
154 ForFixed64(uint tag) ForFixed64() argument
164 ForSFixed64(uint tag) ForSFixed64() argument
174 ForUInt64(uint tag) ForUInt64() argument
184 ForFloat(uint tag) ForFloat() argument
194 ForDouble(uint tag) ForDouble() argument
209 ForEnum(uint tag, Func<T, int> toInt32, Func<int, T> fromInt32) ForEnum() argument
220 ForString(uint tag, string defaultValue) ForString() argument
231 ForBytes(uint tag, ByteString defaultValue) ForBytes() argument
242 ForBool(uint tag, bool defaultValue) ForBool() argument
253 ForInt32(uint tag, int defaultValue) ForInt32() argument
264 ForSInt32(uint tag, int defaultValue) ForSInt32() argument
275 ForFixed32(uint tag, uint defaultValue) ForFixed32() argument
286 ForSFixed32(uint tag, int defaultValue) ForSFixed32() argument
297 ForUInt32(uint tag, uint defaultValue) ForUInt32() argument
308 ForInt64(uint tag, long defaultValue) ForInt64() argument
319 ForSInt64(uint tag, long defaultValue) ForSInt64() argument
330 ForFixed64(uint tag, ulong defaultValue) ForFixed64() argument
341 ForSFixed64(uint tag, long defaultValue) ForSFixed64() argument
352 ForUInt64(uint tag, ulong defaultValue) ForUInt64() argument
363 ForFloat(uint tag, float defaultValue) ForFloat() argument
374 ForDouble(uint tag, double defaultValue) ForDouble() argument
390 ForEnum(uint tag, Func<T, int> toInt32, Func<int, T> fromInt32, T defaultValue) ForEnum() argument
439 message => CodedOutputStream.ComputeMessageSize(message), tag); global() field in Google.Protobuf.FieldCodec
[all...]
/third_party/libexif/libexif/huawei/
H A Dmnote-huawei-tag.c20 #include "mnote-huawei-tag.h"
25 MnoteHuaweiTag tag; member
88 #define GET_TAG_INFO(tb, tb_size, tag, idx, ret) do { \
90 if (tb[i].tag == tag) {ret = tb[i].idx; return ret;}\
98 const MnoteHuaweiTable* get_tag_table(MnoteHuaweiTag tag, int* size) in get_tag_table() argument
100 if ((tag >> HUAWEI_TABLE) & 1) { in get_tag_table()
105 if ((tag >> HUAWEI_FACE_TABLE) & 1) { in get_tag_table()
114 MnoteHuaweiTag get_tag_owner_tag(MnoteHuaweiTag tag) in get_tag_owner_tag() argument
118 if (((tag >> HUAWEI_TABL in get_tag_owner_tag()
133 is_ifd_tag(MnoteHuaweiTag tag) is_ifd_tag() argument
176 mnote_huawei_tag_get_name(MnoteHuaweiTag tag) mnote_huawei_tag_get_name() argument
186 mnote_huawei_tag_get_title(MnoteHuaweiTag tag) mnote_huawei_tag_get_title() argument
196 mnote_huawei_tag_get_description(MnoteHuaweiTag tag) mnote_huawei_tag_get_description() argument
206 mnote_huawei_tag_type(MnoteHuaweiTag tag) mnote_huawei_tag_type() argument
[all...]
/third_party/skia/third_party/externals/opengl-registry/xml/
H A Dreadme.tex20 \def\tag#1{{\tt <#1>\index{<#1>}}}
125 The format of an XML registry is a top level \tag{registry} tag
126 containing \tag{types}, \tag{enums}, \tag{commands}, \tag{feature}, and
127 \tag{extension} tags describing the different elements of an API, as
161 \section{Registry Root (\tag{registry} tag)}
[all...]
/third_party/python/Lib/xml/etree/
H A DElementPath.py78 ttype, tag = token
79 if tag and tag[0] != "{":
80 if ":" in tag:
81 prefix, uri = tag.split(":", 1)
89 yield ttype, "{%s}%s" % (default_namespace, tag)
108 def _is_wildcard_tag(tag):
109 return tag[:3] == '{*}' or tag[-2:] == '}*'
112 def _prepare_tag(tag)
[all...]
/third_party/ffmpeg/libavformat/
H A Dvorbiscomment.c48 AVDictionaryEntry *tag = NULL; in ff_vorbiscomment_length() local
50 while ((tag = av_dict_get(chapters[i]->metadata, "", tag, AV_DICT_IGNORE_SUFFIX))) { in ff_vorbiscomment_length()
51 int64_t len1 = !strcmp(tag->key, "title") ? 4 : strlen(tag->key); in ff_vorbiscomment_length()
52 len += 4 + 10 + len1 + 1 + strlen(tag->value); in ff_vorbiscomment_length()
57 AVDictionaryEntry *tag = NULL; in ff_vorbiscomment_length() local
58 while ((tag = av_dict_get(m, "", tag, AV_DICT_IGNORE_SUFFIX))) { in ff_vorbiscomment_length()
59 len += 4 +strlen(tag in ff_vorbiscomment_length()
80 AVDictionaryEntry *tag = NULL; ff_vorbiscomment_write() local
[all...]
/third_party/littlefs/scripts/
H A Dreadmdir.py34 self.tag = args[0]
51 self.tag = (type << 20) | (id << 10) | size
57 return not bool(self.tag & 0x80000000)
61 return not bool(self.tag & 0x40000000)
65 return bool(self.tag & 0x20000000)
69 return not bool(self.tag & 0x10000000)
73 return (self.tag & 0x7ff00000) >> 20
77 return (self.tag & 0x70000000) >> 20
81 return (self.tag & 0x7ff00000) >> 20
85 return (self.tag
[all...]
/third_party/elfutils/libebl/
H A Debldynamictagname.c1 /* Return dynamic tag name.
41 ebl_dynamic_tag_name (Ebl *ebl, int64_t tag, char *buf, size_t len) in ebl_dynamic_tag_name() argument
43 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL; in ebl_dynamic_tag_name()
47 if (tag >= 0 && tag < DT_NUM) in ebl_dynamic_tag_name()
61 res = stdtags[tag]; in ebl_dynamic_tag_name()
63 else if (tag == DT_VERSYM) in ebl_dynamic_tag_name()
65 else if (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT) in ebl_dynamic_tag_name()
74 res = valrntags[tag in ebl_dynamic_tag_name()
[all...]
H A Debldynamictagcheck.c1 /* Check dynamic tag.
39 ebl_dynamic_tag_check (Ebl *ebl, int64_t tag) in ebl_dynamic_tag_check() argument
41 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false; in ebl_dynamic_tag_check()
44 && ((tag >= 0 && tag < DT_NUM) in ebl_dynamic_tag_check()
45 || (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT) in ebl_dynamic_tag_check()
46 || (tag >= DT_GNU_HASH && tag <= DT_SYMINFO) in ebl_dynamic_tag_check()
47 || tag in ebl_dynamic_tag_check()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DAffixUtils.java40 * long tag = 0L;
41 * while (AffixPatternUtils.hasNext(tag, patternString)) {
42 * tag = AffixPatternUtils.nextToken(tag, patternString);
43 * int typeOrCp = AffixPatternUtils.getTypeOrCp(tag);
322 long tag = 0L; in unescape()
323 while (hasNext(tag, affixPattern)) { in unescape()
324 tag = nextToken(tag, affixPattern); in unescape()
325 int typeOrCp = getTypeOrCp(tag); in unescape()
492 nextToken(long tag, CharSequence patternString) nextToken() argument
646 hasNext(long tag, CharSequence string) hasNext() argument
672 getTypeOrCp(long tag) getTypeOrCp() argument
699 getOffset(long tag) getOffset() argument
703 getType(long tag) getType() argument
707 getState(long tag) getState() argument
711 getCodePoint(long tag) getCodePoint() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DAffixUtils.java41 * long tag = 0L;
42 * while (AffixPatternUtils.hasNext(tag, patternString)) {
43 * tag = AffixPatternUtils.nextToken(tag, patternString);
44 * int typeOrCp = AffixPatternUtils.getTypeOrCp(tag);
325 long tag = 0L; in unescape()
326 while (hasNext(tag, affixPattern)) { in unescape()
327 tag = nextToken(tag, affixPattern); in unescape()
328 int typeOrCp = getTypeOrCp(tag); in unescape()
495 nextToken(long tag, CharSequence patternString) nextToken() argument
647 hasNext(long tag, CharSequence string) hasNext() argument
673 getTypeOrCp(long tag) getTypeOrCp() argument
700 getOffset(long tag) getOffset() argument
704 getType(long tag) getType() argument
708 getState(long tag) getState() argument
712 getCodePoint(long tag) getCodePoint() argument
[all...]
/third_party/openGLES/xml/
H A Dreadme.tex20 \def\tag#1{{\tt <#1>\index{<#1>}}}
128 The format of an XML registry is a top level \tag{registry} tag
129 containing \tag{types}, \tag{enums}, \tag{commands}, \tag{feature}, and
130 \tag{extension} tags describing the different elements of an API, as
164 \section{Registry Root (\tag{registry} tag)}
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dasn1.h52 unsigned int tag, length; member
79 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag,
86 struct wpabuf * asn1_encaps(struct wpabuf *buf, u8 class, u8 tag);
91 hdr->tag == ASN1_TAG_OID; in asn1_is_oid()
97 hdr->tag == ASN1_TAG_BOOLEAN; in asn1_is_boolean()
103 hdr->tag == ASN1_TAG_INTEGER; in asn1_is_integer()
109 hdr->tag == ASN1_TAG_ENUMERATED; in asn1_is_enumerated()
115 hdr->tag == ASN1_TAG_SEQUENCE; in asn1_is_sequence()
121 hdr->tag == ASN1_TAG_SET; in asn1_is_set()
127 hdr->tag in asn1_is_octetstring()
184 asn1_is_cs_tag(const struct asn1_hdr *hdr, unsigned int tag) asn1_is_cs_tag() argument
[all...]
/third_party/mesa3d/include/android_stub/log/
H A Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
84 #define android_printLog(prio, tag, ...) \
85 __android_log_print(prio, tag, __VA_ARGS__)
87 #define android_vprintLog(prio, cond, tag, ...) \
88 __android_log_vprint(prio, tag, __VA_ARGS__)
94 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
101 #define LOG_PRI_VA(priority, tag, fmt, args) \
102 android_vprintLog(priority, NULL, tag, fm
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/
H A DcheckLinks.py73 # See if a tag value exists in the specified dictionary and
75 def checkTag(tag, value, dict, dictName, tagName):
78 tag + ': .', 'Try using the', tagName + ': tag.')
80 # Report an error due to an asciidoc tag which does not match
82 def foundError(errType, tag, value, fatal):
84 error('no such', errType, tag + ':' + value)
86 # prefixes or the wrong tag.
88 # Look in all the dictionaries in vkapi.py to see if the tag
90 checkTag(tag, valu
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
H A DHeader.java27 * the tag - the name of the table that is referred to by this header. There can
28 * only be one table with each tag in the font and it doesn't matter what the
35 private final int tag; field in Header
53 return h1.tag - h2.tag;
62 * @param tag
67 public Header(int tag, long checksum, int offset, int length) { in Header() argument
68 this.tag = tag; in Header()
82 * @param tag
85 Header(int tag, int length) Header() argument
102 Header(int tag) Header() argument
117 public int tag() { tag() method in Header
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmicrodvddec.c58 static void microdvd_set_tag(struct microdvd_tag *tags, struct microdvd_tag tag) in microdvd_set_tag() argument
60 int tag_index = indexof(MICRODVD_TAGS, tag.key); in microdvd_set_tag()
64 memcpy(&tags[tag_index], &tag, sizeof(tag)); in microdvd_set_tag()
75 struct microdvd_tag tag = tags[indexof(MICRODVD_TAGS, 'y')]; in check_for_italic_slash_marker() local
76 tag.key = 'y'; in check_for_italic_slash_marker()
77 tag.data1 |= 1 << 0 /* 'i' position in MICRODVD_STYLES */; in check_for_italic_slash_marker()
78 microdvd_set_tag(tags, tag); in check_for_italic_slash_marker()
91 struct microdvd_tag tag = {0}; in microdvd_load_tags() local
101 tag in microdvd_load_tags()
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-subset.cc95 _repack (hb_tag_t tag, const hb_serialize_context_t& c) in _repack() argument
97 if (tag != HB_OT_TAG_GPOS in _repack()
98 && tag != HB_OT_TAG_GSUB) in _repack()
113 hb_resolve_overflows (c.object_graph (), tag, &repacked); in _repack()
163 hb_tag_t tag = TableType::tableTag; in _subset() local
167 "OT::%c%c%c%c::subset sanitize failed on source table.", HB_UNTAG (tag)); in _subset()
177 "OT::%c%c%c%c initial estimated table size: %u bytes.", HB_UNTAG (tag), buf_size); in _subset()
180 DEBUG_MSG (SUBSET, nullptr, "OT::%c%c%c%c failed to allocate %u bytes.", HB_UNTAG (tag), buf_size); in _subset()
188 hb_subset_context_t c (source_blob, plan, &serializer, tag); in _subset()
195 DEBUG_MSG (SUBSET, nullptr, "OT::%c%c%c%c::subset FAILED!", HB_UNTAG (tag)); in _subset()
222 _is_table_present(hb_face_t *source, hb_tag_t tag) _is_table_present() argument
237 _should_drop_table(hb_subset_plan_t *plan, hb_tag_t tag) _should_drop_table() argument
270 _passthrough(hb_subset_plan_t *plan, hb_tag_t tag) _passthrough() argument
279 _subset_table(hb_subset_plan_t *plan, hb_tag_t tag) _subset_table() argument
364 hb_tag_t tag = table_tags[i]; hb_subset_or_fail() local
[all...]

Completed in 13 milliseconds

12345678910>>...84