Searched refs:tag (Results 476 - 500 of 965) sorted by relevance

<<11121314151617181920>>

/external/harfbuzz/src/
H A Dharfbuzz-shaper.cpp803 static inline char *tag_to_string(HB_UInt tag) argument
806 string[0] = (tag >> 24)&0xff;
807 string[1] = (tag >> 16)&0xff;
808 string[2] = (tag >> 8)&0xff;
809 string[3] = tag&0xff;
835 unsigned int tag; member in struct:OTScripts
905 unsigned int tag = ot_scripts[script].tag; local
913 HB_Error error = HB_GSUB_Select_Script(face->gsub, tag, &script_index);
939 static HB_Stream getTableStream(void *font, HB_GetFontTableFunc tableFunc, HB_Tag tag) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java39 public static final String tag = "Code"; field in class:CodeAttribute
60 super(cp, tag);
80 super(cp, tag);
317 AttributeInfo.remove(attributes, StackMapTable.tag);
332 AttributeInfo.remove(attributes, StackMap.tag);
/external/jdiff/src/jdiff/
H A DAPI.java283 * Convert all HTML tags to text by stuffing text into the HTML tag
284 * to stop it being an HTML or XML tag. E.g. &quot;<code>foo</code>&quot;
370 * of HMTL tags which don't require a matching end tag.
389 String tag = null;
396 // Make the best guess as to whether this tag is terminated
397 if (Comments.isMinimizedTag(tag) &&
398 htmlText.indexOf("</" + tag + ">", i) == -1)
404 tag += c;
409 tag = "";
423 // Oops. Someone forgot to close their HTML tag,
[all...]
/external/openssl/crypto/asn1/
H A Dx_name.c72 int tag, int aclass, char opt, ASN1_TLC *ctx);
75 const ASN1_ITEM *it, int tag, int aclass);
174 int tag, int aclass, char opt, ASN1_TLC *ctx)
188 tag, aclass, opt, ctx);
224 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
172 x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) argument
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DWireFormatTest.java248 int tag = input.readTag();
249 if (tag == 0) {
253 assertTrue(tag > previousTag);
254 previousTag = tag;
255 input.skipField(tag);
/external/sqlite/android/
H A Dsqlite3_android.cpp180 char const * tag = "sqlite_trigger"; local
186 tag = (char const *)sqlite3_value_text(argv[0]);
187 if (tag == NULL) {
188 tag = "sqlite_trigger";
196 LOG(LOG_INFO, tag, msg);
288 * token TEXT, source INTEGER, token_index INTEGER, tag (any type)
290 * The tag column is not required if <data_tag> is NULL.
299 * If <data_tag> is not NULL, 'tag' is set to <data_tag>.
341 char const * dataTagCol = useDataTag ? ", tag" : "";
370 // Bind <data_tag> to the tag colum
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_x86_defs.h120 X86AModeTag tag; member in struct:__anon13302
156 X86RMITag tag; member in struct:__anon13307
190 X86RITag tag; member in struct:__anon13313
220 X86RMTag tag; member in struct:__anon13318
389 X86InstrTag tag; member in struct:__anon13328
H A Dhost_arm_defs.h129 ARMAMode1Tag tag; member in struct:__anon13090
160 ARMAMode2Tag tag; member in struct:__anon13095
205 ARMAModeNTag tag; member in struct:__anon13101
236 ARMRI84Tag tag; member in struct:__anon13106
265 ARMRI5Tag tag; member in struct:__anon13111
330 ARMNRS_tag tag; member in struct:__anon13117
617 ARMInstrTag tag; member in struct:__anon13130
H A Dir_defs.c70 switch (con->tag) {
953 switch (e->tag) {
1161 switch (s->tag) {
1286 c->tag = Ico_U1;
1295 c->tag = Ico_U8;
1302 c->tag = Ico_U16;
1309 c->tag = Ico_U32;
1316 c->tag = Ico_U64;
1323 c->tag = Ico_F32;
1330 c->tag
[all...]
H A Dhost_arm_isel.c141 if (instr->tag == ARMin_NUnary || instr->tag == ARMin_NBinary
142 || instr->tag == ARMin_NUnaryS || instr->tag == ARMin_NBinaryS
143 || instr->tag == ARMin_NDual || instr->tag == ARMin_NShift) {
352 switch (e->tag) {
449 if (guard->tag == Iex_Const
450 && guard->Iex.Const.con->tag == Ico_U1
560 if (guard->tag
[all...]
/external/valgrind/main/drd/
H A Ddrd_load_store.c279 if (addr_expr->tag == Iex_RdTmp)
285 && bb->stmts[i]->tag == Ist_WrTmp
289 if (e->tag == Iex_Get && e->Iex.Get.offset == STACK_POINTER_OFFSET)
458 switch (st->tag)
498 if (data->tag == Iex_Load)
/external/valgrind/main/memcheck/
H A Dmc_errors.c89 AddrTag tag; member in struct:_AddrInfo
160 // Nb: we don't need the tag here, as it's stored in the Error type! Yuk.
161 //MC_ErrorTag tag;
170 UInt otag; // origin tag
177 UInt otag; // origin tag
203 UInt otag; // origin tag
212 UInt otag; // origin tag
221 UInt otag; // origin tag
304 switch (ai->tag) {
876 extra.Err.Addr.ai.tag
[all...]
/external/expat/lib/
H A Dxmlparse.c181 typedef struct tag { struct
182 struct tag *parent; /* parent of this element */
934 TAG *tag = tStk; local
936 tag->parent = freeTagList;
937 moveToFreeBindingList(parser, tag->bindings);
938 tag->bindings = NULL;
939 freeTagList = tag;
1938 XML_L("mismatched tag"),
2049 /* Initially tag->rawName always points into the parse buffer;
2051 processed, and not yet closed, we need to store tag
2057 TAG *tag = tagStack; local
2385 TAG *tag; local
2500 TAG *tag = tagStack; local
[all...]
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp247 icvFSCreateCollection( CvFileStorage* fs, int tag, CvFileNode* collection ) argument
253 if( CV_NODE_IS_MAP(tag) )
255 if( collection->tag != CV_NODE_NONE )
270 if( CV_NODE_TYPE(collection->tag) != CV_NODE_NONE )
276 collection->tag = tag;
297 if( (!is_map || CV_IS_SET_ELEM( node )) && CV_NODE_IS_COLLECTION(node->tag) )
299 if( CV_NODE_IS_USER(node->tag) && node->info && node->data.obj.decoded )
513 if( !CV_NODE_IS_MAP(map_node->tag) )
515 if( (!CV_NODE_IS_SEQ(map_node->tag) || map_nod
[all...]
/external/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp271 const UINT tag,
323 /* Accept the additional channel(s), only if the tag is in the lists */
334 if (isCpe == pPce->FrontElementIsCpe[i] && pPce->FrontElementTagSelect[i] == tag) {
355 if (isCpe == pPce->SideElementIsCpe[i] && pPce->SideElementTagSelect[i] == tag) {
376 if (isCpe == pPce->BackElementIsCpe[i] && pPce->BackElementTagSelect[i] == tag) {
403 if ( pPce->LfeElementTagSelect[i] == tag ) {
420 if (pPce->ValidCcElementTagSelect[i] == tag) {
428 if (pPce->AssocDataElementTagSelect[i] == tag) {
268 CProgramConfig_LookupElement( CProgramConfig *pPce, const UINT channelConfig, const UINT tag, const UINT channelIdx, UCHAR chMapping[], AUDIO_CHANNEL_TYPE chType[], UCHAR chIndex[], UCHAR *elMapping, MP4_ELEMENT_ID elList[], MP4_ELEMENT_ID elType ) argument
/external/jhead/
H A Dmain.c232 char tag[100]; local
243 ALOGE("saveAttributes: couldn't find end of tag");
249 ALOGE("saveAttributes: attribute tag way too long");
253 memcpy(tag, attrPtr, tagEnd - attrPtr);
254 tag[tagEnd - attrPtr] = 0;
256 if (IsGpsTag(tag)) {
258 exifElementTable[i].Tag = GpsTagNameToValue(tag);
262 exifElementTable[i].Tag = TagNameToValue(tag);
291 ALOGE("tag %s id %d value %s data length=%d isGps=%d", tag, exifElementTabl
[all...]
/external/skia/src/ports/
H A DSkFontHost_mac_atsui.cpp296 static void* get_font_table(ATSFontRef fontID, uint32_t tag) { argument
298 OSStatus err = ATSFontGetTable(fontID, tag, 0, 0, NULL, &size);
303 err = ATSFontGetTable(fontID, tag, 0, size, data, &size);
573 size_t SkFontHost::GetTableSize(SkFontID fontID, SkFontTableTag tag) { argument
575 if (ATSFontGetTable(fontID, tag, 0, 0, NULL, &size)) {
581 size_t SkFontHost::GetTableData(SkFontID fontID, SkFontTableTag tag, argument
584 if (ATSFontGetTable(fontID, tag, offset, length, data, &size)) {
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c1058 int dest, int tag, MPI_Comm comm)
1066 CALL_FN_W_6W(err, fn, buf,count,datatype,dest,tag,comm);
1072 int dest, int tag, MPI_Comm comm) {
1073 return generic_Send(buf,count,datatype, dest,tag,comm);
1076 int dest, int tag, MPI_Comm comm) {
1077 return generic_Send(buf,count,datatype, dest,tag,comm);
1080 int dest, int tag, MPI_Comm comm) {
1081 return generic_Send(buf,count,datatype, dest,tag,comm);
1084 int dest, int tag, MPI_Comm comm) {
1085 return generic_Send(buf,count,datatype, dest,tag,com
1057 generic_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1071 PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1075 PMPI_Bsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1079 PMPI_Ssend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1083 PMPI_Rsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1094 PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status) argument
1370 generic_Isend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1387 PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1392 PMPI_Ibsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1397 PMPI_Issend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1402 PMPI_Irsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1415 PMPI_Irecv( void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request* request ) argument
1623 PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) argument
1651 PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_translate.c198 /* Given a guest IP, get an origin tag for a 1-element stack trace,
199 and wrap it up in an IR atom that can be passed as the origin-tag
382 if (st->tag == Ist_IMark) {
388 if (st->tag != Ist_WrTmp) goto case2;
390 if (e->tag != Iex_Get) goto case2;
400 if (st->tag != Ist_WrTmp) goto case3;
402 if (e->tag != Iex_Binop) goto case3;
403 if (e->Iex.Binop.arg1->tag != Iex_RdTmp) goto case3;
405 if (e->Iex.Binop.arg2->tag != Iex_Const) goto case3;
419 if (st->tag !
[all...]
/external/qemu/audio/
H A Daudio.c481 switch (opt->tag) {
518 dolog ("Bad value tag for option %s_%s %d\n",
519 uprefix, opt->name, opt->tag);
574 switch (opt->tag) {
598 dolog ("Bad value tag for option `%s' - %d\n",
599 optname, opt->tag);
1691 .tag = AUD_OPT_BOOL,
1697 .tag = AUD_OPT_INT,
1703 .tag = AUD_OPT_FMT,
1709 .tag
[all...]
/external/v8/src/
H A Dprofile-generator.cc772 CodeEntry* CpuProfilesCollection::NewCodeEntry(Logger::LogEventsAndTags tag, argument
776 CodeEntry* entry = new CodeEntry(tag,
787 CodeEntry* CpuProfilesCollection::NewCodeEntry(Logger::LogEventsAndTags tag, argument
789 CodeEntry* entry = new CodeEntry(tag,
800 CodeEntry* CpuProfilesCollection::NewCodeEntry(Logger::LogEventsAndTags tag, argument
803 CodeEntry* entry = new CodeEntry(tag,
814 CodeEntry* CpuProfilesCollection::NewCodeEntry(Logger::LogEventsAndTags tag, argument
816 CodeEntry* entry = new CodeEntry(tag,
1203 HeapEntry* HeapSnapshot::AddGcSubrootEntry(int tag, argument
1206 ASSERT(gc_subroot_entries_[tag]
1613 SetTag(Object* obj, const char* tag) argument
1739 const char* tag = objects_tags_.GetTag(object); local
1786 Synchronize(VisitorSynchronization::SyncTag tag) argument
2244 IndexTag(int index, VisitorSynchronization::SyncTag tag) argument
2247 VisitorSynchronization::SyncTag tag; member in struct:v8::internal::RootsReferencesExtractor::IndexTag
2288 Synchronize(VisitorSynchronization::SyncTag tag) argument
2353 const char* tag = objects_tags_.GetTag(object); local
2542 SetGcRootsReference(VisitorSynchronization::SyncTag tag) argument
2550 SetGcSubrootReference( VisitorSynchronization::SyncTag tag, bool is_weak, Object* child_obj) argument
2562 TagObject(Object* obj, const char* tag) argument
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf3.c919 starting from the abbreviation entry's tag. So just cache
1993 parser->qparentE[parser->sp].tag = Te_EMPTY;
2027 vg_assert(parser->qparentE[parser->sp].tag == Te_EMPTY);
2052 && parser->qparentE[parser->sp].tag == Te_TyArray);
2056 'admin' is where the completed types are dumped. 'dtag' is the tag
2156 typeE.tag = Te_TyBase;
2217 typeE.tag = Te_TyVoid;
2231 typeE.tag = Te_TyPorR;
2267 typeE.tag = Te_TyEnum;
2338 atomE.tag
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1308 initialize: function(tag, props){
1309 var konstructor = Element.Constructors.get(tag);
1311 if (typeof tag == 'string') return document.newElement(tag, props);
1312 return $(tag).set(props);
1401 newElement: function(tag, props){
1405 tag += ' ' + attribute + '="' + props[attribute] + '"';
1408 tag = '<' + tag + '>';
1410 return $.element(this.createElement(tag))
[all...]
/external/valgrind/main/callgrind/
H A Dsim.c189 /* Can bits in tag entries be used for flags?
243 CacheResult cachesim_setref(cache_t2* c, UInt set_no, UWord tag) argument
253 if (tag == set[0])
256 /* If the tag is one other than the MRU, move it into the MRU spot */
259 if (tag == set[i]) {
263 set[0] = tag;
268 /* A miss; install this tag as MRU, shuffle rest down. */
272 set[0] = tag;
281 UWord tag = a >> c->tag_shift; local
285 return cachesim_setref(c, set1, tag);
342 cachesim_setref_wb(cache_t2* c, RefType ref, UInt set_no, UWord tag) argument
385 UWord tag = a & c->tag_mask; local
875 UWord tag = memline & LL.tag_mask; local
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_mac.cc82 search_attributes_.attr[entries].tag = kSecServerItemAttr;
90 search_attributes_.attr[entries].tag = kSecPortItemAttr;
98 search_attributes_.attr[entries].tag = kSecProtocolItemAttr;
106 search_attributes_.attr[entries].tag = kSecAuthenticationTypeItemAttr;
114 search_attributes_.attr[entries].tag = kSecSecurityDomainItemAttr;
122 search_attributes_.attr[entries].tag = kSecPathItemAttr;
130 search_attributes_.attr[entries].tag = kSecAccountItemAttr;
138 search_attributes_.attr[entries].tag = kSecCreatorItemAttr;
247 attrInfo.tag = tags;
279 switch (attr.tag) {
[all...]

Completed in 465 milliseconds

<<11121314151617181920>>