Lines Matching refs:xNode
295 void Model::addMIP( void* pTag, const XNode_t& xNode, const MIP& rMIP ) in addMIP() argument
298 OSL_ENSURE( xNode.is(), "no node" ); in addMIP()
300 MIPs_t::value_type aValue( xNode, ::std::pair<void*,MIP>( pTag, rMIP ) ); in addMIP()
322 MIP Model::queryMIP( const XNode_t& xNode ) const in queryMIP()
328 for( XNode_t xCurrent = xNode; in queryMIP()
340 if( xCurrent == xNode ) in queryMIP()
389 XNode_t xNode( xConstNode ); in setSimpleContent() local
391 switch( xNode->getNodeType() ) in setSimpleContent()
397 for( xChild = xNode->getFirstChild(); in setSimpleContent()
406 xNode->getOwnerDocument()->createTextNode( OUString() ), in setSimpleContent()
408 xNode->appendChild( xChild ); in setSimpleContent()
410 xNode = xChild; in setSimpleContent()
412 OSL_ENSURE( xNode.is() && in setSimpleContent()
413 xNode->getNodeType() == NodeType_TEXT_NODE, in setSimpleContent()
422 if( xNode->getNodeValue() != sValue ) in setSimpleContent()
425 xNode->setNodeValue( sValue ); in setSimpleContent()