Searched refs:tag (Results 126 - 150 of 1855) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/samples/layout/
H A DFontTableCache.cpp17 LETag tag; member in struct:FontTableCacheEntry
32 fTableCache[i].tag = 0;
42 fTableCache[i].tag = 0;
60 if (fTableCache[i].tag == tableTag) {
80 fTableCache[i].tag = 0;
87 fTableCache[fTableCacheCurr].tag = tableTag;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBaseDescriptor.java25 abstract aligned(8) expandable(228-1) class BaseDescriptor : bit(8) tag=0 {
40 int tag; field in class:BaseDescriptor
48 return tag;
53 + 1//1 for the tag
65 public final void parse(int tag, ByteBuffer bb) throws IOException { argument
66 this.tag = tag;
94 sb.append("{tag=").append(tag);
/external/oprofile/libutil++/
H A Dxml_output.cpp22 string tag_name(tag_t tag) argument
25 out << xml_tag_name(tag);
30 string open_element(tag_t tag, bool with_attrs) argument
35 open_xml_element(tag, with_attrs, buf, MAX_XML_BUF);
41 string close_element(tag_t tag, bool has_nested) argument
46 close_xml_element(tag, has_nested, buf, MAX_XML_BUF);
/external/valgrind/main/helgrind/tests/
H A Dfilter_xml78 foreach my $tag (keys %ignore_sections) {
79 if ($line =~ $ignore_sections{$tag}) {
80 print "$tag...$ignore_sections{$tag}\n";
86 foreach my $tag (keys %ignore_sections) {
87 if ($line =~ $tag) {
/external/chromium_org/remoting/webapp/
H A Dxmpp_stream_parser.js42 * The <stream> opening tag received at the beginning of the stream.
48 * Closing tag matching |startTag_|.
86 // Check if the newly appended data completes XML tag or a piece of text by
98 // character starts XML tag.
132 var tag = this.extractStringFromBuffer_(i + 1);
133 if (tag == null)
135 if (tag.charAt(0) != '<') {
136 this.processError_('Received \'>\' without \'<\': ' + tag);
139 this.processTag_(tag);
159 * @param {string} tag
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DFrame.java215 private byte tag; field in class:Frame.Variable
229 tag = JDWPConstants.Tag.NO_TAG;
280 * Sets new signature and detects value of a type tag.
287 tag = JDWPConstants.Tag.ARRAY_TAG;
290 tag = JDWPConstants.Tag.BYTE_TAG;
293 tag = JDWPConstants.Tag.CHAR_TAG;
296 tag = JDWPConstants.Tag.OBJECT_TAG;
299 tag = JDWPConstants.Tag.FLOAT_TAG;
302 tag = JDWPConstants.Tag.DOUBLE_TAG;
305 tag
[all...]
/external/e2fsprogs/lib/blkid/
H A Dtag.c2 * tag.c - allocation/initialization/free routines for tag structs
22 blkid_tag tag; local
24 if (!(tag = (blkid_tag) calloc(1, sizeof(struct blkid_struct_tag))))
27 INIT_LIST_HEAD(&tag->bit_tags);
28 INIT_LIST_HEAD(&tag->bit_names);
30 return tag;
34 void blkid_debug_dump_tag(blkid_tag tag) argument
36 if (!tag) {
37 printf(" tag
45 blkid_free_tag(blkid_tag tag) argument
87 blkid_tag tag; local
300 blkid_tag tag; local
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
H A Dauth.c78 * test cases provided in a list test_data of values of key, data, and tag
90 uint8_t tag[SELF_TEST_TAG_BUF_OCTETS]; local
123 /* zeroize tag then compute */
124 octet_string_set_to_zero(tag, test_case->tag_length_octets);
126 test_case->data_length_octets, tag);
138 debug_print(mod_auth, "tag computed: %s",
139 octet_string_hex_string(tag, test_case->tag_length_octets));
140 debug_print(mod_auth, "tag expected: %s",
141 octet_string_hex_string(test_case->tag,
147 if (tag[
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_info.java31 * Returns the tag byte for this CONSTANT type [this data is
34 public abstract byte tag (); method in class:CONSTANT_info
63 byte tag = bytes.readByte ();
65 switch (tag)
103 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + tag + ']');
130 out.writeByte (tag ());
135 switch (constant.tag ())
173 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + constant.tag ()
[all...]
/external/nanopb-c/
H A Dpb.h24 /* Add support for tag numbers > 255 and fields larger than 255 bytes. */
27 /* Add support for tag numbers > 65536 and fields larger than 65536 bytes. */
211 pb_size_t tag; member in struct:_pb_field_t
266 * It should write all the data in one call, including the field tag and
317 uint32_t tag, pb_wire_type_t wire_type);
385 #define PB_REQUIRED_STATIC(tag, st, m, fd, ltype, ptr) \
386 {tag, PB_ATYPE_STATIC | PB_HTYPE_REQUIRED | ltype, \
390 #define PB_OPTIONAL_STATIC(tag, st, m, fd, ltype, ptr) \
391 {tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, \
397 #define PB_REPEATED_STATIC(tag, s
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotificationManager.java27 public void notify(String tag, int id, Notification notification) { argument
28 if (tag != null) {
29 idForTag.put(tag, id);
41 public void cancel(String tag, int id) { argument
42 // I can't make sense of this method signature. I'm guessing that the id is optional and if it's bogus you are supposed to use the tag instead, but that references to both should be gone. PG
43 Integer tagId = idForTag.remove(tag);
65 public Notification getNotification(String tag) { argument
66 Integer id = idForTag.get(tag);
/external/srtp/crypto/hash/
H A Dauth.c78 * test cases provided in an array of values of key, data, and tag
90 uint8_t tag[SELF_TEST_TAG_BUF_OCTETS]; local
123 /* zeroize tag then compute */
124 octet_string_set_to_zero(tag, test_case->tag_length_octets);
126 test_case->data_length_octets, tag);
138 debug_print(mod_auth, "tag computed: %s",
139 octet_string_hex_string(tag, test_case->tag_length_octets));
140 debug_print(mod_auth, "tag expected: %s",
141 octet_string_hex_string(test_case->tag,
147 if (tag[
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-file-private.hh61 Tag tag; /* 4-byte identifier. */ member in struct:OT::TableRecord
81 inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const argument
84 t.set (tag);
88 if (t == tables[i].tag)
97 inline const TableRecord& get_table_by_tag (hb_tag_t tag) const
100 find_table_index (tag, &table_index);
206 inline hb_tag_t get_tag (void) const { return u.tag; }
210 switch (u.tag) {
221 switch (u.tag) {
236 if (unlikely (!u.tag
249 Tag tag; /* 4-byte identifier. */ member in union:OT::OpenTypeFontFile::__anon11832
[all...]
/external/chromium_org/tools/resources/
H A Dlist_unused_grit_header.py39 resource_tag: The resource tag to extract names from.
46 if child.tag == resource_tag:
48 elif child.tag in IF_ELSE_TAGS:
50 elif child.tag == 'part':
55 assert part_root.tag == 'grit-part'
58 raise Exception('unknown tag:', child.tag)
66 def FindNodeWithTag(node, tag):
67 """Look through a node's children for a child node with a given tag.
71 tag
[all...]
/external/chromium_org/tools/usb_gadget/
H A Dhid_descriptors.py18 def _PackItem(tag, typ, value=0, force_length=0):
25 tag: Item tag.
34 return struct.pack('<B', tag << 4 | typ << 2 | 0)
36 return struct.pack('<BB', tag << 4 | typ << 2 | 1, value)
38 return struct.pack('<BH', tag << 4 | typ << 2 | 2, value)
40 return struct.pack('<BI', tag << 4 | typ << 2 | 3, value)
45 def _DefineItem(name, tag, typ):
50 tag: Item tag
[all...]
/external/harfbuzz_ng/src/
H A Dhb-open-file-private.hh61 Tag tag; /* 4-byte identifier. */ member in struct:OT::TableRecord
81 inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const argument
84 t.set (tag);
88 if (t == tables[i].tag)
97 inline const TableRecord& get_table_by_tag (hb_tag_t tag) const
100 find_table_index (tag, &table_index);
206 inline hb_tag_t get_tag (void) const { return u.tag; }
210 switch (u.tag) {
221 switch (u.tag) {
236 if (unlikely (!u.tag
249 Tag tag; /* 4-byte identifier. */ member in union:OT::OpenTypeFontFile::__anon21634
[all...]
/external/chromium_org/media/formats/mp4/
H A Des_descriptor.cc47 uint8 tag; local
54 RCHECK(reader.ReadBits(8, &tag));
55 RCHECK(tag == kESDescrTag);
84 uint8 tag; local
88 RCHECK(reader->ReadBits(8, &tag));
89 RCHECK(tag == kDecoderConfigDescrTag);
101 uint8 tag; local
104 RCHECK(reader->ReadBits(8, &tag));
105 RCHECK(tag == kDecoderSpecificInfoTag);
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_extension.cc88 string tag = SimpleItoa(WireFormat::MakeTag(descriptor)); local
96 // For message typed extensions, tags_params contains a single tag
98 (*variables)["tag_params"] = tag;
103 (*variables)["tag_params"] = tag;
107 // Non-packable: nonPackedTag == tag, packedTag == 0
108 (*variables)["tag_params"] = tag + ", " + tag + ", 0";
110 // Packable and packed: tag == packedTag
114 (*variables)["tag_params"] = tag + ", " + non_packed_tag + ", " + tag;
[all...]
/external/chromium_org/device/hid/
H A Dhid_report_descriptor_item.cc19 uint8_t tag : 4; member in struct:device::__anon8014::Header
29 tag_ = (Tag)(header->tag << 2 | header->type);
43 switch (previous->tag()) {
51 switch (tag()) {
72 bool HidReportDescriptorItem::IsLong() const { return tag() == kTagLong; }
/external/chromium_org/google_apis/gcm/base/
H A Dmcs_message.h23 // A wrapper for MCS protobuffers that encapsulates their tag, size and data
32 // Infers tag from |message|.
34 // |tag| must match |protobuf|'s message type.
35 MCSMessage(uint8 tag, const google::protobuf::MessageLite& protobuf);
36 // |tag| must match |protobuf|'s message type. Takes ownership of |protobuf|.
37 MCSMessage(uint8 tag,
46 uint8 tag() const { return tag_; } function in class:gcm::MCSMessage
60 Core(uint8 tag, const google::protobuf::MessageLite& protobuf);
61 Core(uint8 tag, scoped_ptr<const google::protobuf::MessageLite> protobuf);
/external/chromium_org/net/base/
H A Dhash_value.h42 explicit HashValue(HashValueTag tag) : tag(tag) {} argument
43 HashValue() : tag(HASH_VALUE_SHA1) {}
69 // is supplied (eg: an unknown hash tag), returns "unknown"/<base64>
76 HashValueTag tag; member in class:net::HashValue
/external/libexif/libexif/
H A DAndroid.mk39 exif-tag.c \
43 canon/mnote-canon-tag.c \
45 olympus/mnote-olympus-tag.c \
49 fuji/mnote-fuji-tag.c \
52 pentax/mnote-pentax-tag.c
/external/nanopb-c/examples/using_union_messages/
H A Ddecode.c11 /* This function reads manually the first tag from the stream and finds the
15 * message type. Returns null if the tag is of unknown type or an error occurs.
20 uint32_t tag; local
23 while (pb_decode_tag(stream, &wire_type, &tag, &eof))
28 for (field = UnionMessage_fields; field->tag != 0; field++)
30 if (field->tag == tag && (field->type & PB_LTYPE_SUBMESSAGE))
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DXTagXmlResourceLoader.java19 private String tag; field in class:XTagXmlResourceLoader
32 public XTagXmlResourceLoader( ResourceExtractor resourceExtractor, String tag ) {
34 this.tag = tag;
44 NodeList items = document.getElementsByTagName( tag );
/external/chromium_org/third_party/hwcplus/include/log/
H A Dlog.h67 * This is the local tag used for the following simplified
69 * before using the other macros to change the tag.
430 * The second argument may be NULL or "" to indicate the "global" tag.
433 #define ALOG(priority, tag, ...) \
434 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
441 #define LOG_PRI(priority, tag, ...) \
442 android_printLog(priority, tag, __VA_ARGS__)
449 #define LOG_PRI_VA(priority, tag, fmt, args) \
450 android_vprintLog(priority, NULL, tag, fmt, args)
454 * Conditional given a desired logging priority and tag
[all...]

Completed in 700 milliseconds

1234567891011>>