Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 25 of 252) sorted by relevance

1234567891011

/external/protobuf/src/com/google/common/io/protocol/
DProtoBuf.java94 public ProtoBuf createGroup(int tag) { in createGroup()
101 public void addBool(int tag, boolean value){ in addBool()
108 public void addBytes(int tag, byte[] value){ in addBytes()
115 public void addInt(int tag, int value){ in addInt()
122 public void addLong(int tag, long value){ in addLong()
129 public void addFloat(int tag, float value) { in addFloat()
136 public void addDouble(int tag, double value) { in addDouble()
143 public void addProtoBuf(int tag, ProtoBuf value){ in addProtoBuf()
153 public ProtoBuf addNewProtoBuf(int tag) { in addNewProtoBuf()
165 public ProtoBuf newProtoBufForTag(int tag) { in newProtoBufForTag()
[all …]
DProtoBufUtil.java17 public static String getProtoValueOrEmpty(ProtoBuf proto, int tag) { in getProtoValueOrEmpty()
27 ProtoBuf proto, int sub, int tag) { in getSubProtoValueOrEmpty()
50 public static int getProtoValueOrDefault(ProtoBuf proto, int tag, in getProtoValueOrDefault()
71 public static int getProtoValueOrZero(ProtoBuf proto, int tag) { in getProtoValueOrZero()
84 public static long getProtoLongValueOrZero(ProtoBuf proto, int tag) { in getProtoLongValueOrZero()
103 public static long getProtoValueOrNegativeOne(ProtoBuf proto, int tag) { in getProtoValueOrNegativeOne()
164 int tag = (int) (tagAndType >>> 3); in readNextProtoBuf() local
207 ProtoBuf proto, int sub, int tag) { in getSubProtoValueOrNegativeOne()
230 public static int getSubProtoValueOrDefault(ProtoBuf proto, int sub, int tag, in getSubProtoValueOrDefault()
250 public static ProtoBuf createProtoBuf(ProtoBuf proto, int tag) { in createProtoBuf()
[all …]
DProtoBufType.java76 public ProtoBufType addElement(int optionsAndType, int tag, Object data) { in addElement()
91 public int getType(int tag) { in getType()
102 public int getModifiers(int tag) { in getModifiers()
113 public Object getData(int tag) { in getData()
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/src/
Dh245_analysis.cpp36 …emControlMessage(PS_MultimediaSystemControlMessage x, const char* label, uint16 tag, uint16 indent) in Analyze_MultimediaSystemControlMessage()
67 void Analyze_RequestMessage(PS_RequestMessage x, const char* label, uint16 tag, uint16 indent) in Analyze_RequestMessage()
131 void Analyze_ResponseMessage(PS_ResponseMessage x, const char* label, uint16 tag, uint16 indent) in Analyze_ResponseMessage()
222 void Analyze_CommandMessage(PS_CommandMessage x, const char* label, uint16 tag, uint16 indent) in Analyze_CommandMessage()
274 void Analyze_IndicationMessage(PS_IndicationMessage x, const char* label, uint16 tag, uint16 indent) in Analyze_IndicationMessage()
359 void Analyze_NonStandardMessage(PS_NonStandardMessage x, const char* label, uint16 tag, uint16 inde… in Analyze_NonStandardMessage()
373 void Analyze_NonStandardParameter(PS_NonStandardParameter x, const char* label, uint16 tag, uint16 … in Analyze_NonStandardParameter()
385 void Analyze_NonStandardIdentifier(PS_NonStandardIdentifier x, const char* label, uint16 tag, uint1… in Analyze_NonStandardIdentifier()
407 void Analyze_H221NonStandard(PS_H221NonStandard x, const char* label, uint16 tag, uint16 indent) in Analyze_H221NonStandard()
420 void Analyze_MasterSlaveDetermination(PS_MasterSlaveDetermination x, const char* label, uint16 tag,… in Analyze_MasterSlaveDetermination()
[all …]
Danalyzeper.cpp70 void Show245(uint16 tag, uint16 indent, const char* inString) in Show245()
100 void ShowHexData(uint16 tag, uint16 indent, uint16 size, uint8* data) in ShowHexData()
131 void ShowPERNull(uint16 tag, uint16 indent, const char* label) in ShowPERNull()
150 void ShowPERBoolean(uint16 tag, uint16 indent, const char* label, uint32 value) in ShowPERBoolean()
177 void ShowPERInteger(uint16 tag, uint16 indent, const char* label, uint32 value) in ShowPERInteger()
197 void ShowPERSignedInteger(uint16 tag, uint16 indent, const char* label, int32 value) in ShowPERSignedInteger()
218 void ShowPERUnboundedInteger(uint16 tag, uint16 indent, const char* label, uint32 value) in ShowPERUnboundedInteger()
238 void ShowPEROctetString(uint16 tag, uint16 indent, const char* label, PS_OCTETSTRING x) in ShowPEROctetString()
260 void ShowPERBitString(uint16 tag, uint16 indent, const char *label, PS_BITSTRING x) in ShowPERBitString()
282 void ShowPERCharString(uint16 tag, uint16 indent, const char* label, PS_int8STRING x) in ShowPERCharString()
[all …]
Dper.cpp1220 void MultiSysCtrlMessage_analyze(uint16 tag, uint8 type1, uint8 type2, uint8* message) in MultiSysCtrlMessage_analyze()
1247 void RequestMessage_analyze(uint16 tag, uint8 type2, uint8* message) in RequestMessage_analyze()
1308 void ResponseMessage_analyze(uint16 tag, uint8 type2, uint8* message) in ResponseMessage_analyze()
1396 void CommandMessage_analyze(uint16 tag, uint8 type2, uint8* message) in CommandMessage_analyze()
1445 void IndicationMessage_analyze(uint16 tag, uint8 type2, uint8* message) in IndicationMessage_analyze()
1632 void ShowH245Hex(uint16 tag, uint8 type1, uint8 type2, uint16 size, uint8* data) in ShowH245Hex()
/external/srec/portable/include/
Dpmemory.h64 #define MALLOC(n, tag) malloc(n) argument
65 #define CALLOC(m, n, tag) calloc(m, n) argument
66 #define CALLOC_CLR(m, n, tag) calloc(m, n) argument
69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag)) argument
70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag)) argument
101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__)) argument
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes)) argument
113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) argument
114 #define CALLOC_CLR(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) argument
119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize)) argument
[all …]
/external/qemu/android/utils/
Ddebug.h48 #define VERBOSE_ENABLE(tag) \ argument
51 #define VERBOSE_DISABLE(tag) \ argument
54 #define VERBOSE_CHECK(tag) \ argument
60 #define VERBOSE_PRINT(tag,...) \ argument
/external/clearsilver/python/examples/base/
Dsgmllib.py268 def finish_shorttag(self, tag, data): argument
275 def finish_starttag(self, tag, attrs): argument
293 def finish_endtag(self, tag): argument
322 def handle_starttag(self, tag, method, attrs): argument
326 def handle_endtag(self, tag, method): argument
330 def report_unbalanced(self, tag): argument
368 def unknown_starttag(self, tag, attrs): pass argument
369 def unknown_endtag(self, tag): pass argument
417 def finish_shorttag(self, tag, data): argument
424 def finish_starttag(self, tag, attrs): argument
[all …]
DPassSGMLParser.py29 def write_starttag (self, tag, attrs): argument
39 def write_endtag (self, tag): argument
47 def unknown_starttag(self, tag, attrs): argument
51 def unknown_endtag(self, tag): argument
DSafeHtml.py62 def cleanup_attrs (self, tag, attrs): argument
85 def unknown_starttag(self, tag, attrs): argument
107 def unknown_endtag(self, tag): argument
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DISimpleElement.java28 public static ISimpleElement create (final Tag tag) in create()
33 public static ISimpleElement create (final Tag tag, final AttributeSet attrs) in create()
79 SimpleElementImpl (final Tag tag, final AttributeSet attrs) in SimpleElementImpl()
DIElement.java28 public static IElement create (final Tag tag) in create()
33 public static IElement create (final Tag tag, final AttributeSet attrs) in create()
110 ElementImpl (final Tag tag, final AttributeSet attrs) in ElementImpl()
/external/skia/src/views/
DSkTagList.cpp24 SkTagList* SkTagList::Find(SkTagList* rec, U8CPU tag) in Find()
37 void SkTagList::DeleteTag(SkTagList** head, U8CPU tag) in DeleteTag()
/external/opencore/oscl/oscl/osclmemory/src/
Doscl_mem_audit.cpp366 MMAuditCharAutoPtr tag; in MM_GetTreeNodes() local
394 MMAuditCharAutoPtr tag; in MM_GetStats() local
436 MMAuditCharAutoPtr tag; in populateChildren() local
498 MMAuditCharAutoPtr tag; in MM_GetTagNode() local
518 MMAuditCharAutoPtr tag; in MM_GetExistingTag() local
672 MMAuditCharAutoPtr tag; in MM_SetFailurePoint() local
713 MMAuditCharAutoPtr tag; in MM_UnsetFailurePoint() local
1227 MMAuditCharAutoPtr tag; in updateStatsNode() local
1262 MMAuditCharAutoPtr tag; in updateStatsNodeInFailure() local
1280 MMAuditCharAutoPtr tag; in updateStatsNodeInFailure() local
[all …]
/external/qemu/hw/
Dscsi-disk.c41 uint32_t tag; member
72 static SCSIRequest *scsi_new_request(SCSIDeviceState *s, uint32_t tag) in scsi_new_request()
115 static SCSIRequest *scsi_find_request(SCSIDeviceState *s, uint32_t tag) in scsi_find_request()
130 uint32_t tag; in scsi_command_complete() local
139 static void scsi_cancel_io(SCSIDevice *d, uint32_t tag) in scsi_cancel_io()
169 static void scsi_read_data(SCSIDevice *d, uint32_t tag) in scsi_read_data()
234 static int scsi_write_data(SCSIDevice *d, uint32_t tag) in scsi_write_data()
266 static uint8_t *scsi_get_buf(SCSIDevice *d, uint32_t tag) in scsi_get_buf()
284 static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag, in scsi_send_command()
/external/openssl/crypto/asn1/
Dasn1t.h281 #define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \ argument
289 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \ argument
295 #define ASN1_EX_COMBINE(flags, tag, type) { \ argument
300 #define ASN1_IMP_EX(stname, field, type, tag, ex) \ argument
303 #define ASN1_EXP_EX(stname, field, type, tag, ex) \ argument
322 #define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, 0) argument
325 #define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTI… argument
329 #define ASN1_EXP(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, 0) argument
330 #define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTI… argument
350 #define ASN1_IMP_SET_OF(stname, field, type, tag) \ argument
[all …]
Da_bytes.c73 int inf,tag,xclass; in d2i_ASN1_type_bytes() local
131 int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass) in i2d_ASN1_bytes()
164 int inf,tag,xclass; in d2i_ASN1_bytes() local
/external/openssl/include/openssl/
Dasn1t.h281 #define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \ argument
289 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \ argument
295 #define ASN1_EX_COMBINE(flags, tag, type) { \ argument
300 #define ASN1_IMP_EX(stname, field, type, tag, ex) \ argument
303 #define ASN1_EXP_EX(stname, field, type, tag, ex) \ argument
322 #define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, 0) argument
325 #define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTI… argument
329 #define ASN1_EXP(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, 0) argument
330 #define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTI… argument
350 #define ASN1_IMP_SET_OF(stname, field, type, tag) \ argument
[all …]
/external/e2fsprogs/lib/blkid/
Dtag.c21 blkid_tag tag; in blkid_new_tag() local
33 void blkid_debug_dump_tag(blkid_tag tag) in blkid_debug_dump_tag()
44 void blkid_free_tag(blkid_tag tag) in blkid_free_tag()
88 blkid_tag tag; in blkid_dev_has_tag() local
302 blkid_tag tag; in blkid_tag_next() local
/external/jhead/
Dgpsinfo.c64 int IsGpsTag(const char* tag) { in IsGpsTag()
68 TagTable_t* GpsTagToTagTableEntry(unsigned short tag) in GpsTagToTagTableEntry()
86 int GpsTagToFormatType(unsigned short tag) in GpsTagToFormatType()
/external/icu4c/tools/genrb/
Dparse.c262 parseUCARules(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) in parseUCARules()
404 parseTransliterator(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *statu… in parseTransliterator()
482 parseDependency(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) in parseDependency()
544 parseString(char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) in parseString()
579 parseAlias(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) in parseAlias()
787 parseCollationElements(char *tag, uint32_t startline, UBool newCollation, UErrorCode *status) in parseCollationElements()
907 realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCode *status) in realParseTable()
994 parseTable(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) in parseTable()
1021 parseArray(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) in parseArray()
1114 parseIntVector(char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) in parseIntVector()
[all …]
/external/opencore/oscl/oscl/osclbase/src/
Dpvlogger_accessories.h95 filter_status_type FilterString(char* tag, message_id_type msgID, log_level_type level) in FilterString()
102 … filter_status_type FilterOpaqueMessge(char* tag, message_id_type msgID, log_level_type level) in FilterOpaqueMessge()
/external/icu4c/layout/
DOpenTypeTables.h32 ATag tag; member
45 LETag tag; member
/external/elfutils/libebl/
Debldynamictagcheck.c24 ebl_dynamic_tag_check (ebl, tag) in ebl_dynamic_tag_check() argument

1234567891011