Home
last modified time | relevance | path

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

12345678910>>...89

/external/fonttools/Lib/fontTools/ttLib/
D__init__.py210 for tag in tags:
211 self._writeTable(tag, writer, done)
244 for tag in skipTables:
245 if tag in tables:
246 tables.remove(tag)
269 tag = tables[i]
271 tablePath = fileNameTemplate % tagToIdentifier(tag)
276 writer.simpletag(tagToXML(tag), src=os.path.basename(tablePath))
280 self._tableToXML(tableWriter, tag, progress, quiet)
293 def _tableToXML(self, writer, tag, progress, quiet): argument
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLog.java17 public static void e(String tag, String msg) { in e() argument
18 e(tag, msg, null); in e()
22 public static void e(String tag, String msg, Throwable throwable) { in e() argument
23 addLog(Log.ERROR, tag, msg, throwable); in e()
27 public static void d(String tag, String msg) { in d() argument
28 d(tag, msg, null); in d()
32 public static void d(String tag, String msg, Throwable throwable) { in d() argument
33 addLog(Log.DEBUG, tag, msg, throwable); in d()
37 public static void i(String tag, String msg) { in i() argument
38 i(tag, msg, null); in i()
[all …]
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DElementTypeHelpers.h.tmpl13 {% for tag in tags|sort if not tag.multipleTagNames and not tag.noTypeHelpers %}
14 {% filter enable_conditional(tag.Conditional) %}
15 class {{tag.interface}};
16 void is{{tag.interface}}(const {{tag.interface}}&); // Catch unnecessary runtime check of type know…
17 void is{{tag.interface}}(const {{tag.interface}}*); // Catch unnecessary runtime check of type know…
19 inline bool is{{tag.interface}}(const {{namespace}}Element& element) {
20 {% if tag.runtimeEnabled %}
21 if (!RuntimeEnabledFeatures::{{tag.runtimeEnabled}}Enabled())
24 return element.hasTagName({{namespace}}Names::{{tag|symbol}}Tag);
26 inline bool is{{tag.interface}}(const {{namespace}}Element* element) { return element && is{{tag.in…
[all …]
/external/elfutils/0.153/libebl/
Debldynamictagname.c61 ebl_dynamic_tag_name (ebl, tag, buf, len) in ebl_dynamic_tag_name() argument
63 int64_t tag;
67 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL;
71 if (tag >= 0 && tag < DT_NUM)
84 res = stdtags[tag];
86 else if (tag == DT_VERSYM)
88 else if (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT)
97 res = valrntags[tag - DT_GNU_PRELINKED];
99 else if (tag >= DT_GNU_HASH && tag <= DT_SYMINFO)
108 res = addrrntags[tag - DT_GNU_HASH];
[all …]
Debldynamictagcheck.c60 ebl_dynamic_tag_check (ebl, tag) in ebl_dynamic_tag_check() argument
62 int64_t tag;
64 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false;
67 && ((tag >= 0 && tag < DT_NUM)
68 || (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT)
69 || (tag >= DT_GNU_HASH && tag <= DT_SYMINFO)
70 || tag == DT_VERSYM
71 || (tag >= DT_RELACOUNT && tag <= DT_VERNEEDNUM)
72 || tag == DT_AUXILIARY
73 || tag == DT_FILTER))
/external/chromium_org/third_party/WebKit/Source/build/scripts/
Dmake_element_factory.py73 for tag in tags:
74 tag['has_js_interface'] = self._has_js_interface(tag)
75 tag['js_interface'] = self._js_interface(tag)
76 tag['interface'] = self._interface(tag)
77 interface_counts[tag['interface']] += 1
79 for tag in tags:
80tag['multipleTagNames'] = (interface_counts[tag['interface']] > 1 or tag['interface'] == fallback_…
95 def _interface(self, tag): argument
96 if tag['interfaceName']:
97 return tag['interfaceName']
[all …]
Dmake_element_type_helpers.py17 def _symbol(tag): argument
19 if tag['name'].startswith('-webkit-'):
20 return tag['name'].replace('-', '_')[1:]
21 return name_utilities.cpp_name(tag).replace('-', '_')
68 for tag in tags:
69 tag['interface'] = self._interface(tag)
70 interface_counts[tag['interface']] += 1
72 for tag in tags:
73tag['multipleTagNames'] = (interface_counts[tag['interface']] > 1 or tag['interface'] == self.fall…
79 def _interface(self, tag): argument
[all …]
/external/xmlwriter/src/org/jheer/
DXMLWriter.java159 protected void tag(String tag, String[] names, String[] values, in tag() argument
164 m_out.write(tag); in tag()
178 m_tagStack.add(tag); in tag()
190 public void tag(String tag, String[] names, String[] values, int nattr) throws IOException in tag() method in XMLWriter
192 tag(tag, names, values, nattr, true); in tag()
203 public void start(String tag, String[] names, String[] values, int nattr) throws IOException in start() argument
205 tag(tag, names, values, nattr, false); in start()
231 protected void tag(String tag, String name, String value, boolean close) throws IOException { in tag() argument
234 m_out.write(tag); in tag()
246 m_tagStack.add(tag); in tag()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DDebugLog.java32 public static int v(String tag, String msg) { in v() argument
35 result = Log.v(tag, msg); in v()
40 public static int v(String tag, String msg, Throwable tr) { in v() argument
43 result = Log.v(tag, msg, tr); in v()
48 public static int d(String tag, String msg) { in d() argument
51 result = Log.d(tag, msg); in d()
56 public static int d(String tag, String msg, Throwable tr) { in d() argument
59 result = Log.d(tag, msg, tr); in d()
64 public static int i(String tag, String msg) { in i() argument
67 result = Log.i(tag, msg); in i()
[all …]
/external/chromium_org/ppapi/c/documentation/
Ddoxy_cleanup.py58 for tag in self.soup.findAll('tr'):
59 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
61 tag.string = tag.td.h2.a.next
62 tag.name = 'h2'
63 table_headers.append(tag)
68 for tag in table_headers:
69 print "Header tag: %s is %s" % (tag.name, tag.string.strip())
71 if tag.findPreviousSibling('tr') and tag.parent.name == 'table':
72 print "Splitting Table named %s" % tag.string.strip()
73 table = tag.parent
[all …]
/external/chromium_org/ppapi/cpp/documentation/
Ddoxy_cleanup.py57 for tag in self.soup.findAll('tr'):
58 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
60 tag.string = tag.td.h2.a.next
61 tag.name = 'h2'
62 table_headers.append(tag)
67 for tag in table_headers:
68 print "Header tag: %s is %s" % (tag.name, tag.string.strip())
70 if tag.findPreviousSibling('tr') and tag.parent.name == 'table':
71 print "Splitting Table named %s" % tag.string.strip()
72 table = tag.parent
[all …]
/external/chromium_org/third_party/libaddressinput/src/java/test/android/util/
DLog.java23 public static int v(String tag, String msg) { return 0; } in v() argument
24 public static int v(String tag, String msg, Throwable tr) { return 0; } in v() argument
25 public static int d(String tag, String msg) { return 0; } in d() argument
26 public static int d(String tag, String msg, Throwable tr) { return 0; } in d() argument
27 public static int i(String tag, String msg) { return 0; } in i() argument
28 public static int i(String tag, String msg, Throwable tr) { return 0; } in i() argument
29 public static int w(String tag, String msg) { return 0; } in w() argument
30 public static int w(String tag, String msg, Throwable tr) { return 0; } in w() argument
31 public static boolean isLoggable(String tag, int level) { return false; } in isLoggable() argument
32 public static int w(String tag, Throwable tr) { return 0; } in w() argument
[all …]
/external/chromium_org/net/quic/crypto/
Dcrypto_handshake_message.h40 template<class T> void SetValue(QuicTag tag, const T& v) { in SetValue() argument
41 tag_value_map_[tag] = in SetValue()
47 template<class T> void SetVector(QuicTag tag, const std::vector<T>& v) { in SetVector() argument
49 tag_value_map_[tag] = std::string(); in SetVector()
51 tag_value_map_[tag] = std::string(reinterpret_cast<const char*>(&v[0]), in SetVector()
57 QuicTag tag() const { return tag_; } in tag() function
59 void set_tag(QuicTag tag) { tag_ = tag; } in set_tag() argument
65 void SetTaglist(QuicTag tag, ...);
67 void SetStringPiece(QuicTag tag, base::StringPiece value);
70 void Erase(QuicTag tag);
[all …]
/external/chromium_org/third_party/markdown/
Dserializers.py170 tag = elem.tag
172 if tag is Comment:
174 elif tag is ProcessingInstruction:
177 tag = qnames[tag]
178 if tag is None:
184 write("<" + tag)
207 if format == "xhtml" and tag in HTML_EMPTY:
211 tag = tag.lower()
213 if tag == "script" or tag == "style":
219 if tag not in HTML_EMPTY:
[all …]
/external/markdown/markdown/
Dhtml4.py129 tag = elem.tag
131 if tag is Comment:
133 elif tag is ProcessingInstruction:
136 tag = qnames[tag]
137 if tag is None:
143 write("<" + tag)
167 tag = tag.lower()
169 if tag == "script" or tag == "style":
175 if tag not in HTML_EMPTY:
176 write("</" + tag + ">")
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DGeneralName.java60 private int tag; field in GeneralName
70 this.tag = 4; in GeneralName()
77 this.tag = 4; in GeneralName()
108 int tag, in GeneralName() argument
112 this.tag = tag; in GeneralName()
139 int tag, in GeneralName() argument
142 this.tag = tag; in GeneralName()
144 if (tag == rfc822Name || tag == dNSName || tag == uniformResourceIdentifier) in GeneralName()
148 else if (tag == registeredID) in GeneralName()
152 else if (tag == directoryName) in GeneralName()
[all …]
/external/chromium_org/native_client_sdk/src/doc/doxygen/
Ddoxy_cleanup.py102 for tag in self.soup.findAll('tr'):
103 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
105 tag.string = tag.td.h2.a.next
106 tag.name = 'h2'
107 table_headers.append(tag)
112 for tag in table_headers:
113 Trace("Header tag: %s is %s" % (tag.name, tag.string.strip()))
115 if tag.findPreviousSibling('tr') and tag.parent.name == 'table':
116 Trace("Splitting Table named %s" % tag.string.strip())
117 table = tag.parent
[all …]
/external/srec/portable/include/
Dpmemory.h64 #define MALLOC(n, tag) malloc(n) argument
65 #define CALLOC(m, n, tag) calloc(m, n) argument
66 #define CALLOC_CLR(m, n, tag) calloc(m, n) argument
69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag)) argument
70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag)) argument
101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__)) argument
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes)) argument
113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) argument
114 #define CALLOC_CLR(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) argument
119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize)) argument
[all …]
/external/chromium_org/media/base/
Daudio_video_metadata_extractor.cc24 bool ExtractString(AVDictionaryEntry* tag, const char* expected_key, in ExtractString() argument
26 if (!LowerCaseEqualsASCII(std::string(tag->key), expected_key)) in ExtractString()
30 *destination = tag->value; in ExtractString()
36 bool ExtractInt(AVDictionaryEntry* tag, const char* expected_key, in ExtractInt() argument
38 if (!LowerCaseEqualsASCII(std::string(tag->key), expected_key)) in ExtractInt()
42 if (*destination < 0 && base::StringToInt(tag->value, &temporary) && in ExtractInt()
239 for (AVDictionaryEntry* tag = in ExtractDictionary() local
241 tag; tag = av_dict_get(metadata, "", tag, AV_DICT_IGNORE_SUFFIX)) { in ExtractDictionary()
242 if (raw_tags->find(tag->key) == raw_tags->end()) in ExtractDictionary()
243 (*raw_tags)[tag->key] = tag->value; in ExtractDictionary()
[all …]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
Dasn1_par.c64 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
68 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, in asn1_print_info() argument
84 BIO_snprintf(str,sizeof str,"priv [ %d ] ",tag); in asn1_print_info()
86 BIO_snprintf(str,sizeof str,"cont [ %d ]",tag); in asn1_print_info()
88 BIO_snprintf(str,sizeof str,"appl [ %d ]",tag); in asn1_print_info()
89 else if (tag > 30) in asn1_print_info()
90 BIO_snprintf(str,sizeof str,"<ASN1 %d>",tag); in asn1_print_info()
92 p = ASN1_tag2str(tag); in asn1_print_info()
116 int tag,xclass,ret=0; in asn1_parse2() local
134 j=ASN1_get_object(&p,&len,&tag,&xclass,length); in asn1_parse2()
[all …]
/external/openssl/crypto/asn1/
Dasn1_par.c65 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, in asn1_print_info() argument
85 BIO_snprintf(str,sizeof str,"priv [ %d ] ",tag); in asn1_print_info()
87 BIO_snprintf(str,sizeof str,"cont [ %d ]",tag); in asn1_print_info()
89 BIO_snprintf(str,sizeof str,"appl [ %d ]",tag); in asn1_print_info()
90 else if (tag > 30) in asn1_print_info()
91 BIO_snprintf(str,sizeof str,"<ASN1 %d>",tag); in asn1_print_info()
93 p = ASN1_tag2str(tag); in asn1_print_info()
117 int tag,xclass,ret=0; in asn1_parse2() local
135 j=ASN1_get_object(&p,&len,&tag,&xclass,length); in asn1_parse2()
[all …]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
Dexif_parser.js181 var tag = br.readScalar(2);
182 if (tag != EXIF_TAG_TIFF) {
183 this.log('Invalid TIFF tag: ' + tag.toString(16));
283 var tag = tags[tagId] = {id: tagId};
284 tag.format = br.readScalar(2);
285 tag.componentCount = br.readScalar(4);
286 this.readTagValue(br, tag);
296 ExifParser.prototype.readTagValue = function(br, tag) { argument
303 self.log('error reading tag 0x' + tag.id.toString(16) + '/' +
304 tag.format + ', size ' + tag.componentCount + '*' + size + ' ' +
[all …]
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
Dber.c41 unsigned tag; in cbs_find_ber() local
44 if (!CBS_get_any_asn1_element(&in, &contents, &tag, &header_len)) { in cbs_find_ber()
53 if (tag & CBS_ASN1_CONSTRUCTED) { in cbs_find_ber()
68 static char is_primitive_type(unsigned tag) { in is_primitive_type() argument
69 return (tag & 0xc0) == 0 && in is_primitive_type()
70 (tag & 0x1f) != (CBS_ASN1_SEQUENCE & 0x1f) && in is_primitive_type()
71 (tag & 0x1f) != (CBS_ASN1_SET & 0x1f); in is_primitive_type()
95 unsigned tag; in cbs_convert_ber() local
99 if (!CBS_get_any_asn1_element(in, &contents, &tag, &header_len)) { in cbs_convert_ber()
116 const char context_specific = (tag & 0xc0) == 0x80; in cbs_convert_ber()
[all …]
/external/libexif/po/
Dlibexif-12.pot44 #: libexif/olympus/mnote-olympus-tag.c:108
1020 #: libexif/canon/mnote-canon-entry.c:325 libexif/pentax/mnote-pentax-tag.c:44
1048 #: libexif/exif-entry.c:737 libexif/exif-entry.c:779 libexif/exif-tag.c:577
1279 #: libexif/canon/mnote-canon-tag.c:35
1283 #: libexif/canon/mnote-canon-tag.c:36 libexif/canon/mnote-canon-tag.c:92
1284 #: libexif/exif-tag.c:581 libexif/pentax/mnote-pentax-tag.c:88
1288 #: libexif/canon/mnote-canon-tag.c:37
1292 #: libexif/canon/mnote-canon-tag.c:38
1298 #: libexif/canon/mnote-canon-tag.c:39
1302 #: libexif/canon/mnote-canon-tag.c:40 libexif/olympus/mnote-olympus-tag.c:37
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DFrame.java215 private byte tag; field in Frame.Variable
229 tag = JDWPConstants.Tag.NO_TAG; in Variable()
287 tag = JDWPConstants.Tag.ARRAY_TAG; in setSignature()
290 tag = JDWPConstants.Tag.BYTE_TAG; in setSignature()
293 tag = JDWPConstants.Tag.CHAR_TAG; in setSignature()
296 tag = JDWPConstants.Tag.OBJECT_TAG; in setSignature()
299 tag = JDWPConstants.Tag.FLOAT_TAG; in setSignature()
302 tag = JDWPConstants.Tag.DOUBLE_TAG; in setSignature()
305 tag = JDWPConstants.Tag.INT_TAG; in setSignature()
308 tag = JDWPConstants.Tag.LONG_TAG; in setSignature()
[all …]

12345678910>>...89