Searched defs:tag (Results 26 - 50 of 981) sorted by relevance

1234567891011>>

/external/chromium_org/tools/perf/benchmarks/
H A Dmemory.py24 tag = 'reload' variable in class:Reload2012Q3
H A Drepaint.py26 tag = 'gpu_rasterization' variable in class:RepaintGpuRasterizationKeyMobileSites
H A Dstart_with_url.py13 tag = 'cold' variable in class:StartWithUrlCold
23 tag = 'warm' variable in class:StartWithUrlWarm
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java29 public static final String tag = "Deprecated"; field in class:DeprecatedAttribute
43 super(cp, tag, new byte[0]);
H A DSyntheticAttribute.java29 public static final String tag = "Synthetic"; field in class:SyntheticAttribute
43 super(cp, tag, new byte[0]);
/external/libexif/libexif/canon/
H A Dmnote-canon-entry.h26 #include <libexif/canon/mnote-canon-tag.h>
31 MnoteCanonTag tag; member in struct:_MnoteCanonEntry
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.h25 #include <libexif/fuji/mnote-fuji-tag.h>
33 MnoteFujiTag tag; member in struct:_MnoteFujiEntry
H A Dmnote-fuji-tag.c1 /* mnote-fuji-tag.c
26 #include "mnote-fuji-tag.h"
30 MnoteFujiTag tag; member in struct:__anon23673
77 if (table[i].tag == t) return (table[i].name);
88 if (table[i].tag == t) return (_(table[i].title));
98 if (table[i].tag == t) {
/external/libexif/libexif/olympus/
H A Dmnote-olympus-entry.h26 #include <libexif/olympus/mnote-olympus-tag.h>
31 MnoteOlympusTag tag; member in struct:_MnoteOlympusEntry
H A Dmnote-olympus-tag.c1 /* mnote-olympus-tag.c:
22 #include "mnote-olympus-tag.h"
30 MnoteOlympusTag tag; member in struct:__anon23676
202 if (table[i].tag == t) return (table[i].name);
213 if (table[i].tag == t) return (_(table[i].title));
223 if (table[i].tag == t) {
/external/libexif/libexif/pentax/
H A Dmnote-pentax-entry.h26 #include <libexif/pentax/mnote-pentax-tag.h>
31 MnotePentaxTag tag; member in struct:_MnotePentaxEntry
H A Dmnote-pentax-tag.c1 /* mnote-pentax-tag.c:
22 #include "mnote-pentax-tag.h"
29 MnotePentaxTag tag; member in struct:__anon23681
147 if (table[i].tag == t) return (table[i].name);
158 if (table[i].tag == t) return (_(table[i].title));
168 if (table[i].tag == t) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DSerializedFragmentState.java8 public final String tag; field in class:SerializedFragmentState
16 tag = fragment.getTag();
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dtable_subsetter_impl.cc30 bool TableSubsetterImpl::TagHandled(int32_t tag) { argument
31 return tags_.find(tag) != tags_.end();
/external/skia/src/core/
H A DSkPaintOptionsAndroid.cpp18 const char* tag = fTag.c_str(); local
21 const char* parentTagEnd = strrchr(tag, '-');
25 size_t parentTagLen = parentTagEnd - tag;
26 return SkLanguage(tag, parentTagLen);
37 SkString tag; local
38 buffer.readString(&tag);
39 fLanguage = SkLanguage(tag);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DLocation.java34 public byte tag; field in class:Location
43 tag = JDWPConstants.Tag.NO_TAG;
52 public Location(byte tag, long classID, long methodID, long index) { argument
53 this.tag = tag;
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
/external/bison/lib/
H A Dspawn_int.h27 } tag; member in struct:__spawn_action
/external/chromium_org/chrome/renderer/spellchecker/
H A Dcocoa_spelling_engine_mac.cc32 int tag) {
35 word_to_check, tag, &word_correct));
31 CheckSpelling(const base::string16& word_to_check, int tag) argument
/external/chromium_org/courgette/third_party/
H A Dbsdiff.h81 char tag[8]; // Contains MBS_PATCH_HEADER_TAG member in struct:courgette::MBSPatchHeader_
87 // This is the value for the tag field. Must match length exactly, not counting
/external/chromium_org/google_apis/gcm/base/
H A Dmcs_message.cc14 MCSMessage::Core::Core(uint8 tag, argument
22 uint8 tag,
41 MCSMessage::MCSMessage(uint8 tag, argument
43 : tag_(tag),
46 DCHECK_EQ(tag, GetMCSProtoTag(protobuf));
49 MCSMessage::MCSMessage(uint8 tag, argument
51 : tag_(tag),
54 DCHECK_EQ(tag, GetMCSProtoTag(core_->Get()));
21 Core( uint8 tag, scoped_ptr<const google::protobuf::MessageLite> protobuf) argument
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);
H A Dmcs_util_unittest.cc32 // Test building a protobuf and extracting the tag from a protobuf.
51 int tag = kTagsWithPersistentIds[i]; local
53 BuildProtobufFromTag(tag);
55 SetPersistentId(base::IntToString(tag), protobuf.get());
58 ASSERT_EQ(tag, get_val);
73 int tag = kTagsWithStreamIds[i]; local
75 BuildProtobufFromTag(tag);
77 SetLastStreamIdReceived(tag, protobuf.get());
79 ASSERT_EQ(tag, get_id);
/external/chromium_org/net/data/ssl/scripts/
H A Dcrlsetutil.py63 """Parses a DER-encoded tag/Length/Value into its component parts
69 A tuple of the ASN.1 tag value, the length of the ASN.1 header that was
71 that was not part of the tag/Length/Value.
73 tag = ord(der_bytes[0])
88 return (tag, header_length, contents, rest)
111 def tag(self): member in class:ASN1Iterator
112 """Returns the ASN.1 tag of the current element"""
/external/chromium_org/net/quic/crypto/
H A Dcrypto_handshake_message.h38 // SetValue sets an element with the given tag to the raw, memory contents of
40 template<class T> void SetValue(QuicTag tag, const T& v) { argument
41 tag_value_map_[tag] =
45 // SetVector sets an element with the given tag to the raw contents of an
47 template<class T> void SetVector(QuicTag tag, const std::vector<T>& v) { argument
49 tag_value_map_[tag] = std::string();
51 tag_value_map_[tag] = std::string(reinterpret_cast<const char*>(&v[0]),
56 // Returns the message tag.
57 QuicTag tag() const { return tag_; } function in class:net::CryptoHandshakeMessage
58 // Sets the message tag
59 set_tag(QuicTag tag) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_protocol_test.cc28 QuicTag tag = MakeQuicTag('A', 'B', 'C', 'D'); local
30 memcpy(bytes, &tag, 4);
117 // Get the tag from the version (we can loop over QuicVersions easily).
118 QuicTag tag = QuicVersionToQuicTag(version); local
119 EXPECT_LT(0u, tag);
122 QuicVersion tag_to_quic_version = QuicTagToQuicVersion(tag);

Completed in 1148 milliseconds

1234567891011>>