Home
last modified time | relevance | path

Searched refs:nodes (Results 1 – 25 of 125) sorted by relevance

12345

/trunk/main/solenv/bin/modules/installer/
H A Dconfiguration.pm59 $nodes = $2;
95 if ( $nodes =~ /^(.*\[\')(.*\/.*)(\'\].*)$/ )
102 $nodes = $first . $second . $third;
105 while ( $nodes =~ /\// )
107 if ($nodes =~ /^\s*(.*?)\/(.*)\s*$/ )
110 $nodes = $2;
148 if ( $nodes =~ /^.*\[\'(.*)\'\].*$/ )
150 $nodes = $1;
157 if (($nodes eq "Name") || ($nodes eq "Title")) # isocodes below "Name" or "Title"
163 if ( $nodes eq "Name" ) { $oneconfig->{'isname'} = 1; }
[all …]
/trunk/main/offapi/com/sun/star/awt/tree/
H A DXTreeControl.idl54 /** This interfaces provides access to the selection of tree nodes for this control.
75 <FALSE/> if <var>Node</var> or at least one of its parent nodes are collapsed,
76 <TRUE/> if <var>Node</var> and all of its parent nodes are expanded.
90 <TRUE/> if <var>Node</var> or at least one of its parent nodes are collapsed,
91 <FALSE/> if <var>Node</var> and all of its parent nodes are expanded
100 <p>This includes expanding all parent nodes and scroll the control so this
110 if <var>Node</var>can't be made visible since at least one of the parent nodes are
176 before expanded non leaf nodes.
183 before collapsed non leaf nodes.
205 <p>If no nodes are currently viewable, or there is no model, returns null,
[all …]
H A DTreeControl.idl44 A node is visible when all parent nodes are expanded and the node itself is in the display area.
47 <p>The nodes are retrieved from a <type>XTreeDataModel</type>.
69 <h4>Adding child nodes on demand</h4>
70 <p>If you want to add child nodes to your tree on demand you can do the following.
81 be expanded and in that case add the missing child nodes. You can also veto the expansion or
H A DXTreeNode.idl56 /** Returns the number of child nodes. */
70 like a node that has child nodes, even if <member>getChildCount</member>
86 /** The URL for a graphic that is rendered to visualize expanded non leaf nodes.
91 /** The URL for a graphic that is rendered to visualize collapsed non leaf nodes.
H A DTreeDataModelEvent.idl51 /** contains the changed, added or removed nodes.
52 <p> All nodes must have <member>ParentNode</member> as parent. */
55 /** holds the parent node for changed, added or removed nodes.
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DDataSheet.java52 NodeList nodes = doc.getElementsByTagName("Workbook"); in DataSheet() local
53 if (nodes.getLength() > 0) { in DataSheet()
54 workBookEl = (Element) nodes.item(0); in DataSheet()
78 NodeList nodes = workBookEl.getElementsByTagName("Worksheet"); in getTableElement() local
79 for (int i = 0; i < nodes.getLength(); i++) { in getTableElement()
80 Element e = (Element) nodes.item(0); in getTableElement()
/trunk/main/desktop/test/deployment/options/
H A Dreadme.txt21 DO NOT show the Node in the OOo's options dialog, because it shows only nodes
28 leaves1.oxt: multiple ordered leaves under available nodes. The leaves Lables are
60 nodes2.oxt: Defines 3 nodes which use AllModules and which form an
61 ordered group. Every node defines also 3 nodes which have a determined order.
80 nodes3.oxt: Defines 3 nodes which are placed under different existing Modules.
81 The nodes and there leaves are ordered.
119 grouping of nodes.
163 The options dialog of the Extension Manager shall display only three nodes:
199 modules2.oxt: Same as modules1, except that the order of nodes and leaves
/trunk/main/xmerge/java/xmerge/src/main/resources/org/openoffice/xmerge/util/
H A Dresources.properties52 …=Cell node do not have only 1 child <text:p> nodes, will skip the merge of this node.Num of PARA c…
53 CELL_NODE_EXCEPTION2=Cell node have a non Element child nodes -
55 NOT_ELEM_NODE_ERROR=The compared nodes are not a Element Node
56 NOT_PARA_NODE_ERROR=The compared nodes are not a Paragraph or Heading node -
57 NOT_NODE_ERROR=The compared nodes are not a Node
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/actions/
H A DDeployParcelAction.java44 import org.openide.nodes.Node;
82 Node[] nodes = getActivatedNodes(); in getPopupPresenter()
84 (ParcelCookie)nodes[0].getCookie(ParcelCookie.class); in getPopupPresenter()
141 Node[] nodes = getActivatedNodes(); in deploy() local
143 (ParcelCookie)nodes[0].getCookie(ParcelCookie.class); in deploy()
/trunk/main/cui/source/inc/
H A Dscriptdlg.hxx142 ::com::sun::star::uno::Reference< ::com::sun::star::script::browse::XBrowseNode > nodes;
149 …::Reference< ::com::sun::star::frame::XModel >& entryModel) { nType = nT; nodes = entryNodes; load… in SFEntry()
150 SFEntry( const SFEntry& r ) { nType = r.nType; nodes = r.nodes; loaded = r.loaded; } in SFEntry()
152 …::star::uno::Reference< ::com::sun::star::script::browse::XBrowseNode > GetNode() { return nodes ;} in GetNode()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/loader/
H A DOfficeDocumentDataNode.java31 import org.openide.nodes.*;
36 import org.openoffice.netbeans.modules.office.nodes.OfficeDocumentChildren;
61 Node[] copies = NodeTransfer.nodes(t, NodeTransfer.COPY); in createPasteTypes()
77 Node[] moves = NodeTransfer.nodes(t, NodeTransfer.MOVE); in createPasteTypes()
H A DParcelFolder.java39 import org.openide.nodes.CookieSet;
40 import org.openide.nodes.Node;
41 import org.openide.nodes.PropertySupport;
42 import org.openide.nodes.Sheet;
/trunk/main/offapi/com/sun/star/xml/dom/
H A DXNode.idl50 #implementing the Node interface may have children. For example, Text nodes may not
51 have children, and adding children to such nodes results in a DOMException being raised.</p>
100 constructor for nodes.
216 Puts all Text nodes in the full depth of the sub-tree underneath this
217 Node, including attribute nodes, into a "normal" form where only structure
219 entity references) separates Text nodes, i.e., there are neither adjacent
220 Text nodes nor empty Text nodes.
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/nodes/
H A DScriptNode.java24 package org.openoffice.netbeans.modules.office.nodes;
29 import org.openide.nodes.*;
90 org.openide.nodes.Node.Property prop = null; in createSheet()
100 private org.openide.nodes.Node.Property getStringProperty(String name) { in getStringProperty()
/trunk/main/desktop/source/deployment/registry/help/
H A Ddp_helpbackenddb.cxx147 Reference<css::xml::dom::XNodeList> nodes = in getAllDataUrls() local
149 if (nodes.is()) in getAllDataUrls()
151 sal_Int32 length = nodes->getLength(); in getAllDataUrls()
153 listRet.push_back(nodes->item(i)->getNodeValue()); in getAllDataUrls()
/trunk/main/desktop/source/deployment/registry/configuration/
H A Ddp_configurationbackenddb.cxx149 Reference<css::xml::dom::XNodeList> nodes = in getAllDataUrls() local
151 if (nodes.is()) in getAllDataUrls()
153 sal_Int32 length = nodes->getLength(); in getAllDataUrls()
155 listRet.push_back(nodes->item(i)->getNodeValue()); in getAllDataUrls()
/trunk/main/scripting/source/provider/
H A DBrowseNodeFactoryImpl.cxx453 Sequence < Reference< browse::XBrowseNode > > nodes = in getChildNodes() local
455 for ( sal_Int32 i=0; i<nodes.getLength(); i++ ) in getChildNodes()
457 Reference< browse::XBrowseNode > xBrowseNode = nodes[ i ]; in getChildNodes()
561 Sequence < Reference< browse::XBrowseNode > > nodes = in DefaultRootBrowseNode() local
564 for ( sal_Int32 i=0; i<nodes.getLength(); i++ ) in DefaultRootBrowseNode()
566 m_vNodes.push_back( new DefaultBrowseNode( xCtx, nodes[ i ] ) ); in DefaultRootBrowseNode()
/trunk/main/configmgr/source/
H A DREADME46 Internal representations of data nodes.
86 - The XCU format can contain oor:mandatory attributes on nodes. (The XCS format
108 inserted nodes must be updated (in case the insert is due to a replaceByName, or
110 Also, for to-be-removed nodes, removal is ignored for (newly; due to concurrent
111 modification of a lower layer) mandatory nodes (but still recorded in
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DPentahoReportJob.java234 …private void collectGroupExpressions(final Node[] nodes, final List expressions, final FormulaPars… in collectGroupExpressions() argument
236 for (int i = 0; i < nodes.length; i++) in collectGroupExpressions()
238 final Node node = nodes[i]; in collectGroupExpressions()
348 final Node[] nodes = report.getNodeArray(); in execute() local
352 final OfficeReport officeReport = (OfficeReport) ((Section) nodes[0]).getNode(0); in execute()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/
H A DOfficeUtil.java126 Node nodes[] = new Node[nodeVec.size()]; in parseText() local
128 nodes[i] = (Node)nodeVec.elementAt(i); in parseText()
129 return nodes; in parseText()
/trunk/main/forms/qa/org/openoffice/xforms/
H A DInstance.java125 XNodeList nodes = _parentElement.getChildNodes(); in removeNode() local
126 for ( int i=0; i<nodes.getLength(); ++i ) in removeNode()
128 XNode node = nodes.item(i); in removeNode()
/trunk/main/offapi/com/sun/star/xml/xpath/
H A DXXPathAPI.idl111 /** Evaluate an XPath expression to select a list of nodes.
123 result of the XPath evaluation: a list of nodes
132 /** Evaluate an XPath expression to select a list of nodes.
147 result of the XPath evaluation: a list of nodes
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DOfficeTableTemplateLayoutController.java52 private Node[] nodes; field in OfficeTableTemplateLayoutController
104 this.nodes = (Node[]) tables.toArray(new Node[tables.size()]); in initialize()
183 return nodes; in getNodes()
H A DTableCellLayoutController.java152 final Node[] nodes = section.getNodeArray(); in getDisplayStyleName() local
153 for (int i = 0; i < nodes.length; i++) in getDisplayStyleName()
155 final Node child = nodes[i]; in getDisplayStyleName()
/trunk/main/offapi/com/sun/star/configuration/
H A DConfigurationRegistry.idl55 it's structure. Removal and addition of sub nodes is allowed only for special
56 nodes, and even then the new elements have to comply to a given scheme (which is some
59 for some nodes.

Completed in 99 milliseconds

12345