/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ |
H A D | ModuleCtrl.java | 51 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setModuleSize() 65 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setModuleSize() 114 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setParentDefaultModuleSettings() 208 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setHiddenModuleSettingsInstall() 249 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setHiddenModuleSettingsUninstall() 388 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setDatabaseSettings() 408 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setShowInUserInstallFlags() 420 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setForcedUpdateProductSettings() 440 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setShowInUserInstallOnlyFlags() 452 for (Enumeration e = packageData.children(); e.hasMoreElements(); ) { in setIgnoreNonRelocatablePackages() [all …]
|
/trunk/main/offapi/com/sun/star/accessibility/ |
H A D | XAccessibleSelection.idl | 41 currently selected children. Every object that has children that can be 46 provides the children on which the first operates.</p> 64 referes to all the children of this object. 77 This index referes to all the children of this object. 90 /** Clears the selection, so that no children of the 95 /** Select all children. 100 other children are deselected.</p> 104 /** Returns the number of Accessible children that are currently 122 children of this object. Even if all children are selected, the 129 number of selected children, then a valid reference to the [all …]
|
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/text/ |
H A D | NoCDATATextContentReadHandler.java | 58 private List children; field in NoCDATATextContentReadHandler 64 this.children = new ArrayList(); in NoCDATATextContentReadHandler() 114 children.add(fixedContentReadHandler); in getHandlerForChild() 120 children.add(formattedTextReadHandler); in getHandlerForChild() 126 children.add(imageReadHandler); in getHandlerForChild() 147 children.add(readHandler); in getHandlerForChild() 153 children.add(readHandler); in getHandlerForChild() 160 return children; in getChildren() 170 for (int i = 0; i < children.size(); i++) in doneParsing() 172 final Object o = children.get(i); in doneParsing()
|
/trunk/main/configmgr/source/ |
H A D | modifications.cxx | 42 Node::Children::iterator j(p->children.find(*i)); in add() 43 if (j == p->children.end()) { in add() 44 if (wasPresent && p->children.empty()) { in add() 47 j = p->children.insert(Node::Children::value_type(*i, Node())). in add() 55 p->children.clear(); in add() 62 Node::Children::iterator j(p->children.find(*i)); in remove() 63 if (j == p->children.end()) { in remove() 67 p->children.erase(j); in remove() 68 if (p->children.empty()) { in remove()
|
H A D | partial.cxx | 82 p = &p->children[seg]; in Partial() 87 p->children.clear(); in Partial() 101 p->children[seg].clear(); in Partial() 104 Node::Children::iterator j(p->children.find(seg)); in Partial() 105 if (j == p->children.end()) { in Partial() 121 Node::Children::const_iterator j(p->children.find(*i)); in contains() 122 if ( j == p->children.end() ) in contains() 129 return ( ( p->children.empty() || p == &root_ ) in contains()
|
/trunk/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/ |
H A D | Menu.java | 32 private java.util.Vector children; field in Menu 42 children = new java.util.Vector(count); in Menu() 49 children.add(c); in Menu() 59 if (children == null) { in Menu() 60 children = new java.util.Vector(0); in Menu() 73 children.add(unoAccessible.getAccessibleContext() in add() 90 children.remove(c); in remove() 116 return children.indexOf(child); in indexOf() 200 return children.size(); in getAccessibleChildrenCount() 207 if (i < children.size()) { in getAccessibleChild() [all …]
|
/trunk/main/offapi/com/sun/star/text/ |
H A D | AccessibleTextDocumentView.idl | 57 The tree that arises from the children of this object reflects the 61 <li>The children returned by 103 frames that are bound as character. They are children 109 children of the <type>AccessibleTextDocumentView</type> 113 children of the paragraph they are contained in. 118 These objects are children of the 121 or a character. They are children of the paragraph they 127 children of the 132 <p>The following rules apply to the children order: 150 children. Their order reflects the z order. [all …]
|
H A D | AccessiblePageView.idl | 65 <li>The children returned by 102 are children of the <type>AccessiblePageView</type> 106 character. They are children of the paragraph they 112 children of the <type>AccessiblePageView</type> 116 children of the paragraph they are contained in. 121 These objects are children of the 124 or a character. They are children of the paragraph they 130 contained in the page. These objects are children of 135 <p>The following rules apply to the children order: 153 children. Their order reflects the z order. [all …]
|
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ |
H A D | XMLPackageDescription.java | 113 private Vector children; /* children are of type XMLPackageDescription */ field in XMLPackageDescription 119 children = new Vector(); in XMLPackageDescription() 123 children.add(p); in add() 142 for (Enumeration e = children.elements(); e.hasMoreElements();) { in getElement() 166 for (Enumeration e = children.elements(); e.hasMoreElements();) { in findPackage() 185 for (int i = children.size() - 1; i >= 0; --i) { in adjust() 186 XMLPackageDescription child = (XMLPackageDescription) children.elementAt(i); in adjust() 196 children.remove(i); in adjust() 245 e = children.elements(); in Elements() 290 for (Enumeration e = children.elements() ; e.hasMoreElements() ;) { in dump() [all …]
|
H A D | PackageDescription.java | 60 private Vector children = null; field in PackageDescription 129 children = new Vector(); in PackageDescription() 133 Collections.sort(children, new PackageComparator()); in PackageDescription() 582 children.add(new PackageDescription(p, this)); in parse() 606 e = children.elements(); in PackageEnumeration() 619 public Enumeration children() { in children() method in PackageDescription 632 return (TreeNode)children.elementAt(childIndex); in getChildAt() 636 return children.size(); in getChildCount() 640 return children.indexOf(node); in getIndex() 652 return children.size() == 0; in isLeaf()
|
/trunk/main/scripting/source/provider/ |
H A D | BrowseNodeFactoryImpl.cxx | 226 Sequence< Reference< browse::XBrowseNode > > children( m_hBNA->size() ); in getChildNodes() local 233 children[ index ].set( m_hBNA->find( *it )->second ); in getChildNodes() 236 return children; in getChildNodes() 468 children[ i ].set( *it ); in getChildNodes() 470 return children; in getChildNodes() 581 Sequence < Reference< browse::XBrowseNode > > children( m_vNodes.size() ); in getChildNodes() local 585 children[ i ].set( *it ); in getChildNodes() 587 return children; in getChildNodes() 646 Sequence< Reference< browse::XBrowseNode > > children( in getChildNodes() local 651 children[j] = new LocationBrowseNode( locnBNs[j] ); in getChildNodes() [all …]
|
/trunk/main/jvmfwk/source/ |
H A D | elements.cxx | 112 xmlNode * cur = root->children; in createSettingsStructure() 285 if (cur == NULL || cur->children == NULL) in load() 289 cur = cur->children; in load() 899 if (pJavaInfo->children == NULL) in loadFromNode() 931 xmlNode * cur = pJavaInfo->children; in loadFromNode() 939 pDoc, cur->children, 1); in loadFromNode() 948 pDoc, cur->children, 1); in loadFromNode() 955 pDoc, cur->children, 1); in loadFromNode() 970 pDoc, cur->children, 1); in loadFromNode() 988 pDoc, cur->children, 1); in loadFromNode() [all …]
|
/trunk/main/cui/source/customize/ |
H A D | cfgutil.cxx | 703 Sequence< Reference< browse::XBrowseNode > > children = in Init() local 729 Reference< browse::XBrowseNode >& theChild = children[n]; in Init() 774 if ( children[n]->hasChildNodes() ) in Init() 777 children[n]->getChildNodes(); in Init() 1030 Sequence< Reference< browse::XBrowseNode > > children = in GroupSelected() local 1168 Sequence< Reference< browse::XBrowseNode > > children = in RequestingChilds() local 1192 sal_Int32 nLen = children.getLength(); in RequestingChilds() 1195 Reference< browse::XBrowseNode >& theChild = children[n]; in RequestingChilds() 1203 … if ( children[n].is() && children[n]->getType() != browse::BrowseNodeTypes::SCRIPT && bDisplay ) in RequestingChilds() 1228 if ( children[n]->hasChildNodes() ) in RequestingChilds() [all …]
|
H A D | selector.cxx | 322 Sequence< Reference< browse::XBrowseNode > > children = in fillScriptList() local 340 for ( long n = 0; n < children.getLength(); n++ ) in fillScriptList() 342 Reference< browse::XBrowseNode >& theChild = children[n]; in fillScriptList() 374 if ( children[n]->getType() == browse::BrowseNodeTypes::SCRIPT ) in fillScriptList() 406 children[n]->getChildNodes(); in fillScriptList() 824 Sequence< Reference< browse::XBrowseNode > > children = in GroupSelected() local 827 for ( long n = 0; n < children.getLength(); n++ ) in GroupSelected() 829 if (!children[n].is()) in GroupSelected() 831 if (children[n]->getType() == browse::BrowseNodeTypes::SCRIPT) in GroupSelected() 836 Reference < beans::XPropertySet >xPropSet( children[n], UNO_QUERY ); in GroupSelected() [all …]
|
/trunk/main/scripting/java/org/openoffice/idesupport/zip/ |
H A D | ParcelZipper.java | 108 File[] children = basedir.listFiles(); in zipParcel() local 109 for (int i = 0; i < children.length; i++) in zipParcel() 110 addFileToParcel(children[i], "", out, filter); in zipParcel() 137 File[] children = root.listFiles(); in addFileToParcel() local 139 for (int i = 0; i < children.length; i++) in addFileToParcel() 194 File[] children = langdir.listFiles(); in isDirectoryOverwriteNeeded() 196 for (int i = 0; i < children.length; i++) in isDirectoryOverwriteNeeded() 197 if (children[i].getName().equals(parcelDir)) in isDirectoryOverwriteNeeded() 301 String[] children = basedir.list(); in deleteDir() local 302 for (int i=0; i<children.length; i++) { in deleteDir() [all …]
|
/trunk/main/offapi/com/sun/star/xml/dom/ |
H A D | XNode.idl | 49 the Node interface expose methods for dealing with children, not all objects 50 #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> 84 Adds the node newChild to the end of the list of children of this node. 89 not allow children of the type of the newChild node, or if the 103 <true/>: clone node together with any children<br> 104 <false/>: clone without children 117 A NodeList that contains all children of this node. 191 Returns whether this node has any children. 225 Removes the child node indicated by oldChild from the list of children, [all …]
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/accessibility/ |
H A D | _XAccessibleComponent.java | 225 XAccessibleComponent[] children = getChildrenComponents(); in _getAccessibleAtPoint() local 227 if (children.length > 0) { in _getAccessibleAtPoint() 228 for (int i = 0; i < children.length; i++) { in _getAccessibleAtPoint() 229 Rectangle chBnd = children[i].getBounds(); in _getAccessibleAtPoint() 239 children[i])); in _getAccessibleAtPoint() 243 children[i]); in _getAccessibleAtPoint() 262 while (!children[i].containsPoint(new Point(curX, curY)) && in _getAccessibleAtPoint() 303 children[i]); in _getAccessibleAtPoint() 306 children[i]); in _getAccessibleAtPoint() 377 children[i]); in _getAccessibleAtPoint()
|
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/table/ |
H A D | TableReadHandler.java | 51 private final List children; field in TableReadHandler 56 children = new ArrayList(); in TableReadHandler() 104 children.add(columns); in getHandlerForChild() 110 children.add(rowHandler); in getHandlerForChild() 116 children.add(rowsHandler); in getHandlerForChild() 130 for (int i = 0; i < children.size(); i++) in doneParsing() 132 final ElementReadHandler handler = (ElementReadHandler) children.get(i); in doneParsing()
|
/trunk/main/cui/source/dialogs/ |
H A D | scriptdlg.cxx | 172 Sequence< Reference< browse::XBrowseNode > > children; in Init() local 196 children = rootNode->getChildNodes(); in Init() 208 for ( sal_Int32 n = 0; n < children.getLength(); n++ ) in Init() 211 ::rtl::OUString uiName = children[ n ]->getName(); in Init() 263 getLangNodeFromRootNode( children[ n ], lang ); in Init() 313 for ( sal_Int32 n = 0; n < children.getLength(); n++ ) in getLangNodeFromRootNode() 317 langNode = children[ n ]; in getLangNodeFromRootNode() 338 Sequence< Reference< browse::XBrowseNode > > children; in RequestSubEntries() local 341 children = node->getChildNodes(); in RequestSubEntries() 348 for ( sal_Int32 n = 0; n < children.getLength(); n++ ) in RequestSubEntries() [all …]
|
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/filesystem/ |
H A D | OpenOfficeDocFileSystem.java | 721 public String[] children(String name) in children() method in OpenOfficeDocFileSystem.ListImpl 723 String[] children = null; in children() local 738 children = childrenStrategy.getChildren(); in children() 740 return children; in children() 827 private Collection children = new HashSet(); field in OpenOfficeDocFileSystem.ChildrenStrategy 836 if(children == null) in setParent() 838 children.clear(); in setParent() 858 return children.add(child); in evaluate() 866 return children.size(); in countChildren() 871 String[] chn = new String[children.size()]; in getChildren() [all …]
|
/trunk/main/codemaker/source/codemaker/ |
H A D | exceptiontree.cxx | 45 children.push_back(node.get()); in add() 50 for (Children::iterator i(children.begin()); i != children.end(); ++i) { in clearChildren() 53 children.clear(); in clearChildren() 88 node->children.begin());; in add() 91 if (j == node->children.end()) { in add()
|
/trunk/main/xmlsecurity/tools/uno/ |
H A D | SAXEventPrinter.java | 85 NodeList children; in display() local 91 children = node.getChildNodes(); in display() 92 length = children.getLength(); in display() 95 display(children.item(i), indent+2, fileOutputStream, isFormatted); in display() 125 children = node.getChildNodes(); in display() 126 length = children.getLength(); in display() 129 display(children.item(i), indent+2, fileOutputStream, isFormatted); in display()
|
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/data/ |
H A D | DataStyleReadHandler.java | 45 private final List children; field in DataStyleReadHandler 52 this.children = new ArrayList(); in DataStyleReadHandler() 71 children.add(xrh); in getHandlerForChild() 91 children.add(new StaticText(new String(ch, start, length))); in characters() 102 for (int i = 0; i < children.size(); i++) in doneParsing() 104 final Object o = children.get(i); in doneParsing()
|
/trunk/main/udkapi/com/sun/star/reflection/ |
H A D | TypeDescriptionSearchDepth.idl | 40 /** Infinite search depth. Search through all children including direct 41 children, grand children, grand children's children, ... 45 /** Search only through direct children.
|
/trunk/main/toolkit/qa/complex/toolkit/accessibility/ |
H A D | _XAccessibleComponent.java | 203 XAccessibleComponent[] children = getChildrenComponents(); in _getAccessibleAtPoint() local 205 if (children.length > 0) { in _getAccessibleAtPoint() 206 for (int i = 0; i < children.length; i++) { in _getAccessibleAtPoint() 207 Rectangle chBnd = children[i].getBounds(); in _getAccessibleAtPoint() 215 + util.AccessibilityTools.accessibleToString(children[i])); in _getAccessibleAtPoint() 220 while (!children[i].containsPoint(new Point(curX, curY)) in _getAccessibleAtPoint() 240 (XAccessible.class, children[i]); in _getAccessibleAtPoint() 272 XAccessible xAccCh = UnoRuntime.queryInterface(XAccessible.class, children[i]); in _getAccessibleAtPoint()
|