/external/icu4c/i18n/ |
D | ucol_bld.cpp | 825 UCAElements el; in ucol_createElements() local 887 el.noOfCEs = tok->noOfCEs + tok->noOfExpCEs; in ucol_createElements() 890 el.CEs[i] = tok->CEs[i]; in ucol_createElements() 893 el.CEs[i+tok->noOfCEs] = tok->expCEs[i]; in ucol_createElements() 899 el.prefix = el.prefixChars; in ucol_createElements() 900 el.cPoints = el.uchars; in ucol_createElements() 904 el.prefixSize = tok->prefix>>24; in ucol_createElements() 905 … uprv_memcpy(el.prefix, src->source + (tok->prefix & 0x00FFFFFF), el.prefixSize*sizeof(UChar)); in ucol_createElements() 907 el.cSize = (tok->source >> 24)-(tok->prefix>>24); in ucol_createElements() 908 …uprv_memcpy(el.uchars, (tok->source & 0x00FFFFFF)+(tok->prefix>>24) + src->source, el.cSize*sizeof… in ucol_createElements() [all …]
|
D | ucol_elm.cpp | 1580 UCAElements el; in _enumCategoryRangeClosureCategory() local 1606 el.cPoints = decomp; in _enumCategoryRangeClosureCategory() 1607 el.cSize = noOfDec; in _enumCategoryRangeClosureCategory() 1608 el.noOfCEs = 0; in _enumCategoryRangeClosureCategory() 1609 el.prefix = el.prefixChars; in _enumCategoryRangeClosureCategory() 1610 el.prefixSize = 0; in _enumCategoryRangeClosureCategory() 1612 UCAElements *prefix=(UCAElements *)uhash_get(t->prefixLookup, &el); in _enumCategoryRangeClosureCategory() 1613 el.cPoints = comp; in _enumCategoryRangeClosureCategory() 1614 el.cSize = len; in _enumCategoryRangeClosureCategory() 1615 el.prefix = el.prefixChars; in _enumCategoryRangeClosureCategory() [all …]
|
D | ucol_cnt.cpp | 78 ContractionTable *el = (ContractionTable *)uprv_malloc(sizeof(ContractionTable)); in addATableElement() local 79 if(el == NULL) { in addATableElement() 82 el->CEs = (uint32_t *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(uint32_t)); in addATableElement() 83 if(el->CEs == NULL) { in addATableElement() 87 el->codePoints = (UChar *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(UChar)); in addATableElement() 88 if(el->codePoints == NULL) { in addATableElement() 89 uprv_free(el->CEs); in addATableElement() 93 el->position = 0; in addATableElement() 94 el->size = INIT_EXP_TABLE_SIZE; in addATableElement() 95 uprv_memset(el->CEs, 0, INIT_EXP_TABLE_SIZE*sizeof(uint32_t)); in addATableElement() [all …]
|
/external/tesseract/liblept/ |
D | maze.c | 139 MAZEEL *el, *elp; in generateBinaryMaze() local 171 el = mazeelCreate(xi, yi, START_LOC); in generateBinaryMaze() 173 lqueueAdd(lq, el); in generateBinaryMaze() 193 el = mazeelCreate(x - 1, y, DIR_WEST); in generateBinaryMaze() 194 lqueueAdd(lq, el); in generateBinaryMaze() 210 el = mazeelCreate(x, y - 1, DIR_NORTH); in generateBinaryMaze() 211 lqueueAdd(lq, el); in generateBinaryMaze() 227 el = mazeelCreate(x + 1, y, DIR_EAST); in generateBinaryMaze() 228 lqueueAdd(lq, el); in generateBinaryMaze() 244 el = mazeelCreate(x, y + 1, DIR_SOUTH); in generateBinaryMaze() [all …]
|
/external/e2fsprogs/e2fsck/ |
D | ea_refcount.c | 112 struct ea_refcount_el *el; in insert_refcount_el() local 139 el = &refcount->list[pos]; in insert_refcount_el() 140 el->ea_count = 0; in insert_refcount_el() 141 el->ea_blk = blk; in insert_refcount_el() 142 return el; in insert_refcount_el() 229 struct ea_refcount_el *el; in ea_refcount_fetch() local 231 el = get_refcount_el(refcount, blk, 0); in ea_refcount_fetch() 232 if (!el) { in ea_refcount_fetch() 236 *ret = el->ea_count; in ea_refcount_fetch() 242 struct ea_refcount_el *el; in ea_refcount_increment() local [all …]
|
/external/e2fsprogs/lib/et/ |
D | error_message.c | 174 struct et_list *el; in add_error_table() local 176 if (!(el = (struct et_list *) malloc(sizeof(struct et_list)))) in add_error_table() 179 el->table = et; in add_error_table() 180 el->next = _et_dynamic_list; in add_error_table() 181 _et_dynamic_list = el; in add_error_table() 197 struct et_list *el = _et_dynamic_list; in remove_error_table() local 201 while (el) { in remove_error_table() 202 if (el->table->base == et->base) { in remove_error_table() 204 el2->next = el->next; in remove_error_table() 206 _et_dynamic_list = el->next; in remove_error_table() [all …]
|
/external/embunit/src/ |
D | AssertImpl.c | 61 int el; in assertImplementationCStr() local 65 el = stdimpl_strlen(expected); in assertImplementationCStr() 67 el = 4; in assertImplementationCStr() 77 if (el > exp_act_limit) { in assertImplementationCStr() 80 el = exp_act_limit; in assertImplementationCStr() 83 if (el > w) { in assertImplementationCStr() 84 el = w; in assertImplementationCStr() 88 int w = exp_act_limit + (exp_act_limit - el); in assertImplementationCStr() 94 stdimpl_strncat(buffer, expected, el); in assertImplementationCStr()
|
/external/skia/src/ports/ |
D | SkXMLParser_expat.cpp | 46 static void XMLCALL start_proc(void *data, const char *el, const char **attr) in start_proc() argument 49 size_t len = sk_wcslen((const short*) el); in start_proc() 51 el = ConvertUnicodeToChar((const short*) el, len, el8); in start_proc() 53 if (((SkXMLParser*)data)->startElement(el)) { in start_proc() 77 static void XMLCALL end_proc(void *data, const char *el) in end_proc() argument 80 size_t len = sk_wcslen((const short*) el); in end_proc() 82 el = ConvertUnicodeToChar((const short*) el, len, el8); in end_proc() 84 if (((SkXMLParser*)data)->endElement(el)) in end_proc()
|
D | SkXMLPullParser_expat.cpp | 62 static void XMLCALL start_proc(void *data, const char *el, const char **attr) in start_proc() argument 68 c->fName = dupstr(alloc, el, strlen(el)); in start_proc() 87 static void XMLCALL end_proc(void *data, const char *el) in end_proc() argument 101 SkASSERT(strcmp(c->fName, el) == 0); in end_proc() 104 c->fName = dupstr(p->fAlloc, el, strlen(el)); in end_proc()
|
/external/bluetooth/glib/po/ |
D | es.po | 26 msgstr "Atributo inesperado «%s» para el elemento «%s»" 55 msgstr "Ya existe un marcador para el URI «%s»" 68 msgstr "No se encontró un marcador para el URI «%s»" 73 msgstr "Ningún tipo MIME definido en el marcador para la URI «%s»" 78 msgstr "No se ha definido ningún flag privado en el marcador para el URI «%s»" 83 msgstr "No se ha establecido ningún grupo en el marcador para el URI «%s»" 93 msgstr "Falló la expansión de la la linea ejecutable «%s» con el URI «%s»" 99 "La conversión desde el conjunto de caracteres «%s» a «%s» no está soportada" 104 msgstr "No se pudo abrir el conversor de «%s» a «%s»" 121 msgstr "Hay una secuencia parcial de caracteres en el final de la entrada" [all …]
|
D | ca@valencia.po | 88 "No hi ha cap aplicació amb el nom «%s» que haja registrat l'adreça d'interés «%" 104 msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»" 127 msgstr "No es pot convertir el «fallback» «%s» al joc de codis «%s»" 166 msgstr "S'ha produït un error en obrir el directori «%s»: %s" 171 msgstr "No s'ha pogut assignar %lu bytes per a llegir el fitxer «%s»" 176 msgstr "S'ha produït un error en llegir el fitxer «%s»: %s" 191 msgstr "No s'ha pogut obrir el fitxer «%s»: %s" 203 msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció fdopen(): %s" 209 "No s'ha pogut canviar el nom del fitxer «%s» a «%s»: ha fallat la funció " 215 msgstr "No s'ha pogut crear el fitxer «%s»: %s" [all …]
|
D | ca.po | 87 "No hi ha cap aplicació amb el nom «%s» que hagi registrat l'adreça d'interès «%" 103 msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»" 126 msgstr "No es pot convertir el «fallback» «%s» al joc de codis «%s»" 165 msgstr "S'ha produït un error en obrir el directori «%s»: %s" 170 msgstr "No s'ha pogut assignar %lu bytes per a llegir el fitxer «%s»" 175 msgstr "S'ha produït un error en llegir el fitxer «%s»: %s" 190 msgstr "No s'ha pogut obrir el fitxer «%s»: %s" 202 msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció fdopen(): %s" 208 "No s'ha pogut canviar el nom del fitxer «%s» a «%s»: ha fallat la funció " 214 msgstr "No s'ha pogut crear el fitxer «%s»: %s" [all …]
|
/external/e2fsprogs/lib/ext2fs/ |
D | tdb.c | 1340 struct tdb_transaction_el *el; in transaction_read() local 1343 for (el=tdb->transaction->elements_last;el;el=el->prev) { in transaction_read() 1346 if (off+len <= el->offset) { in transaction_read() 1349 if (off >= el->offset + el->length) { in transaction_read() 1355 if (off < el->offset) { in transaction_read() 1356 partial = el->offset - off; in transaction_read() 1364 if (off + len <= el->offset + el->length) { in transaction_read() 1367 partial = el->offset + el->length - off; in transaction_read() 1369 memcpy(buf, el->data + (off - el->offset), partial); in transaction_read() 1401 struct tdb_transaction_el *el, *best_el=NULL; in transaction_write() local [all …]
|
D | icount.c | 282 struct ext2_icount_el *el; in insert_icount_el() local 318 el = &icount->list[pos]; in insert_icount_el() 319 el->count = 0; in insert_icount_el() 320 el->ino = ino; in insert_icount_el() 321 icount->last_lookup = el; in insert_icount_el() 322 return el; in insert_icount_el() 403 struct ext2_icount_el *el; in set_inode_count() local 423 el = get_icount_el(icount, ino, 1); in set_inode_count() 424 if (!el) in set_inode_count() 427 el->count = count; in set_inode_count() [all …]
|
/external/icu4c/samples/ufortune/resources/ |
D | es.txt | 31 "El hombre todavía puede apagar el ordenador. Sin embargo, tendremos que esforzarnos mucho para con… 34 "El ordenador ha sido hasta ahora el producto más genial de la vagancia humana. 37 "La página WEB es el soporte interactivo ideal para ofrecer un servicio, facilitar información, hac… 40 "Todavía hay mucha gente que ofrece contenidos por el mero placer de saber que la información puede… 46 "En el futuro no se usará MODEM para acceder a Internet. 49 "En el año 2005 los chips serán tan baratos que los encontraremos en todas partes: la nevera, la la… 58 "No pensábamos en el negocio, sino en Internet como una forma de comunicación global. 64 "Sueter ke mis mesages pashan po el coretor otójraf 94 … dieciséis kilómetros de longitud, a la que los hombres llamaban Multivac, el más complejo ordenad… 100 "Si debbuging es el proceso de eliminar errores, entonces la programación debe ser el proceso de po… [all …]
|
/external/icu4c/common/ |
D | servnotf.cpp | 53 const EventListener* el = (const EventListener*)(listeners->elementAt(i)); in addListener() local 54 if (l == el) { in addListener() 85 const EventListener* el = (const EventListener*)listeners->elementAt(i); in removeListener() local 86 if (l == el) { in removeListener() 107 EventListener* el = (EventListener*)listeners->elementAt(i); in notifyChanged() local 108 notifyListener(*el); in notifyChanged()
|
D | rbbistbl.cpp | 72 RBBISymbolTableEntry *el; in lookup() local 79 el = (RBBISymbolTableEntry *)uhash_get(fHashTable, &s); in lookup() 80 if (el == NULL) { in lookup() 84 varRefNode = el->val; in lookup() 169 RBBISymbolTableEntry *el; in lookupNode() local 171 el = (RBBISymbolTableEntry *)uhash_get(fHashTable, &key); in lookupNode() 172 if (el != NULL) { in lookupNode() 173 retNode = el->val; in lookupNode()
|
D | caniter.cpp | 293 int32_t el = -1; in permute() local 317 ne = subpermute.nextElement(el); in permute() 329 ne = subpermute.nextElement(el); in permute() 358 int32_t el = -1; in getEquivalents() local 360 ne = basic.nextElement(el); in getEquivalents() 391 ne = basic.nextElement(el); in getEquivalents() 415 el = -1; in getEquivalents() 416 ne = result.nextElement(el); in getEquivalents() 419 ne = result.nextElement(el); in getEquivalents() 461 int32_t el = -1; in getEquivalents2() local [all …]
|
/external/icu4c/test/intltest/ |
D | dadrcoll.cpp | 84 DataDrivenCollatorTest::setTestSequence(const UnicodeString &setSequence, SeqElement &el) { in setTestSequence() argument 86 return getNextInSequence(el); in setTestSequence() 91 DataDrivenCollatorTest::getNextInSequence(SeqElement &el) { in getNextInSequence() argument 92 el.source.truncate(0); in getNextInSequence() 107 el.relation = Collator::LESS; in getNextInSequence() 111 el.relation = Collator::EQUAL; in getNextInSequence() 115 el.relation = Collator::GREATER; in getNextInSequence() 127 el.source.append(currChar); in getNextInSequence() 137 el.source.append(currChar); in getNextInSequence()
|
/external/icu4c/tools/toolutil/ |
D | xmlparser.cpp | 374 UXMLElement *el = root; in parse() local 387 el->fChildren.addElement(t, status); in parse() 388 t->fParent = el; in parse() 389 fElementStack.push(el, status); in parse() 390 el = t; in parse() 403 el->fChildren.addElement(s.clone(), status); in parse() 425 if (name != *el->fName) { in parse() 431 el = NULL; in parse() 434 el = (UXMLElement *)fElementStack.pop(); in parse() 441 el->fChildren.addElement(t, status); in parse() [all …]
|
/external/bluetooth/bluez/common/ |
D | sdp-xml.c | 762 sdp_data_t *sdp_xml_parse_datatype(const char *el, struct sdp_xml_data *elem, in sdp_xml_parse_datatype() argument 767 if (!strcmp(el, "boolean")) in sdp_xml_parse_datatype() 769 else if (!strcmp(el, "uint8")) in sdp_xml_parse_datatype() 771 else if (!strcmp(el, "uint16")) in sdp_xml_parse_datatype() 773 else if (!strcmp(el, "uint32")) in sdp_xml_parse_datatype() 775 else if (!strcmp(el, "uint64")) in sdp_xml_parse_datatype() 777 else if (!strcmp(el, "uint128")) in sdp_xml_parse_datatype() 779 else if (!strcmp(el, "int8")) in sdp_xml_parse_datatype() 781 else if (!strcmp(el, "int16")) in sdp_xml_parse_datatype() 783 else if (!strcmp(el, "int32")) in sdp_xml_parse_datatype() [all …]
|
/external/icu4c/data/coll/ |
D | el.txt | 6 // * Source File:<path>/common/collation/el.xml 10 * ICU <specials> source: <path>/xml/collation/el.xml 12 el{
|
/external/webkit/SunSpider/tests/parse-only/ |
D | mootools-1.2.2-core-nc.js | 1374 var el = $.element(elements[i], !options.cash); 1376 if (uniques[el.uid]) continue; 1377 uniques[el.uid] = true; 1379 returned.push(el); 1429 $: function(el, nocash){ argument 1430 if (el && el.$family && el.uid) return el; 1431 var type = $type(el); 1432 return ($[type]) ? $[type](el, nocash, this.document) : null; 1464 $.element = function(el, nocash){ argument 1465 $uid(el); [all …]
|
/external/expat/examples/ |
D | outline.c | 45 start(void *data, const char *el, const char **attr) in start() argument 52 printf("%s", el); in start() 63 end(void *data, const char *el) in end() argument
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | partition.h | 182 for (Element* el = classes_[new_class]; el; el = el->next) in SplitRefine() local 183 class_index_[el->value] = new_class; in SplitRefine()
|