Lines Matching refs:document
3638 xmlDocPtr document; in lxml_get_bundle_file() local
3666 if ((document = xmlReadFile(filename, NULL, 0)) == NULL) { in lxml_get_bundle_file()
3671 document->name = strdup(filename); in lxml_get_bundle_file()
3676 if ((dtd = xmlGetIntSubset(document)) == NULL) { in lxml_get_bundle_file()
3684 dtdpath = (char *)document->intSubset->SystemID; in lxml_get_bundle_file()
3692 if ((cursor = xmlDocGetRootElement(document)) == NULL) { in lxml_get_bundle_file()
3694 xmlFreeDoc(document); in lxml_get_bundle_file()
3700 xmlFreeDoc(document); in lxml_get_bundle_file()
3713 if (document->extSubset != NULL) in lxml_get_bundle_file()
3714 xmlFreeDtd(document->extSubset); in lxml_get_bundle_file()
3716 document->extSubset = dtd; in lxml_get_bundle_file()
3719 if (xmlXIncludeProcessFlags(document, XML_PARSE_XINCLUDE) == -1) { in lxml_get_bundle_file()
3732 r = xmlValidateDocument(vcp, document); in lxml_get_bundle_file()
3738 xmlFreeDoc(document); in lxml_get_bundle_file()
3749 xmlFreeDoc(document); in lxml_get_bundle_file()