Home
last modified time | relevance | path

Searched refs:copyTxt (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/libxslt/libxslt/
Dattributes.c932 xmlNodePtr copyTxt; in xsltAttributeInternal() local
947 copyTxt = xmlNewText(NULL); in xsltAttributeInternal()
948 if (copyTxt == NULL) /* TODO: report error */ in xsltAttributeInternal()
954 copyTxt->content = inst->children->content; in xsltAttributeInternal()
961 copyTxt->name = xmlStringTextNoenc; in xsltAttributeInternal()
966 copyTxt = xmlNewText(inst->children->content); in xsltAttributeInternal()
967 if (copyTxt == NULL) /* TODO: report error */ in xsltAttributeInternal()
970 attr->children = attr->last = copyTxt; in xsltAttributeInternal()
971 copyTxt->parent = (xmlNodePtr) attr; in xsltAttributeInternal()
972 copyTxt->doc = attr->doc; in xsltAttributeInternal()
[all …]