Lines Matching refs:doc
289 xmlDocPtr doc;
293 doc = xmlReadMemory(cpl_doc, strlen(cpl_doc), NULL, NULL, 0);
294 if (doc == NULL) {
299 ret = ff_imf_parse_cpl_from_xml_dom(doc, &cpl);
300 xmlFreeDoc(doc);
343 xmlDocPtr doc;
347 doc = xmlReadMemory(cpl_bad_doc, strlen(cpl_bad_doc), NULL, NULL, 0);
348 if (doc == NULL) {
353 ret = ff_imf_parse_cpl_from_xml_dom(doc, &cpl);
354 xmlFreeDoc(doc);
406 xmlDoc *doc;
409 doc = xmlReadMemory(asset_map_doc, strlen(asset_map_doc), NULL, NULL, 0);
410 if (doc == NULL) {
419 ret = parse_imf_asset_map_from_xml_dom(NULL, doc, &asset_locator_map, doc->name);
443 xmlFreeDoc(doc);