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

1234567891011>>

/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DUnknownFieldData.java40 final int tag; field in class:UnknownFieldData
43 UnknownFieldData(int tag, byte[] bytes) { argument
44 this.tag = tag;
/external/elfutils/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...]
H A Deblcheckobjattr.c59 ebl_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
62 int tag;
67 if (ebl->check_object_attribute (ebl, vendor, tag, value,
74 if (tag == 32)
/external/chromium_org/v8/src/
H A Dlog-inl.h36 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag, argument
38 if ((tag == FUNCTION_TAG || tag == LAZY_COMPILE_TAG || tag == SCRIPT_TAG)
40 switch (tag) {
44 default: return tag;
47 return tag;
H A Dprofile-generator-inl.h46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, argument
51 : tag_(tag),
63 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { argument
64 return tag == Logger::FUNCTION_TAG
65 || tag == Logger::LAZY_COMPILE_TAG
66 || tag == Logger::SCRIPT_TAG
67 || tag == Logger::NATIVE_FUNCTION_TAG
68 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
69 || tag == Logger::NATIVE_SCRIPT_TAG;
83 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { argument
[all...]
/external/v8/src/
H A Dlog-inl.h37 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag, argument
39 if ((tag == FUNCTION_TAG || tag == LAZY_COMPILE_TAG || tag == SCRIPT_TAG)
41 switch (tag) {
45 default: return tag;
48 return tag;
H A Dprofile-generator-inl.h46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, argument
52 : tag_(tag),
62 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { argument
63 return tag == Logger::FUNCTION_TAG
64 || tag == Logger::LAZY_COMPILE_TAG
65 || tag == Logger::SCRIPT_TAG
66 || tag == Logger::NATIVE_FUNCTION_TAG
67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG
68 || tag == Logger::NATIVE_SCRIPT_TAG;
81 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { argument
[all...]
/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/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/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/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/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFeatureValue.cpp33 FontFeatureValue::FontFeatureValue(const String& 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...]
/external/chromium_org/ppapi/cpp/documentation/
H A Ddoxy_cleanup.py38 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
57 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']:
59 #tag['id'] = tag.td.h2.a['name']
60 tag.string = tag
[all...]
/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/dropbear/libtomcrypt/src/encauth/ocb/
H A Docb_done_encrypt.c26 @param tag [out] The tag for the OCB stream
27 @param taglen [in/out] The max size and resulting size of the tag
31 unsigned char *ct, unsigned char *tag, unsigned long *taglen)
36 LTC_ARGCHK(tag != NULL);
38 return s_ocb_done(ocb, pt, ptlen, ct, tag, taglen, 0);
30 ocb_done_encrypt(ocb_state *ocb, const unsigned char *pt, unsigned long ptlen, unsigned char *ct, unsigned char *tag, unsigned long *taglen) argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcryptoparams.h37 CryptoParams() : tag(0) {}
40 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {}
43 return (tag == params.tag && cipher_suite == params.cipher_suite);
46 int tag; member in struct:cricket::CryptoParams
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcryptoparams.h37 CryptoParams() : tag(0) {}
40 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {}
43 return (tag == params.tag && cipher_suite == params.cipher_suite);
46 int tag; member in struct:cricket::CryptoParams
/external/chromium_org/third_party/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/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);

Completed in 2339 milliseconds

1234567891011>>