/external/libxml2/include/libxml/ |
dict.h | 43 xmlDictLookup (xmlDictPtr dict,
|
/external/libxslt/libxslt/ |
attributes.c | 255 list->set = xmlDictLookup(style->dict, old->set, -1); 257 list->ns = xmlDictLookup(style->dict, old->ns, -1); 262 cur->next->set = xmlDictLookup(style->dict, old->set, -1); 264 cur->next->ns = xmlDictLookup(style->dict, old->ns, -1); 420 curval = xmlDictLookup(style->dict, curval, endval - curval); 822 nsName = xmlDictLookup(ctxt->dict, BAD_CAST tmpNsName, -1); 1081 curstr = xmlDictLookup(ctxt->dict, curstr, endstr - curstr);
|
templates.c | 442 ret = xmlDictLookup(style->dict, expr, -1); 498 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); 500 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); 671 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); 673 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0);
|
variables.c | 658 name = xmlDictLookup(ctxt->dict, name, -1); 660 nameURI = xmlDictLookup(ctxt->dict, nameURI, -1); [all...] |
xsltutils.c | 111 ret = xmlDictLookup(style->dict, BAD_CAST "", 0); 113 ret = xmlDictLookup(style->dict, tmp, -1); 140 return(xmlDictLookup(style->dict, 745 return(xmlDictLookup(dict, name, -1)); 747 if (name[len] == 0) return(xmlDictLookup(dict, name, -1)); 748 *prefix = xmlDictLookup(dict, name, len); 749 ret = xmlDictLookup(dict, &name[len + 1], -1); 881 *name = xmlDictLookup(style->dict, &qname[4], -1); 902 *name = xmlDictLookup(style->dict, (*name)+len+1, -1); [all...] |
preproc.c | 749 comp->select = xmlDictLookup(style->dict, BAD_CAST ".", 1); 936 comp->ns = xmlDictLookup(style->dict, ns->href, -1); 1057 comp->ns = xmlDictLookup(style->dict, ns->href, -1); [all...] |
xslt.c | [all...] |
pattern.c | [all...] |
transform.c | 1054 (xmlChar *) xmlDictLookup(target->doc->dict, [all...] |
/external/libxml2/ |
hash.c | 501 name = xmlDictLookup(table->dict, name, -1); 506 name2 = xmlDictLookup(table->dict, name2, -1); 511 name3 = xmlDictLookup(table->dict, name3, -1); 617 name = xmlDictLookup(table->dict, name, -1); 622 name2 = xmlDictLookup(table->dict, name2, -1); 627 name3 = xmlDictLookup(table->dict, name3, -1);
|
entities.c | 172 ret->name = xmlDictLookup(dict, name, -1); 174 ret->ExternalID = xmlDictLookup(dict, ExternalID, -1); 176 ret->SystemID = xmlDictLookup(dict, SystemID, -1); 182 xmlDictLookup(dict, content, ret->length);
|
schematron.c | 606 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1); 830 xmlDictLookup(ctxt->dict, ns, -1); 832 xmlDictLookup(ctxt->dict, prefix, -1); 1112 ctxt->URL = xmlDictLookup(ctxt->dict, BAD_CAST "in_memory_buffer", -1); 1160 ret->title = xmlDictLookup(ret->dict, title, -1); [all...] |
parser.c | 975 ctxt->str_xml = xmlDictLookup(ctxt->dict, BAD_CAST "xml", 3); 976 ctxt->str_xmlns = xmlDictLookup(ctxt->dict, BAD_CAST "xmlns", 5); 977 ctxt->str_xml_ns = xmlDictLookup(ctxt->dict, XML_XML_NAMESPACE, 36); 1129 name = xmlDictLookup(ctxt->dict, fullname, -1); 1132 name = xmlDictLookup(ctxt->dict, name, -1); 1133 prefix = xmlDictLookup(ctxt->dict, fullname, len); [all...] |
pattern.c | 81 r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \ 769 ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q); 788 ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q); 839 ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q); 877 ret = (xmlChar *) xmlDictLookup(ctxt->dict, q, cur - q); [all...] |
valid.c | 971 ret->name = xmlDictLookup(dict, name, -1); 977 ret->prefix = xmlDictLookup(dict, name, l); 978 ret->name = xmlDictLookup(dict, tmp, -1); 1029 ret->name = xmlDictLookup(dict, cur->name, -1); 1036 ret->prefix = xmlDictLookup(dict, cur->prefix, -1); 1059 tmp->name = xmlDictLookup(dict, cur->name, -1); 1066 tmp->prefix = xmlDictLookup(dict, cur->prefix, -1); [all...] |
dict.c | 715 * xmlDictLookup: 725 xmlDictLookup(xmlDictPtr dict, const xmlChar *name, int len) { 970 return(xmlDictLookup(dict, name, -1));
|
tree.c | 1045 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \ 1062 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \ [all...] |
xmlschemas.c | [all...] |
HTMLparser.c | [all...] |
xmlreader.c | 191 #define CONSTSTR(str) xmlDictLookup(reader->dict, (str), -1) [all...] |
debugXML.c | 372 (node->name == xmlDictLookup(ctxt->dict, BAD_CAST "nbktext", [all...] |
elfgcchack.h | [all...] |
xmlregexp.c | [all...] |
xpath.c | 748 (void *)xmlDictLookup(comp->dict, value4, -1); 754 (void *)xmlDictLookup(comp->dict, value5, -1); [all...] |
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParserLibxml2.cpp | 530 parser->str_xml = xmlDictLookup(parser->dict, BAD_CAST "xml", 3); 531 parser->str_xmlns = xmlDictLookup(parser->dict, BAD_CAST "xmlns", 5); 532 parser->str_xml_ns = xmlDictLookup(parser->dict, XML_XML_NAMESPACE, 36); [all...] |