Home
last modified time | relevance | path

Searched refs:tagname (Results 1 - 25 of 30) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
H A Dhtmlsubtitles.c207 const char *tagname = buffer; in ff_htmlmarkup_to_ass() local
208 while (*tagname == ' ') { in ff_htmlmarkup_to_ass()
210 tagname++; in ff_htmlmarkup_to_ass()
212 if ((param = strchr(tagname, ' '))) in ff_htmlmarkup_to_ass()
220 for (i = 0; tagname[i]; i++) { in ff_htmlmarkup_to_ass()
221 if (!LIKELY_A_TAG_CHAR(tagname[i])) { in ff_htmlmarkup_to_ass()
227 if (!av_strcasecmp(tagname, "font")) { in ff_htmlmarkup_to_ass()
284 } else if (tagname[0] && !tagname[1] && strchr("bisu", av_tolower(tagname[ in ff_htmlmarkup_to_ass()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dupnp_xml.c194 const char *tag, *tagname, *end; in xml_get_first_item() local
203 if (xml_next_tag(doc, &tag, &tagname, &end)) in xml_get_first_item()
206 if (!os_strncasecmp(tagname, match, match_len) && in xml_get_first_item()
208 (tagname[match_len] == '>' || in xml_get_first_item()
209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
H A Dwps_er.c501 const char *tag, *tagname, *end; in wps_er_find_wfadevice() local
508 if (xml_next_tag(data, &tag, &tagname, &end)) in wps_er_find_wfadevice()
511 if (!os_strncasecmp(tagname, "device", 6) && in wps_er_find_wfadevice()
513 (tagname[6] == '>' || !isgraph(tagname[6]))) { in wps_er_find_wfadevice()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dupnp_xml.c194 const char *tag, *tagname, *end; in xml_get_first_item() local
203 if (xml_next_tag(doc, &tag, &tagname, &end)) in xml_get_first_item()
206 if (!os_strncasecmp(tagname, match, match_len) && in xml_get_first_item()
208 (tagname[match_len] == '>' || in xml_get_first_item()
209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
H A Dwps_er.c501 const char *tag, *tagname, *end; in wps_er_find_wfadevice() local
508 if (xml_next_tag(data, &tag, &tagname, &end)) in wps_er_find_wfadevice()
511 if (!os_strncasecmp(tagname, "device", 6) && in wps_er_find_wfadevice()
513 (tagname[6] == '>' || !isgraph(tagname[6]))) { in wps_er_find_wfadevice()
/third_party/ltp/pan/
H A Dreporter.c184 char tagname[KEYSIZE]; /* used when creating name (see above) */ in scanner_test_end() local
199 sprintf(tagname, "no_tag_%d", notag++); in scanner_test_end()
200 fprintf(stderr, "No TAG key! Using %s\n", tagname); in scanner_test_end()
201 sym_put(keys, "tag", strdup(tagname), 0); in scanner_test_end()
202 tag = strdup(tagname); in scanner_test_end()
/third_party/python/Modules/
H A Dmmapmodule.c112 char * tagname; member
157 if (m_obj->tagname) in mmap_object_dealloc()
158 PyMem_Free(m_obj->tagname); in mmap_object_dealloc()
536 if (self->tagname) { in mmap_resize_method()
538 self->tagname); in mmap_resize_method()
565 /* FIXME: call CreateFileMappingW with wchar_t tagname */ in mmap_resize_method()
572 self->tagname); in mmap_resize_method()
844 if (self->tagname) in mmap__sizeof__method()
845 res += strlen(self->tagname) + 1; in mmap__sizeof__method()
1147 "Windows: mmap(fileno, length[, tagname[, acces
1396 const char *tagname = ""; new_mmap_object() local
[all...]
/third_party/protobuf/
H A Dupdate_version.py42 def Find(elem, tagname):
44 if child.nodeName == tagname:
49 def FindAndClone(elem, tagname):
50 return Find(elem, tagname).cloneNode(True)
264 def CreateNode(tagname, indent, children):
265 elem = document.createElement(tagname)
/third_party/python/Lib/test/
H A Dtest_mmap.py629 m1 = mmap.mmap(-1, len(data1), tagname=tagname1)
631 m2 = mmap.mmap(-1, len(data2), tagname=tagname1)
639 m1 = mmap.mmap(-1, len(data1), tagname=tagname1)
641 m2 = mmap.mmap(-1, len(data2), tagname=tagname2)
652 tagname = random_tagname()
653 m2 = mmap.mmap(-1, 100, tagname=tagname)
655 sys.getsizeof(m1) + len(tagname) + 1)
660 tagname = random_tagname()
661 m = mmap.mmap(-1, 1000, tagname
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Da_strex.c347 const char *tagname; in do_print_ex() local
348 tagname = ASN1_tag2str(type); in do_print_ex()
349 outlen += strlen(tagname); in do_print_ex()
350 if (!io_ch(arg, tagname, outlen) || !io_ch(arg, ":", 1)) in do_print_ex()
/third_party/openssl/crypto/asn1/
H A Da_strex.c348 const char *tagname; in do_print_ex() local
350 tagname = ASN1_tag2str(type); in do_print_ex()
351 /* We can directly cast here as tagname will never be too large. */ in do_print_ex()
352 outlen += (int)strlen(tagname); in do_print_ex()
353 if (!io_ch(arg, tagname, outlen) || !io_ch(arg, ":", 1)) in do_print_ex()
/third_party/python/Lib/tkinter/
H A Dttk.py1442 def tag_bind(self, tagname, sequence=None, callback=None):
1443 """Bind a callback for the given event sequence to the tag tagname.
1446 self._bind((self._w, "tag", "bind", tagname), sequence, callback, add=0)
1449 def tag_configure(self, tagname, option=None, **kw):
1450 """Query or modify the options for the specified tagname.
1452 If kw is not given, returns a dict of the option settings for tagname.
1454 specified tagname. Otherwise, sets the options to the corresponding
1455 values for the given tagname."""
1459 tagname)
1462 def tag_has(self, tagname, ite
[all...]
/third_party/python/Lib/multiprocessing/
H A Dheap.py42 buf = mmap.mmap(-1, size, tagname=name)
60 self.buffer = mmap.mmap(-1, self.size, tagname=self.name)
H A Dshared_memory.py151 self._mmap = mmap.mmap(-1, size, tagname=temp_name)
180 self._mmap = mmap.mmap(-1, size, tagname=name)
/third_party/python/Lib/html/
H A Dparser.py398 tagname = namematch.group(1).lower()
404 self.handle_endtag(tagname)
/third_party/python/Lib/xml/dom/
H A Dpulldom.py75 # When the tagname is not prefixed, it just appears as
164 def buildDocument(self, uri, tagname):
165 # Can't do that in startDocument, since we need the tagname
167 node = self.documentFactory.createDocument(uri, tagname, None)
/third_party/libabigail/
H A Dltmain.sh891 for tagname in $taglist; do
892 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
917 # func_enable_tag tagname
924 tagname="$1"
926 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
927 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
930 # Validate tagname.
931 case $tagname in
933 func_fatal_error "invalid tag name: $tagname"
[all...]
/third_party/skia/third_party/externals/microhttpd/
H A Dltmain.sh911 for tagname in $taglist; do
912 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
937 # func_enable_tag tagname
944 tagname="$1"
946 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
947 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
950 # Validate tagname.
951 case $tagname in
953 func_fatal_error "invalid tag name: $tagname"
[all...]
/third_party/eudev/
H A Dltmain.sh2192 for tagname in $taglist; do
2193 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2229 tagname=$1
2231 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2232 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2235 # Validate tagname.
2236 case $tagname in
2238 func_fatal_error "invalid tag name: $tagname"
2244 case $tagname i
[all...]
/third_party/curl/
H A Dltmain.sh2373 for tagname in $taglist; do
2374 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2410 tagname=$1
2412 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2413 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2416 # Validate tagname.
2417 case $tagname in
2419 func_fatal_error "invalid tag name: $tagname"
2425 case $tagname i
[all...]
/third_party/lame/
H A Dltmain.sh2145 for tagname in $taglist; do
2146 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2182 tagname=$1
2184 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2185 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2188 # Validate tagname.
2189 case $tagname in
2191 func_fatal_error "invalid tag name: $tagname"
2197 case $tagname i
[all...]
/third_party/node/deps/cares/
H A Dltmain.sh2373 for tagname in $taglist; do
2374 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2410 tagname=$1
2412 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2413 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2416 # Validate tagname.
2417 case $tagname in
2419 func_fatal_error "invalid tag name: $tagname"
2425 case $tagname i
[all...]
/third_party/node/deps/cares/config/
H A Dltmain.sh2373 for tagname in $taglist; do
2374 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2410 tagname=$1
2412 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2413 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2416 # Validate tagname.
2417 case $tagname in
2419 func_fatal_error "invalid tag name: $tagname"
2425 case $tagname i
[all...]
/third_party/libevdev/build-aux/
H A Dltmain.sh2383 for tagname in $taglist; do
2384 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2420 tagname=$1
2422 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2423 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2426 # Validate tagname.
2427 case $tagname in
2429 func_fatal_error "invalid tag name: $tagname"
2435 case $tagname i
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dltmain.sh2145 for tagname in $taglist; do
2146 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
2182 tagname=$1
2184 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
2185 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
2188 # Validate tagname.
2189 case $tagname in
2191 func_fatal_error "invalid tag name: $tagname"
2197 case $tagname i
[all...]

Completed in 41 milliseconds

12