Searched refs:xNodeList (Results 1 – 7 of 7) sorted by relevance
/aoo41x/main/unoxml/qa/complex/unoxml/ |
H A D | DOMTest.java | 249 0 == xNodeList.getLength()); in testXDocument() 256 0 == xNodeList.getLength()); in testXDocument() 280 2 == xNodeList.getLength()); in testXDocument() 282 xElemFooNs, xNodeList.item(0)); in testXDocument() 284 xElemFoo, xNodeList.item(1)); in testXDocument() 291 1 == xNodeList.getLength()); in testXDocument() 789 0 == xNodeList.getLength()); in testXElement() 796 0 == xNodeList.getLength()); in testXElement() 805 2 == xNodeList.getLength()); in testXElement() 807 xElemFoo, xNodeList.item(0)); in testXElement() [all …]
|
/aoo41x/main/extensions/source/update/check/ |
H A D | updateprotocol.cxx | 153 uno::Reference< xml::dom::XNodeList > xNodeList; in checkForUpdates() local 155 xNodeList = xXPath->selectNodeList(xNode, aXPathExpression in checkForUpdates() 166 sal_Int32 i, imax = xNodeList->getLength(); in checkForUpdates() 169 uno::Reference< xml::dom::XNode > xNode2( xNodeList->item(i) ); in checkForUpdates() 206 xNodeList = xXPath->selectNodeList(xNode, aXPathExpression in checkForUpdates() 211 imax = xNodeList->getLength(); in checkForUpdates() 214 … uno::Reference< xml::dom::XElement > xRelNote(xNodeList->item(i), uno::UNO_QUERY); in checkForUpdates()
|
/aoo41x/main/forms/source/xforms/ |
H A D | pathexpression.cxx | 120 Reference<XNodeList> xNodeList = mxResult->getNodeList(); in evaluate() local 121 OSL_ENSURE( xNodeList.is(), "empty object (instead of empty list)" ); in evaluate() 122 sal_Int32 nLength = xNodeList.is() ? xNodeList->getLength() : 0; in evaluate() 124 maNodes.push_back( xNodeList->item( n ) ); in evaluate()
|
H A D | model_ui.cxx | 725 Reference<XNodeList> xNodeList = pBinding->getXNodeList(); in getBindingForNode() local 727 sal_Int32 nNodes = xNodeList.is() ? xNodeList->getLength() : 0; in getBindingForNode() 728 if( nNodes > 0 && xNodeList->item( 0 ) == xNode ) in getBindingForNode()
|
/aoo41x/main/extensions/source/update/feed/ |
H A D | updatefeed.cxx | 234 UpdateInformationEnumeration(const uno::Reference< xml::dom::XNodeList >& xNodeList, in UpdateInformationEnumeration() argument 237 m_xNodeList(xNodeList), in UpdateInformationEnumeration() 238 m_nNodes(xNodeList.is() ? xNodeList->getLength() : 0), in UpdateInformationEnumeration() 633 uno::Reference< xml::dom::XNodeList > xNodeList; in getUpdateInformationEnumeration() local 635 xNodeList = m_xXPathAPI->selectNodeList(xDocument.get(), in getUpdateInformationEnumeration() 641 return new UpdateInformationEnumeration(xNodeList, this); in getUpdateInformationEnumeration()
|
/aoo41x/main/unoxml/source/dom/ |
H A D | node.cxx | 439 Reference< XNodeList > const xNodeList(new CChildList(this, m_rMutex)); in getChildNodes() local 440 return xNodeList; in getChildNodes()
|
/aoo41x/main/svx/source/form/ |
H A D | datanavi.cxx | 380 Reference< css::xml::dom::XNodeList > xNodeList = _xNode->getChildNodes(); in AddChildren() local 381 if ( xNodeList.is() ) in AddChildren() 384 sal_Int32 i, nNodeCount = xNodeList->getLength(); in AddChildren() 387 Reference< css::xml::dom::XNode > xChild = xNodeList->item(i); in AddChildren()
|
Completed in 65 milliseconds