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

1234567891011>>

/external/elfutils/src/libebl/
H A Debldynamictagcheck.c1 /* Check dynamic tag.
39 ebl_dynamic_tag_check (ebl, tag)
41 int64_t tag;
43 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false;
46 && ((tag >= 0 && tag < DT_NUM)
47 || (tag >= DT_GNU_PRELINKED && tag <= DT_SYMINENT)
48 || (tag >= DT_GNU_HASH && tag <
[all...]
H A Debldynamictagname.c1 /* Return dynamic tag name.
40 ebl_dynamic_tag_name (ebl, tag, buf, len)
42 int64_t tag;
46 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL;
50 if (tag >= 0 && tag < DT_NUM)
63 res = stdtags[tag];
65 else if (tag == DT_VERSYM)
67 else if (tag >= DT_GNU_PRELINKED && tag <
[all...]
H A Deblcheckobjattr.c38 ebl_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
41 int tag;
46 if (ebl->check_object_attribute (ebl, vendor, tag, value,
53 if (tag == 32)
/external/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...]
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/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/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/vogar/src/vogar/target/
H A DAndroidLog.java26 private final String tag; field in class:AndroidLog
28 public AndroidLog(String tag) { argument
29 this.tag = tag;
33 Log.v(tag, s);
37 Log.i(tag, s);
41 Log.i(tag, s, exception);
45 Log.w(tag, s);
/external/libvpx/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
51 UnknownFieldData(int tag, byte[] bytes) { argument
52 this.tag = tag;
58 size += CodedOutputByteBufferNano.computeRawVarint32Size(tag);
64 output.writeRawVarint32(tag);
78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
84 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/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/elfutils/src/libdw/
H A Ddwarf_peel_type.c43 int tag; local
50 tag = INTUSE (dwarf_tag) (result);
51 while (tag == DW_TAG_typedef
52 || tag == DW_TAG_const_type
53 || tag == DW_TAG_volatile_type
54 || tag == DW_TAG_restrict_type)
66 tag = INTUSE (dwarf_tag) (result);
69 if (tag == DW_TAG_invalid)
/external/replicaisland/src/com/replica/replicaisland/
H A DDebugLog.java32 public static int v(String tag, String msg) { argument
35 result = Log.v(tag, msg);
40 public static int v(String tag, String msg, Throwable tr) { argument
43 result = Log.v(tag, msg, tr);
48 public static int d(String tag, String msg) { argument
51 result = Log.d(tag, msg);
56 public static int d(String tag, String msg, Throwable tr) { argument
59 result = Log.d(tag, msg, tr);
64 public static int i(String tag, String msg) { argument
67 result = Log.i(tag, ms
72 i(String tag, String msg, Throwable tr) argument
80 w(String tag, String msg) argument
88 w(String tag, String msg, Throwable tr) argument
96 w(String tag, Throwable tr) argument
104 e(String tag, String msg) argument
112 e(String tag, String msg, Throwable tr) argument
[all...]
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DLog.java33 public static void d (String tag, String msg) { argument
35 android.util.Log.d(tag, msg);
38 public static void i (String tag, String msg) { argument
40 android.util.Log.i(tag, msg);
43 public static void w (String tag, String msg) { argument
45 android.util.Log.w(tag, msg);
48 public static void w (String tag, String msg, Throwable tr) { argument
50 android.util.Log.w(tag, msg, tr);
53 public static void e (String tag, String msg) { argument
55 android.util.Log.e(tag, ms
58 e(String tag, String msg, Throwable tr) argument
[all...]
/external/skia/src/views/
H A DSkTagList.h29 SkTagList(U8CPU tag) : fTag(SkToU8(tag)) argument
31 SkASSERT(tag < kSkTagListCount);
38 static SkTagList* Find(SkTagList* head, U8CPU tag);
39 static void DeleteTag(SkTagList** headptr, U8CPU tag);
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java151 * Internal method for writing a tag with attributes.
152 * @param tag the tag name
156 * @param close true to close the tag, false to leave it
159 protected void tag(String tag, String[] names, String[] values, argument
164 m_out.write(tag);
178 m_tagStack.add(tag);
183 * Write a closed tag with attributes. The tag wil
190 tag(String tag, String[] names, String[] values, int nattr) argument
203 start(String tag, String[] names, String[] values, int nattr) argument
231 tag(String tag, String name, String value, boolean close) argument
257 tag(String tag, String name, String value) argument
269 start(String tag, String name, String value) argument
283 tag(String tag, ArrayList names, ArrayList values, int nattr, boolean close) argument
314 tag(String tag, ArrayList names, ArrayList values, int nattr) argument
327 start(String tag, ArrayList names, ArrayList values, int nattr) argument
337 start(String tag) argument
363 contentTag(String tag, String name, String value, String content) argument
381 contentTag(String tag, String content) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DXML.java120 * Scan the content following the named tag, attaching it to the context.
123 * @param name The tag name.
124 * @return true if the close tag is processed.
191 // Close tag </
195 throw x.syntaxError("Mismatched close tag" + t);
201 throw x.syntaxError("Misshaped close tag");
206 throw x.syntaxError("Misshaped tag");
208 // Open tag <
235 // Empty tag <.../>
239 throw x.syntaxError("Misshaped tag");
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.h36 tag(0),
41 tag(t),
59 return tag != 0;
62 dw_tag_t tag; member in struct:DWARFDeclContext::Entry
72 AppendDeclContext (dw_tag_t tag, const char *name) argument
74 m_entries.push_back(Entry(tag, name));

Completed in 2658 milliseconds

1234567891011>>