Lines Matching refs:doc
77 xmlDocPtr doc ; in main() local
95 doc = NULL ; in main()
131 doc = xmlParseFile( argv[2] ) ; in main()
132 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
138 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
146 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
148 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
164 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
170 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
192 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
338 xmlDocDump( dstFile, doc ) ; in main()
347 if( doc != NULL ) in main()
348 xmlFreeDoc( doc ) ; in main()