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

1234567891011>>

/external/elfutils/0.153/libebl/
H A Debldynamictagcheck.c1 /* Check dynamic tag.
60 ebl_dynamic_tag_check (ebl, tag)
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 <
[all...]
H A Debldynamictagname.c1 /* Return dynamic tag name.
61 ebl_dynamic_tag_name (ebl, tag, buf, len)
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 <
[all...]
/external/chromium_org/device/nfc/
H A Dnfc_tag_technology.cc11 NfcTagTechnology::NfcTagTechnology(NfcTag* tag) : tag_(tag) { argument
21 return tag() && (tag()->GetSupportedTechnologies() &
25 NfcNdefTagTechnology::NfcNdefTagTechnology(NfcTag* tag) argument
26 : NfcTagTechnology(tag) {
/external/chromium_org/v8/src/
H A Dlog-inl.h13 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag, argument
15 if ((tag == FUNCTION_TAG || tag == LAZY_COMPILE_TAG || tag == SCRIPT_TAG)
17 switch (tag) {
21 default: return tag;
24 return tag;
H A Dprofile-generator-inl.h13 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, argument
19 : tag_(tag),
32 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { argument
33 return tag == Logger::FUNCTION_TAG
34 || tag == Logger::LAZY_COMPILE_TAG
35 || tag == Logger::SCRIPT_TAG
36 || tag == Logger::NATIVE_FUNCTION_TAG
37 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
38 || tag == Logger::NATIVE_SCRIPT_TAG;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DTaggedObject.java34 public byte tag; field in class:TaggedObject
38 * Creates new value with empty tag.
41 tag = JDWPConstants.Tag.NO_TAG;
48 public TaggedObject(byte tag, long objectID) { argument
49 this.tag = tag;
H A DArrayRegion.java29 private byte tag; field in class:ArrayRegion
36 public ArrayRegion(byte tag, int length) { argument
37 this.tag = tag;
71 * @return Returns the tag.
74 return tag;
77 * @param tag The tag to set.
79 public void setTag(byte tag) { argument
80 this.tag
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dauthor_first_release.sh7 ## If the TAGS arguments are unspecified, all tags reported by `git tag`
10 tags=${@:-$(git tag)}
11 for tag in $tags; do
12 git shortlog -n -e -s $tag |
14 awk "{print \"${tag#v}\t\"\$0}"
/external/chromium_org/v8/test/mjsunit/
H A Dhtml-string-funcs.js30 function CheckSimple(f, tag) {
31 assertEquals('<' + tag + '>foo</' + tag + '>',
40 function CheckCompound(f, tag, att) {
41 assertEquals('<' + tag + ' ' + att + '="bar">foo</' + tag + '>',
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp10.cpp6 class tag;
7 int tag();
11 using ns0::tag;
15 using ns0::tag;
18 using ns1::tag;
19 using ns2::tag;
/external/libvpx/libvpx/tools/
H A Dauthor_first_release.sh7 ## If the TAGS arguments are unspecified, all tags reported by `git tag`
10 tags=${@:-$(git tag)}
11 for tag in $tags; do
12 git shortlog -n -e -s $tag |
14 awk "{print \"${tag#v}\t\"\$0}"
/external/chromium_org/base/android/
H A Devent_log.cc11 void EventLogWriteInt(int tag, int value) { argument
12 Java_EventLog_writeEvent(AttachCurrentThread(), tag, value); local
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A 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:
80 tag['multipleTagName
[all...]
/external/chromium_org/sandbox/win/src/
H A Dshared_handles.cc28 // Note that an empty slot is marked with a tag == 0 that is why is
29 // not a valid imput tag
30 bool SharedHandles::SetHandle(uint32 tag, HANDLE handle) { argument
31 if (0 == tag) {
32 // Invalid tag
35 // Find empty slot and put the tag and the handle there
40 empty_slot->tag = tag;
45 bool SharedHandles::GetHandle(uint32 tag, HANDLE* handle) { argument
46 if (0 == tag) {
58 FindByTag(uint32 tag) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dmsvs_common.sh75 die "Missing attribute value in '$opt' while generating $tag tag"
81 local tag=$1
84 echo "${indent}<${tag}"
89 echo "${indent}<${tag}>"
95 local tag=$1
97 echo "${indent}</${tag}>"
100 tag() { function
101 local tag=$1
104 echo "${indent}<${tag}"
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DWireFormatNano.java60 /** Given a tag value, determines the wire type (the lower 3 bits). */
61 static int getTagWireType(final int tag) { argument
62 return tag & TAG_TYPE_MASK;
65 /** Given a tag value, determines the field number (the upper 29 bits). */
66 public static int getTagFieldNumber(final int tag) { argument
67 return tag >>> TAG_TYPE_BITS;
70 /** Makes a tag value given a field number and wire type. */
90 * @return {@literal true} unless the tag is an end-group tag.
94 final int tag) throw
92 parseUnknownField( final CodedInputByteBufferNano input, final int tag) argument
110 getRepeatedFieldArrayLength( final CodedInputByteBufferNano input, final int tag) argument
[all...]
H A DUnknownFieldData.java44 final int tag; field in class:UnknownFieldData
47 UnknownFieldData(int tag, byte[] bytes) { argument
48 this.tag = tag;
54 size += CodedOutputByteBufferNano.computeRawVarint32Size(tag);
60 output.writeRawVarint32(tag);
74 return tag == other.tag && Arrays.equals(bytes, other.bytes);
80 result = 31 * result + tag;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERApplicationSpecificParser.java8 private final int tag; field in class:BERApplicationSpecificParser
11 BERApplicationSpecificParser(int tag, ASN1StreamParser parser) argument
13 this.tag = tag;
26 return new BERApplicationSpecific(tag, parser.readVector());
/external/chromium_org/third_party/libaddressinput/src/java/test/android/util/
H A DLog.java23 public static int v(String tag, String msg) { return 0; } argument
24 public static int v(String tag, String msg, Throwable tr) { return 0; } argument
25 public static int d(String tag, String msg) { return 0; } argument
26 public static int d(String tag, String msg, Throwable tr) { return 0; } argument
27 public static int i(String tag, String msg) { return 0; } argument
28 public static int i(String tag, String msg, Throwable tr) { return 0; } argument
29 public static int w(String tag, String msg) { return 0; } argument
30 public static int w(String tag, String msg, Throwable tr) { return 0; } argument
31 public static boolean isLoggable(String tag, int level) { return false; } argument
32 public static int w(String tag, Throwabl argument
33 e(String tag, String msg) argument
34 e(String tag, String msg, Throwable tr) argument
35 wtf(String tag, String msg) argument
36 wtf(String tag, Throwable tr) argument
37 wtf(String tag, String msg, Throwable tr) argument
[all...]
/external/clang/lib/Analysis/
H A DProgramPoint.cpp23 const ProgramPointTag *tag){
28 return PreStmt(S, LC, tag);
30 return PostStmt(S, LC, tag);
32 return PreLoad(S, LC, tag);
34 return PostLoad(S, LC, tag);
36 return PreStore(S, LC, tag);
38 return PostLValue(S, LC, tag);
40 return PostStmtPurgeDeadSymbols(S, LC, tag);
42 return PreStmtPurgeDeadSymbols(S, LC, tag);
21 getProgramPoint(const Stmt *S, ProgramPoint::Kind K, const LocationContext *LC, const ProgramPointTag *tag) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLog.java17 public static void e(String tag, String msg) { argument
18 e(tag, msg, null);
22 public static void e(String tag, String msg, Throwable throwable) { argument
23 addLog(Log.ERROR, tag, msg, throwable);
27 public static void d(String tag, String msg) { argument
28 d(tag, msg, null);
32 public static void d(String tag, String msg, Throwable throwable) { argument
33 addLog(Log.DEBUG, tag, msg, throwable);
37 public static void i(String tag, String msg) { argument
38 i(tag, ms
42 i(String tag, String msg, Throwable throwable) argument
47 v(String tag, String msg) argument
52 v(String tag, String msg, Throwable throwable) argument
57 w(String tag, String msg) argument
62 w(String tag, Throwable throwable) argument
68 w(String tag, String msg, Throwable throwable) argument
73 wtf(String tag, String msg) argument
78 wtf(String tag, String msg, Throwable throwable) argument
83 isLoggable(String tag, int level) argument
87 addLog(int level, String tag, String msg, Throwable throwable) argument
95 logToStream(PrintStream ps, int level, String tag, String msg, Throwable throwable) argument
122 public final String tag; field in class:ShadowLog.LogItem
126 LogItem(int type, String tag, String msg, Throwable throwable) argument
[all...]
/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/base/android/java/src/org/chromium/base/
H A DEventLog.java14 public static void writeEvent(int tag, int value) { argument
15 android.util.EventLog.writeEvent(tag, value);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontFeatureValue.cpp33 CSSFontFeatureValue::CSSFontFeatureValue(const AtomicString& tag, int value) argument
35 , m_tag(tag)
/external/chromium_org/ppapi/c/documentation/
H A Ddoxy_cleanup.py39 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
58 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']:
60 #tag['id'] = tag.td.h2.a['name']
61 tag.string = tag
[all...]

Completed in 759 milliseconds

1234567891011>>