/external/libxml2/ |
D | xmlcatalog.c | 220 ret = xmlCatalogAdd(BAD_CAST argv[0], NULL, in usershell() 221 BAD_CAST argv[1]); in usershell() 223 ret = xmlCatalogAdd(BAD_CAST argv[0], BAD_CAST argv[1], in usershell() 224 BAD_CAST argv[2]); in usershell() 233 ret = xmlCatalogAdd(BAD_CAST argv[0], NULL, in usershell() 234 BAD_CAST argv[1]); in usershell() 236 ret = xmlCatalogAdd(BAD_CAST argv[0], BAD_CAST argv[1], in usershell() 237 BAD_CAST argv[2]); in usershell() 246 ret = xmlCatalogRemove(BAD_CAST argv[0]); in usershell() 255 ans = xmlCatalogResolve(BAD_CAST argv[0], in usershell() [all …]
|
D | HTMLtree.c | 62 if (xmlStrEqual(cur->name, BAD_CAST"html")) in htmlGetMetaEncoding() 64 if (xmlStrEqual(cur->name, BAD_CAST"head")) in htmlGetMetaEncoding() 66 if (xmlStrEqual(cur->name, BAD_CAST"meta")) in htmlGetMetaEncoding() 80 if (xmlStrEqual(cur->name, BAD_CAST"head")) in htmlGetMetaEncoding() 82 if (xmlStrEqual(cur->name, BAD_CAST"meta")) in htmlGetMetaEncoding() 98 if (xmlStrEqual(cur->name, BAD_CAST"meta")) { in htmlGetMetaEncoding() 110 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv")) in htmlGetMetaEncoding() 111 && (!xmlStrcasecmp(value, BAD_CAST"Content-Type"))) in htmlGetMetaEncoding() 114 && (!xmlStrcasecmp(attr->name, BAD_CAST"content"))) in htmlGetMetaEncoding() 128 encoding = xmlStrstr(content, BAD_CAST"charset="); in htmlGetMetaEncoding() [all …]
|
D | xlink.c | 42 #define XLINK_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xlink/namespace/") 43 #define XHTML_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xhtml/") 149 type = xmlGetNsProp(node, BAD_CAST"type", XLINK_NAMESPACE); in xlinkIsLink() 151 if (xmlStrEqual(type, BAD_CAST "simple")) { in xlinkIsLink() 153 } if (xmlStrEqual(type, BAD_CAST "extended")) { in xlinkIsLink() 154 role = xmlGetNsProp(node, BAD_CAST "role", XLINK_NAMESPACE); in xlinkIsLink() 160 if (xmlStrEqual(role, BAD_CAST"xlink:external-linkset")) in xlinkIsLink()
|
D | catalog.c | 556 node = xmlNewDocNode(doc, ns, BAD_CAST "nextCatalog", NULL); in xmlDumpXMLCatalogNode() 557 xmlSetProp(node, BAD_CAST "catalog", cur->value); in xmlDumpXMLCatalogNode() 563 node = xmlNewDocNode(doc, ns, BAD_CAST "group", NULL); in xmlDumpXMLCatalogNode() 564 xmlSetProp(node, BAD_CAST "id", cur->name); in xmlDumpXMLCatalogNode() 569 xmlSetNsProp(node, xns, BAD_CAST "base", in xmlDumpXMLCatalogNode() 576 xmlSetProp(node, BAD_CAST "prefer", BAD_CAST "public"); in xmlDumpXMLCatalogNode() 579 xmlSetProp(node, BAD_CAST "prefer", BAD_CAST "system"); in xmlDumpXMLCatalogNode() 586 node = xmlNewDocNode(doc, ns, BAD_CAST "public", NULL); in xmlDumpXMLCatalogNode() 587 xmlSetProp(node, BAD_CAST "publicId", cur->name); in xmlDumpXMLCatalogNode() 588 xmlSetProp(node, BAD_CAST "uri", cur->value); in xmlDumpXMLCatalogNode() [all …]
|
D | entities.c | 30 NULL, XML_ENTITY_DECL, BAD_CAST "lt", 32 BAD_CAST "<", BAD_CAST "<", 1, 37 NULL, XML_ENTITY_DECL, BAD_CAST "gt", 39 BAD_CAST ">", BAD_CAST ">", 1, 44 NULL, XML_ENTITY_DECL, BAD_CAST "amp", 46 BAD_CAST "&", BAD_CAST "&", 1, 51 NULL, XML_ENTITY_DECL, BAD_CAST "quot", 53 BAD_CAST "\"", BAD_CAST "\"", 1, 58 NULL, XML_ENTITY_DECL, BAD_CAST "apos", 60 BAD_CAST "'", BAD_CAST "'", 1, [all …]
|
D | xmlsave.c | 27 #define XHTML_STRICT_PUBLIC_ID BAD_CAST \ 29 #define XHTML_STRICT_SYSTEM_ID BAD_CAST \ 31 #define XHTML_FRAME_PUBLIC_ID BAD_CAST \ 33 #define XHTML_FRAME_SYSTEM_ID BAD_CAST \ 35 #define XHTML_TRANS_PUBLIC_ID BAD_CAST \ 37 #define XHTML_TRANS_SYSTEM_ID BAD_CAST \ 40 #define XHTML_NS_NAME BAD_CAST "http://www.w3.org/1999/xhtml" 443 xmlBufferAdd(buf->buffer, BAD_CAST "&", 1); in xmlAttrSerializeContent() 446 xmlBufferAdd(buf->buffer, BAD_CAST ";", 1); in xmlAttrSerializeContent() 541 if (xmlStrEqual(cur->prefix, BAD_CAST "xml")) in xmlNsDumpOutput() [all …]
|
D | xmlschemas.c | 1116 return(BAD_CAST "simple type definition"); in xmlSchemaItemTypeToStr() 1118 return(BAD_CAST "simple type definition"); in xmlSchemaItemTypeToStr() 1120 return(BAD_CAST "complex type definition"); in xmlSchemaItemTypeToStr() 1122 return(BAD_CAST "element declaration"); in xmlSchemaItemTypeToStr() 1124 return(BAD_CAST "attribute use"); in xmlSchemaItemTypeToStr() 1126 return(BAD_CAST "attribute declaration"); in xmlSchemaItemTypeToStr() 1128 return(BAD_CAST "model group definition"); in xmlSchemaItemTypeToStr() 1130 return(BAD_CAST "attribute group definition"); in xmlSchemaItemTypeToStr() 1132 return(BAD_CAST "notation declaration"); in xmlSchemaItemTypeToStr() 1134 return(BAD_CAST "model group (sequence)"); in xmlSchemaItemTypeToStr() [all …]
|
D | xmlIO.c | 890 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17)) { in xmlFileOpen_real() 896 } else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) { in xmlFileOpen_real() 902 } else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:/", 6)) { in xmlFileOpen_real() 972 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17)) in xmlFileOpenW() 978 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) { in xmlFileOpenW() 1155 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17)) in xmlGzfileOpen_real() 1161 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) { in xmlGzfileOpen_real() 1229 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17)) in xmlGzfileOpenW() 1235 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) { in xmlGzfileOpenW() 1351 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17)) { in xmlXzfileOpen_real() [all …]
|
D | uri.c | 1230 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xmlSaveUri() 1853 segment = xmlURIEscapeStr(BAD_CAST uri->scheme, BAD_CAST "+-."); in xmlURIEscape() 1856 ret = xmlStrcat(ret, BAD_CAST ":"); in xmlURIEscape() 1862 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape() 1864 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape() 1870 segment = xmlURIEscapeStr(BAD_CAST uri->user, BAD_CAST ";:&=+$,"); in xmlURIEscape() 1872 ret = xmlStrcat(ret,BAD_CAST "//"); in xmlURIEscape() 1874 ret = xmlStrcat(ret, BAD_CAST "@"); in xmlURIEscape() 1879 segment = xmlURIEscapeStr(BAD_CAST uri->server, BAD_CAST "/?;:@"); in xmlURIEscape() 1882 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape() [all …]
|
D | relaxng.c | 1541 name2 = xmlGetProp(tmp, BAD_CAST "name"); in xmlRelaxNGRemoveRedefine() 1559 (inc->doc->children->name, BAD_CAST "grammar")) { in xmlRelaxNGRemoveRedefine() 1561 href = xmlGetProp(tmp, BAD_CAST "href"); in xmlRelaxNGRemoveRedefine() 1653 if (xmlHasProp(root, BAD_CAST "ns") == NULL) { in xmlRelaxNGLoadInclude() 1654 xmlSetProp(root, BAD_CAST "ns", ns); in xmlRelaxNGLoadInclude() 1721 name = xmlGetProp(cur, BAD_CAST "name"); in xmlRelaxNGLoadInclude() 1984 if (xmlHasProp(root, BAD_CAST "ns") == NULL) { in xmlRelaxNGLoadExternalRef() 1985 xmlSetProp(root, BAD_CAST "ns", ns); in xmlRelaxNGLoadExternalRef() 2092 arg1 = BAD_CAST ""; in xmlRelaxNGGetErrorString() 2094 arg2 = BAD_CAST ""; in xmlRelaxNGGetErrorString() [all …]
|
D | HTMLparser.c | 166 if ((ctxt->html < 3) && (xmlStrEqual(value, BAD_CAST "head"))) in htmlnamePush() 168 if ((ctxt->html < 10) && (xmlStrEqual(value, BAD_CAST "body"))) in htmlnamePush() 376 cur = xmlStrcasestr(start, BAD_CAST "HTTP-EQUIV"); in htmlFindEncoding() 379 cur = xmlStrcasestr(cur, BAD_CAST "CONTENT"); in htmlFindEncoding() 382 cur = xmlStrcasestr(cur, BAD_CAST "CHARSET="); in htmlFindEncoding() 553 BAD_CAST buffer, NULL); in htmlCurrentChar() 1219 if (!xmlStrcasecmp(tag, BAD_CAST html40ElementTable[i].name)) in htmlTagLookup() 1268 if (xmlStrEqual(BAD_CAST * closed, newtag)) in htmlCheckAutoClose() 1275 if (xmlStrEqual(BAD_CAST htmlStartClose[i], oldtag)) { in htmlCheckAutoClose() 1374 ((xmlStrEqual(ctxt->name, BAD_CAST "head")) || in htmlAutoClose() [all …]
|
D | nanohttp.c | 729 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Content-Type:", 13)) { in xmlNanoHTTPScanAnswer() 744 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset="); in xmlNanoHTTPScanAnswer() 755 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"ContentType:", 12)) { in xmlNanoHTTPScanAnswer() 769 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset="); in xmlNanoHTTPScanAnswer() 780 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Location:", 9)) { in xmlNanoHTTPScanAnswer() 786 xmlChar *tmp_http = xmlStrdup(BAD_CAST "http://"); in xmlNanoHTTPScanAnswer() 794 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"WWW-Authenticate:", 17)) { in xmlNanoHTTPScanAnswer() 800 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Proxy-Authenticate:", 19)) { in xmlNanoHTTPScanAnswer() 807 } else if ( !xmlStrncasecmp( BAD_CAST line, BAD_CAST"Content-Encoding:", 17) ) { in xmlNanoHTTPScanAnswer() 810 if ( !xmlStrncasecmp( BAD_CAST cur, BAD_CAST"gzip", 4) ) { in xmlNanoHTTPScanAnswer() [all …]
|
D | xmlschemastypes.c | 899 return (BAD_CAST val->value.str); in xmlSchemaValueGetAsString() 2144 value = BAD_CAST ""; in xmlSchemaValAtomicType() 3700 cur->value.str = xmlStrdup(BAD_CAST val->value.str); in xmlSchemaCopyValue() 3707 xmlStrdup(BAD_CAST val->value.qname.name); in xmlSchemaCopyValue() 3710 xmlStrdup(BAD_CAST val->value.qname.uri); in xmlSchemaCopyValue() 3715 cur->value.hex.str = xmlStrdup(BAD_CAST val->value.hex.str); in xmlSchemaCopyValue() 3721 xmlStrdup(BAD_CAST val->value.base64.str); in xmlSchemaCopyValue() 5670 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue() 5673 BAD_CAST xmlStrdup((const xmlChar *) val->value.str); in xmlSchemaGetCanonValue() 5677 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue() [all …]
|
D | c14n.c | 427 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix; in xmlC14NVisibleNsStackFind() 428 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href; in xmlC14NVisibleNsStackFind() 460 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix; in xmlExcC14NVisibleNsStackFind() 461 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href; in xmlExcC14NVisibleNsStackFind() 499 (xmlStrEqual(ns->prefix, BAD_CAST "xml")) && in xmlC14NIsXmlNs() 748 if (xmlStrEqual(prefix, BAD_CAST "#default") in xmlExcC14NProcessNamespacesAxis() 749 || xmlStrEqual(prefix, BAD_CAST "")) { in xmlExcC14NProcessNamespacesAxis() 1022 attr = xmlHasNsProp(cur, BAD_CAST "base", XML_XML_NAMESPACE); in xmlC14NFixupBaseAttr() 1037 tmp_str2 = xmlStrcat(tmp_str, BAD_CAST "/"); in xmlC14NFixupBaseAttr() 1070 if((res == NULL) || xmlStrEqual(res, BAD_CAST "")) { in xmlC14NFixupBaseAttr() [all …]
|
D | schematron.c | 39 #define SCT_OLD_NS BAD_CAST "http://www.ascc.net/xml/schematron" 41 #define XML_SCHEMATRON_NS BAD_CAST "http://purl.oclc.org/dsdl/schematron" 861 context = xmlGetNoNsProp(rule, BAD_CAST "context"); in xmlSchematronParseRule() 889 test = xmlGetNoNsProp(cur, BAD_CAST "test"); in xmlSchematronParseRule() 912 test = xmlGetNoNsProp(cur, BAD_CAST "test"); in xmlSchematronParseRule() 966 id = xmlGetNoNsProp(pat, BAD_CAST "id"); in xmlSchematronParsePattern() 968 id = xmlGetNoNsProp(pat, BAD_CAST "name"); in xmlSchematronParsePattern() 1019 href = xmlGetNoNsProp(cur, BAD_CAST "href"); 1111 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer"); in xmlSchematronParse() 1112 ctxt->URL = xmlDictLookup(ctxt->dict, BAD_CAST "in_memory_buffer", -1); in xmlSchematronParse() [all …]
|
D | xmlreader.c | 928 qname = xmlStrcat(qname, BAD_CAST ":"); in xmlTextReaderValidatePush() 1019 qname = xmlStrcat(qname, BAD_CAST ":"); in xmlTextReaderValidatePop() 2373 if (xmlStrEqual(name, BAD_CAST "xmlns")) { in xmlTextReaderGetAttribute() 2389 if (xmlStrEqual(prefix, BAD_CAST "xmlns")) { in xmlTextReaderGetAttribute() 2439 if (xmlStrEqual(namespaceURI, BAD_CAST "http://www.w3.org/2000/xmlns/")) { in xmlTextReaderGetAttributeNs() 2440 if (! xmlStrEqual(localName, BAD_CAST "xmlns")) { in xmlTextReaderGetAttributeNs() 2441 prefix = BAD_CAST localName; in xmlTextReaderGetAttributeNs() 2616 if (xmlStrEqual(name, BAD_CAST "xmlns")) { in xmlTextReaderMoveToAttribute() 2648 if (xmlStrEqual(prefix, BAD_CAST "xmlns")) { in xmlTextReaderMoveToAttribute() 2715 if (xmlStrEqual(namespaceURI, BAD_CAST "http://www.w3.org/2000/xmlns/")) { in xmlTextReaderMoveToAttributeNs() [all …]
|
D | parserInternals.c | 594 BAD_CAST buffer, NULL); in xmlNextChar() 760 BAD_CAST buffer, NULL); in xmlCurrentChar() 873 BAD_CAST buffer, NULL); in xmlStringCurrentChar() 1062 BAD_CAST "USC4 little endian", NULL); in xmlSwitchEncoding() 1067 BAD_CAST "USC4 big endian", NULL); in xmlSwitchEncoding() 1072 BAD_CAST "EBCDIC", NULL); in xmlSwitchEncoding() 1077 BAD_CAST "UCS4 2143", NULL); in xmlSwitchEncoding() 1082 BAD_CAST "UCS4 3412", NULL); in xmlSwitchEncoding() 1087 BAD_CAST "UCS2", NULL); in xmlSwitchEncoding() 1115 BAD_CAST "ISO-2022-JP", NULL); in xmlSwitchEncoding() [all …]
|
D | parser.c | 195 #define SAX_COMPAT_MODE BAD_CAST "SAX compatibility mode document" 1002 ctxt->str_xml = xmlDictLookup(ctxt->dict, BAD_CAST "xml", 3); in xmlDetectSAX2() 1003 ctxt->str_xmlns = xmlDictLookup(ctxt->dict, BAD_CAST "xmlns", 5); in xmlDetectSAX2() 1216 defaults->values[5 * defaults->nbAttrs + 4] = BAD_CAST "external"; in xmlAddDefAttrs() 2993 return(xmlStrndup(BAD_CAST "", 0)); in xmlSplitQName() 4774 ctxt->sax->comment(ctxt->userData, BAD_CAST ""); in xmlParseComment() 4872 if (xmlStrncmp(tmp, BAD_CAST"catalog", 7)) in xmlParseCatalogPI() 5263 BAD_CAST "fake", NULL, NULL); in xmlParseEntityDecl() 5337 BAD_CAST "fake", NULL, NULL); in xmlParseEntityDecl() 6776 ctxt->myDoc = xmlNewDoc(BAD_CAST "1.0"); in xmlParseExternalSubset() [all …]
|
/external/webkit/Source/WebCore/loader/archive/android/ |
D | WebArchiveAndroid.cpp | 44 static const xmlChar* const archiveTag = BAD_CAST "Archive"; 45 static const xmlChar* const archiveResourceTag = BAD_CAST "ArchiveResource"; 46 static const xmlChar* const mainResourceTag = BAD_CAST "mainResource"; 47 static const xmlChar* const subresourcesTag = BAD_CAST "subresources"; 48 static const xmlChar* const subframesTag = BAD_CAST "subframes"; 49 static const xmlChar* const urlFieldTag = BAD_CAST "url"; 50 static const xmlChar* const mimeFieldTag = BAD_CAST "mimeType"; 51 static const xmlChar* const encodingFieldTag = BAD_CAST "textEncoding"; 52 static const xmlChar* const frameFieldTag = BAD_CAST "frameName"; 53 static const xmlChar* const dataFieldTag = BAD_CAST "data"; [all …]
|
/external/chromium/chrome/common/ |
D | libxml_utils.h | 142 BAD_CAST element_name.c_str()) >= 0; in StartElement() 154 BAD_CAST attribute_name.c_str(), in AddAttribute() 155 BAD_CAST attribute_value.c_str()) >= 0; in AddAttribute() 164 BAD_CAST element_name.c_str(), in WriteElement() 165 BAD_CAST content.c_str()) >= 0; in WriteElement()
|
/external/libxslt/libxslt/ |
D | preproc.c | 88 ((!xmlStrEqual(parent->name, BAD_CAST "stylesheet")) && in xsltCheckTopLevelElement() 89 (!xmlStrEqual(parent->name, BAD_CAST "transform")))) { in xsltCheckTopLevelElement() 130 ((xmlStrEqual(parent->name, BAD_CAST "template")) || in xsltCheckInstructionElement() 131 (xmlStrEqual(parent->name, BAD_CAST "param")) || in xsltCheckInstructionElement() 132 (xmlStrEqual(parent->name, BAD_CAST "attribute")) || in xsltCheckInstructionElement() 133 (xmlStrEqual(parent->name, BAD_CAST "variable")))) { in xsltCheckInstructionElement() 749 comp->select = xmlDictLookup(style->dict, BAD_CAST ".", 1); in xsltSortComp() 1367 xsltGetQNameProperty(style, inst, BAD_CAST "name", in xsltWithParamComp() 1434 comp->numdata.format = xmlDictLookup(style->dict, BAD_CAST "" , 0); in xsltNumberComp() 1446 if (xmlStrEqual(prop, BAD_CAST("single")) || in xsltNumberComp() [all …]
|
D | xslt.c | 286 self->digit = xmlStrdup(BAD_CAST("#")); in xsltNewDecimalFormat() 287 self->patternSeparator = xmlStrdup(BAD_CAST(";")); in xsltNewDecimalFormat() 288 self->decimalPoint = xmlStrdup(BAD_CAST(".")); in xsltNewDecimalFormat() 289 self->grouping = xmlStrdup(BAD_CAST(",")); in xsltNewDecimalFormat() 290 self->percent = xmlStrdup(BAD_CAST("%")); in xsltNewDecimalFormat() 291 self->permille = xmlStrdup(BAD_CAST(permille)); in xsltNewDecimalFormat() 292 self->zeroDigit = xmlStrdup(BAD_CAST("0")); in xsltNewDecimalFormat() 293 self->minusSign = xmlStrdup(BAD_CAST("-")); in xsltNewDecimalFormat() 294 self->infinity = xmlStrdup(BAD_CAST("Infinity")); in xsltNewDecimalFormat() 295 self->noNumber = xmlStrdup(BAD_CAST("NaN")); in xsltNewDecimalFormat() [all …]
|
D | security.c | 385 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xsltCheckWrite() 447 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xsltCheckRead()
|
D | xsltutils.c | 111 ret = xmlDictLookup(style->dict, BAD_CAST "", 0); in xsltGetCNsProp() 2059 ret = xmlNewDoc(BAD_CAST "1.0"); in xsltGetProfileInformation() 2060 root = xmlNewDocNode(ret, NULL, BAD_CAST "profile", NULL); in xsltGetProfileInformation() 2064 child = xmlNewChild(root, NULL, BAD_CAST "template", NULL); in xsltGetProfileInformation() 2066 xmlSetProp(child, BAD_CAST "rank", BAD_CAST buf); in xsltGetProfileInformation() 2067 xmlSetProp(child, BAD_CAST "match", BAD_CAST templates[i]->match); in xsltGetProfileInformation() 2068 xmlSetProp(child, BAD_CAST "name", BAD_CAST templates[i]->name); in xsltGetProfileInformation() 2069 xmlSetProp(child, BAD_CAST "mode", BAD_CAST templates[i]->mode); in xsltGetProfileInformation() 2072 xmlSetProp(child, BAD_CAST "calls", BAD_CAST buf); in xsltGetProfileInformation() 2075 xmlSetProp(child, BAD_CAST "time", BAD_CAST buf); in xsltGetProfileInformation() [all …]
|
D | templates.c | 498 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); in xsltAttrTemplateProcess() 500 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); in xsltAttrTemplateProcess() 569 text->content = xmlStrdup(BAD_CAST ""); in xsltAttrTemplateProcess() 671 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); in xsltAttrListTemplateProcess() 673 value = xmlDictLookup(ctxt->dict, BAD_CAST "", 0); in xsltAttrListTemplateProcess() 753 text->content = xmlStrdup(BAD_CAST ""); in xsltAttrListTemplateProcess()
|