Home
last modified time | relevance | path

Searched refs:nodeList (Results 1 – 10 of 10) sorted by relevance

/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DOfficeDocument.java539 NodeList nodeList; in read() local
549 nodeList= newDoc.getElementsByTagName(TAG_OFFICE_FONT_DECLS); in read()
550 if (nodeList.getLength()>0){ in read()
551 tmpNode = contentDoc.importNode(nodeList.item(0),true); in read()
555 nodeList= newDoc.getElementsByTagName(TAG_OFFICE_AUTOMATIC_STYLES); in read()
556 if (nodeList.getLength()>0){ in read()
557 tmpNode = contentDoc.importNode(nodeList.item(0),true); in read()
561 nodeList= newDoc.getElementsByTagName(TAG_OFFICE_BODY); in read()
562 if (nodeList.getLength()>0){ in read()
563 tmpNode = contentDoc.importNode(nodeList.item(0),true); in read()
[all …]
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DSxcDocumentSerializer.java153 NodeList nodeList = node.getChildNodes(); in traverseSettings() local
154 int len = nodeList.getLength(); in traverseSettings()
156 Node child = nodeList.item(i); in traverseSettings()
230 NodeList nodeList = node.getChildNodes(); in traverseBody() local
231 int len = nodeList.getLength(); in traverseBody()
234 Node searchNode = nodeList.item(i); in traverseBody()
251 Node child = nodeList.item(i); in traverseBody()
288 NodeList nodeList = node.getChildNodes(); in traverseNamedExpressions() local
289 int len = nodeList.getLength(); in traverseNamedExpressions()
292 Node child = nodeList.item(i); in traverseNamedExpressions()
[all …]
H A DBookSettings.java179 NodeList nodeList = root.getChildNodes(); in readNode() local
180 int len = nodeList.getLength(); in readNode()
182 Node child = nodeList.item(i); in readNode()
H A DSheetSettings.java335 NodeList nodeList = root.getChildNodes(); in readNode() local
336 int len = nodeList.getLength(); in readNode()
338 Node child = nodeList.item(i); in readNode()
/AOO42X/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DDocumentSerializerImpl.java149 NodeList nodeList = node.getChildNodes(); in traverseBody() local
150 int len = nodeList.getLength(); in traverseBody()
153 Node child = nodeList.item(i); in traverseBody()
214 NodeList nodeList = node.getChildNodes(); in traverseParaContents() local
215 int len = nodeList.getLength(); in traverseParaContents()
219 Node child = nodeList.item(i); in traverseParaContents()
390 NodeList nodeList = node.getChildNodes(); in traverseList() local
391 int len = nodeList.getLength(); in traverseList()
395 Node child = nodeList.item(i); in traverseList()
435 NodeList nodeList = node.getChildNodes(); in traverseListHeader() local
[all …]
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/xslt/
H A DDocumentSerializerImpl.java147 NodeList nodeList; in serialize() local
151 nodeList= metaDoc.getElementsByTagName(TAG_OFFICE_META); in serialize()
152 if (nodeList.getLength()>0){ in serialize()
153 tmpNode = newDoc.importNode(nodeList.item(0),true); in serialize()
157 nodeList= styleDoc.getElementsByTagName(TAG_OFFICE_STYLES); in serialize()
158 if (nodeList.getLength()>0){ in serialize()
159 tmpNode = newDoc.importNode(nodeList.item(0),true); in serialize()
163 nodeList= domDoc.getElementsByTagName(TAG_OFFICE_AUTOMATIC_STYLES); in serialize()
164 if (nodeList.getLength()>0){ in serialize()
165 tmpNode = newDoc.importNode(nodeList.item(0),true); in serialize()
[all …]
/AOO42X/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DDocumentSerializerImpl.java185 NodeList nodeList = node.getChildNodes(); in traverseBody() local
186 int len = nodeList.getLength(); in traverseBody()
190 Node child = nodeList.item(i); in traverseBody()
271 NodeList nodeList = node.getChildNodes(); in traverseParaContents() local
272 int nChildren = nodeList.getLength(); in traverseParaContents()
275 Node child = nodeList.item(i); in traverseParaContents()
383 NodeList nodeList = node.getChildNodes(); in traverseList() local
384 int len = nodeList.getLength(); in traverseList()
388 Node child = nodeList.item(i); in traverseList()
428 NodeList nodeList = node.getChildNodes(); in traverseListHeader() local
[all …]
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/merger/diff/
H A DNodeIterator.java55 private List nodeList = null; field in NodeIterator
69 nodeList = new Vector(); in NodeIterator()
76 if (currentPosition < nodeList.size() - 1) { in next()
102 int size = nodeList.size(); in end()
115 if (currentPosition < 0 || currentPosition >= nodeList.size()) { in currentElement()
119 return nodeList.get(currentPosition); in currentElement()
124 return nodeList.size(); in elementCount()
145 nodeList = new Vector(); in refresh()
361 nodeList.add(node); in markTree()
367 NodeList nodeList = node.getChildNodes(); in markTree() local
[all …]
/AOO42X/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityModel.java46 protected java.util.Hashtable nodeList; field in AccessibilityModel
53 nodeList = new java.util.Hashtable(); in AccessibilityModel()
69 nodeList.clear(); in setRoot()
110 nodeList.put(oid, new java.lang.ref.WeakReference(node)); in putNode()
123 (java.lang.ref.WeakReference) nodeList.get(oid); in findNode()
136 (java.lang.ref.WeakReference) nodeList.remove(oid); in removeNode()
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/
H A DXmlUtil.java75 NodeList nodeList = newNode.getChildNodes(); in cloneTree() local
76 int nodeListLen = nodeList.getLength(); in cloneTree()
79 Node newClonedChild = cloneNode(docNode, nodeList.item(i)); in cloneTree()
82 cloneTree(docNode, newClonedChild, nodeList.item(i)); in cloneTree()