Lines Matching refs:document
3663 xmlDocPtr document; in lxml_get_bundle_file() local
3691 if ((document = xmlReadFile(filename, NULL, 0)) == NULL) { in lxml_get_bundle_file()
3696 document->name = safe_strdup(filename); in lxml_get_bundle_file()
3701 if ((dtd = xmlGetIntSubset(document)) == NULL) { in lxml_get_bundle_file()
3709 dtdpath = (char *)document->intSubset->SystemID; in lxml_get_bundle_file()
3717 if ((cursor = xmlDocGetRootElement(document)) == NULL) { in lxml_get_bundle_file()
3719 xmlFreeDoc(document); in lxml_get_bundle_file()
3725 xmlFreeDoc(document); in lxml_get_bundle_file()
3738 if (document->extSubset != NULL) in lxml_get_bundle_file()
3739 xmlFreeDtd(document->extSubset); in lxml_get_bundle_file()
3741 document->extSubset = dtd; in lxml_get_bundle_file()
3744 if (xmlXIncludeProcessFlags(document, XML_PARSE_XINCLUDE) == -1) { in lxml_get_bundle_file()
3757 r = xmlValidateDocument(vcp, document); in lxml_get_bundle_file()
3763 xmlFreeDoc(document); in lxml_get_bundle_file()
3774 xmlFreeDoc(document); in lxml_get_bundle_file()