Lines Matching refs:doc
72 xmlDocPtr doc = NULL ; in main() local
116 doc = xmlParseFile( argv[1] ) ; in main()
117 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
123 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
130 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
132 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
148 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
154 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
176 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
331 if( doc != NULL ) in main()
332 xmlFreeDoc( doc ) ; in main()