| /AOO42X/main/toolkit/source/layout/core/ |
| H A D | table.cxx | 125 ChildData *child = static_cast<Table::ChildData*> ( *it ); in getMinimumSize() local 126 if ( !child->isVisible() ) in getMinimumSize() 129 while ( col + SAL_MIN( child->mnColSpan, mnColsLen ) > mnColsLen ) in getMinimumSize() 142 child->mnLeftCol = col; in getMinimumSize() 143 child->mnRightCol = SAL_MIN( col + child->mnColSpan, mnColsLen ); in getMinimumSize() 144 child->mnTopRow = row; in getMinimumSize() 145 child->mnBottomRow = row + child->mnRowSpan; in getMinimumSize() 147 col += child->mnColSpan; in getMinimumSize() 149 unsigned int start = child->mnLeftCol +( child->mnTopRow*mnColsLen ); in getMinimumSize() 150 unsigned int end =( child->mnRightCol-1 ) +( ( child->mnBottomRow-1 )*mnColsLen ); in getMinimumSize() [all …]
|
| H A D | box.cxx | 99 ChildData *child = static_cast<Box::ChildData*> ( *it ); in calculateSize() local 100 if ( !child->isVisible() ) in calculateSize() 103 uno::Reference< awt::XLayoutContainer > xChildCont( child->mxChild, uno::UNO_QUERY ); in calculateSize() 106 awt::Size aChildSize = child->maRequisition = child->mxChild->getMinimumSize(); in calculateSize() 116 int size = primDim( aChildSize ) + child->mnPadding * 2; in calculateSize() 141 ChildData *child = static_cast<Box::ChildData*> ( *it ); in calculateSize() local 142 if ( !child->isVisible() ) in calculateSize() 145 uno::Reference< awt::XLayoutContainer > xChildCont( child->mxChild, uno::UNO_QUERY ); in calculateSize() 192 ChildData *child = static_cast<Box::ChildData*> ( *it ); in allocateArea() local 193 if ( child->isVisible() ) in allocateArea() [all …]
|
| H A D | vcl.cxx | 31 Window* child = dialog->GetWindow (WINDOW_FIRSTCHILD); in get_button() local 32 while (child) in get_button() 34 if (child->GetType () == type) in get_button() 35 return static_cast <PushButton*> (child); in get_button() 36 child = child->GetWindow (WINDOW_NEXT); in get_button()
|
| /AOO42X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ |
| H A D | ModuleCtrl.java | 52 PackageDescription child = (PackageDescription) e.nextElement(); in setModuleSize() local 54 if ( child.isHidden() ) { in setModuleSize() 56 size = size + child.getSize(); in setModuleSize() 66 PackageDescription child = (PackageDescription) e.nextElement(); in setModuleSize() local 67 setModuleSize(child); in setModuleSize() 115 PackageDescription child = (PackageDescription) e.nextElement(); in setParentDefaultModuleSettings() local 116 setParentDefaultModuleSettings(child); in setParentDefaultModuleSettings() 130 PackageDescription child = (PackageDescription) e.nextElement(); in setParentDefaultModuleSettings() local 131 int childState = child.getSelectionState(); in setParentDefaultModuleSettings() 143 if ( ! child.isHidden() ) { in setParentDefaultModuleSettings() [all …]
|
| H A D | Dumper.java | 52 PackageDescription child = (PackageDescription) e.nextElement(); in dumpPackageSettings() local 53 dumpPackageSettings(child); in dumpPackageSettings() 65 PackageDescription child = (PackageDescription) e.nextElement(); in dumpModuleStates() local 66 dumpModuleStates(child); in dumpModuleStates() 109 PackageDescription child = (PackageDescription) e.nextElement(); in logModuleStatesHelper() local 110 logModuleStatesHelper(child); in logModuleStatesHelper() 136 PackageDescription child = (PackageDescription) e.nextElement(); in dumpInstallPackages() local 137 dumpInstallPackages(child); in dumpInstallPackages() 148 PackageDescription child = (PackageDescription) e.nextElement(); in dumpUninstallPackages() local 149 dumpUninstallPackages(child); in dumpUninstallPackages() [all …]
|
| /AOO42X/main/configmgr/source/ |
| H A D | access.cxx | 135 void Access::markChildAsModified(rtl::Reference< ChildAccess > const & child) { in markChildAsModified() argument 136 OSL_ASSERT(child.is() && child->getParentAccess() == this); in markChildAsModified() 137 modifiedChildren_[child->getNameInternal()] = ModifiedChild(child, true); in markChildAsModified() 220 rtl::Reference< ChildAccess > child(getModifiedChild(i)); in initDisposeBroadcaster() local 221 if (child.is()) { in initDisposeBroadcaster() 222 child->initDisposeBroadcaster(broadcaster); in initDisposeBroadcaster() 237 rtl::Reference< ChildAccess > child(getModifiedChild(i)); in clearListeners() local 238 if (child.is()) { in clearListeners() 239 child->clearListeners(); in clearListeners() 340 rtl::Reference< ChildAccess > child(getModifiedChild(i)); in getAllChildren() local [all …]
|
| H A D | childaccess.cxx | 239 rtl::Reference< ChildAccess > child(getChild(locale)); in setProperty() local 240 if (child.is()) { in setProperty() 241 child->setProperty(value, localModifications); in setProperty() 285 rtl::Reference< ChildAccess > child; in asValue() local 287 child = getChild(locale); in asValue() 288 if (child.is() || locale.getLength() == 0) { in asValue() 300 if (!child.is()) { in asValue() 301 child = getChild( in asValue() 303 if (!child.is()) { in asValue() 304 child = getChild( in asValue() [all …]
|
| /AOO42X/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/ |
| H A D | DocumentSerializerImpl.java | 153 Node child = nodeList.item(i); in traverseBody() local 155 if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseBody() 156 String nodeName = child.getNodeName(); in traverseBody() 161 traverseParagraph(child); in traverseBody() 165 traverseList(child); in traverseBody() 169 traverseList(child); in traverseBody() 173 log("<OTHERS " + XmlUtil.getNodeInfo(child) + " />"); in traverseBody() 219 Node child = nodeList.item(i); in traverseParaContents() local 220 short nodeType = child.getNodeType(); in traverseParaContents() 226 String s = child.getNodeValue(); in traverseParaContents() [all …]
|
| /AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/ |
| H A D | SxcDocumentSerializer.java | 156 Node child = nodeList.item(i); in traverseSettings() local 158 if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseSettings() 159 String nodeName = child.getNodeName(); in traverseSettings() 163 traverseSettings(child); in traverseSettings() 167 traverseSettings(child); in traverseSettings() 171 BookSettings bs = new BookSettings(child); in traverseSettings() 176 Debug.log(Debug.TRACE, "<OTHERS " + XmlUtil.getNodeInfo(child) + " />"); in traverseSettings() 251 Node child = nodeList.item(i); in traverseBody() local 253 if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseBody() 254 String nodeName = child.getNodeName(); in traverseBody() [all …]
|
| H A D | BookSettings.java | 182 Node child = nodeList.item(i); in readNode() local 184 if (child.getNodeType() == Node.ELEMENT_NODE) { in readNode() 185 String nodeName = child.getNodeName(); in readNode() 189 NamedNodeMap cellAtt = child.getAttributes(); in readNode() 195 NodeList nodeList2 = child.getChildNodes(); in readNode() 208 readNode(child); in readNode() 212 SheetSettings s = new SheetSettings(child); in readNode() 217 Debug.log(Debug.TRACE, "<OTHERS " + XmlUtil.getNodeInfo(child) + " />"); in readNode()
|
| /AOO42X/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
| H A D | DocumentSerializerImpl.java | 190 Node child = nodeList.item(i); in traverseBody() local 192 if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseBody() 193 String nodeName = child.getNodeName(); in traverseBody() 198 traverseParagraph(child); in traverseBody() 202 traverseList(child); in traverseBody() 206 traverseList(child); in traverseBody() 275 Node child = nodeList.item(i); in traverseParaContents() local 277 if (child.getNodeType() == Node.TEXT_NODE) { in traverseParaContents() 280 String s = child.getNodeValue(); in traverseParaContents() 291 } else if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseParaContents() [all …]
|
| /AOO42X/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/ |
| H A D | DocumentSerializerImpl.java | 185 Node child = nList.item(i); in traverseBody() local 187 if (child.getNodeType() == Node.ELEMENT_NODE) { in traverseBody() 188 String nodeName = child.getNodeName(); in traverseBody() 192 traverseParagraph(child); in traverseBody() 197 traverseList(child); in traverseBody() 261 Node child = nList.item(i); in traverseParagraphContents() local 262 short nodeType = child.getNodeType(); in traverseParagraphContents() 266 String s = child.getNodeValue(); in traverseParagraphContents() 281 if (child.getNodeName().equals(TAG_SPACE)) { in traverseParagraphContents() 285 NamedNodeMap map = child.getAttributes(); in traverseParagraphContents() [all …]
|
| /AOO42X/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/ |
| H A D | Tree.java | 163 javax.accessibility.Accessible child = null; in getAccessibleChild() local 170 child = activeDescendant; in getAccessibleChild() 172 child = new TreeItem(xAccessible); in getAccessibleChild() 178 return child; in getAccessibleChild() 187 javax.accessibility.Accessible child = null; in getAccessibleAt() local 195 child = activeDescendant; in getAccessibleAt() 197 child = new TreeItem(xAccessible); in getAccessibleAt() 202 return child; in getAccessibleAt() 211 javax.accessibility.Accessible child = null; in getAccessibleSelection() local 218 child = activeDescendant; in getAccessibleSelection() [all …]
|
| H A D | Table.java | 153 javax.accessibility.Accessible child = null; in getAccessibleChild() local 160 child = activeDescendant; in getAccessibleChild() 162 child = new TableCell(xAccessible); in getAccessibleChild() 168 return child; in getAccessibleChild() 177 javax.accessibility.Accessible child = null; in getAccessibleAt() local 185 child = activeDescendant; in getAccessibleAt() 187 child = new TableCell(xAccessible); in getAccessibleAt() 192 return child; in getAccessibleAt() 201 javax.accessibility.Accessible child = null; in getAccessibleSelection() local 208 child = activeDescendant; in getAccessibleSelection() [all …]
|
| H A D | List.java | 157 javax.accessibility.Accessible child = null; in getAccessibleChild() local 164 child = activeDescendant; in getAccessibleChild() 166 child = new ListItem(xAccessible); in getAccessibleChild() 172 return child; in getAccessibleChild() 181 javax.accessibility.Accessible child = null; in getAccessibleAt() local 188 child = activeDescendant; in getAccessibleAt() 190 child = new ListItem(xAccessible); in getAccessibleAt() 193 return child; in getAccessibleAt() 205 javax.accessibility.Accessible child = null; in getAccessibleSelection() local 212 child = activeDescendant; in getAccessibleSelection() [all …]
|
| /AOO42X/main/wizards/com/sun/star/wizards/common/ |
| H A D | ConfigSet.java | 61 public void add(String name, Object child) in add() argument 63 childrenMap.put(name, child); in add() 66 int i = ((Indexable) child).getIndex(); in add() 72 childrenList.set(i, child); in add() 81 childrenList.add(child); in add() 127 ConfigNode child = (ConfigNode) getElement(names[i]); in writeConfiguration() local 129 child.writeConfiguration(childView, param); in writeConfiguration() 155 ConfigNode child = (ConfigNode) createChild(); in readConfiguration() local 156 child.setRoot(root); in readConfiguration() 157 … child.readConfiguration(Configuration.getNode(names[i], configurationView), param); in readConfiguration() [all …]
|
| /AOO42X/main/offapi/com/sun/star/accessibility/ |
| H A D | XAccessibleSelection.idl | 55 /** Selects the specified <type>Accessible</type> child of the 58 <p>Depending on the implementing class the child is added to the 60 selected child is deselected first (single selection).</p> 63 Index of the child which is to add to the selection. This index 73 /** Determines if the specified child of this object is selected. 76 Index of the child for which to detect whether it is selected. 80 Returns <TRUE/> if the specified child is selected and <FALSE/> 97 <p>Causes every child of the object to be selected if the object 99 supported then the first child, if it exists, is selected and all 114 no child is selected. [all …]
|
| H A D | XAccessibleTable.idl | 47 into child indices and vice versa with the methods 321 /** Returns the child index of the accessible object that spans the 329 Row index of the accessible object for which to return the child 333 Row index of the accessible object for which to return the child 343 /** Translate the given child index into the corresponding row 347 Index of the child of the table for which to return the row 351 Returns the row index of the cell of the specified child or the 352 index of the first row if the child spans multiple rows. 360 /** Translate the given child index into the corresponding column 364 Index of the child of the table for which to return the column [all …]
|
| /AOO42X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ |
| H A D | XMLPackageDescription.java | 143 XMLPackageDescription child = (XMLPackageDescription) e.nextElement(); in getElement() local 144 if (child.key.equals(key)) { in getElement() 146 return child; in getElement() 147 } else if (attrValue.equals(child.getAttribute(attrKey))) { in getElement() 148 return child; in getElement() 167 XMLPackageDescription child = (XMLPackageDescription) e.nextElement(); in findPackage() local 168 if (child.getAttribute("parent") != null) { in findPackage() 169 found = child.findPackage(name); in findPackage() 186 XMLPackageDescription child = (XMLPackageDescription) children.elementAt(i); in adjust() local 187 String childParentName = child.getAttribute("parent"); in adjust() [all …]
|
| H A D | DisplayPackageDescription.java | 72 TreeNode child = (TreeNode)e.nextElement(); in setState() local 73 DisplayPackageDescription childInfo = getInfo(child); in setState() 75 childInfo.setState(child, newState); in setState() 78 size += childInfo.getSize(child); in setState() 133 TreeNode child = (TreeNode) e.nextElement(); in updateState() local 134 DisplayPackageDescription childInfo = getInfo(child); in updateState() 148 size += childInfo.getSize(child); in updateState() 161 TreeNode child = (TreeNode) e.nextElement(); in updateSize() local 162 DisplayPackageDescription childInfo = getInfo(child); in updateSize() 164 size += childInfo.getSize(child); in updateSize()
|
| H A D | SetupDataProvider.java | 75 PackageDescription child = (PackageDescription) e.nextElement(); in createTree() local 79 if (( installData.isUserInstallation() ) && ( ! child.showInUserInstall() )) { in createTree() 80 child.setIsHidden(true); in createTree() 81 child.setSelectionState(PackageDescription.IGNORE); in createTree() 85 if (!child.isHidden()) { in createTree() 86 node.add(createTree(child, installData)); in createTree()
|
| /AOO42X/main/odk/examples/java/Inspector/ |
| H A D | HideableTreeModel.java | 108 public void nodeInserted(Object node, Object child) { in nodeInserted() argument 109 nodeInserted(node, child, -1); in nodeInserted() 113 public void nodeInserted(Object node, Object child, int index) { in nodeInserted() argument 115 index = getIndexOfChild(node, child); in nodeInserted() 117 if(node != null && child != null && index >= 0) { in nodeInserted() 120 Object[] ac = { child }; in nodeInserted() 126 public void nodeRemoved(Object node, Object child, int index) { in nodeRemoved() argument 127 if(node != null && child != null && index >= 0) { in nodeRemoved() 130 Object[] ac = { child }; in nodeRemoved() 299 public int getIndexOfChild(Object parent, Object child) { in getIndexOfChild() argument [all …]
|
| /AOO42X/main/offapi/com/sun/star/animations/ |
| H A D | AnimationEndSync.idl | 37 active end of all the child elements. This does not refer to the lexical 38 first child, or to the first child to start, but rather refers to the first 39 child to end its (first) active duration. 44 end of the child elements. This does not refer to the lexical last child, or 45 to the last child to start, but rather refers to the last active end of all 48 immediately. If child elements have multiple begin times, or otherwise 49 restart, the child elements must complete all instances of active durations 56 child elements have ended their respective active durations. Elements with
|
| /AOO42X/main/fpicker/source/aqua/ |
| H A D | ControlHelper.cxx | 346 …for (::std::list<NSControl*>::iterator child = m_aActiveControls.begin(); child != m_aActiveContro… in createUserPane() 349 NSControl* pControl = *child; in createUserPane() 366 else if (child != m_aActiveControls.begin()){ in createUserPane() 417 if (child != m_aActiveControls.begin()){ in createUserPane() 830 …for (::std::list<NSControl*>::iterator child = m_aActiveControls.begin(); child != m_aActiveContro… in layoutControls() 831 NSControl* pControl = *child; in layoutControls() 861 …for (::std::list<NSControl*>::iterator child = m_aActiveControls.begin(); child != m_aActiveContro… in layoutControls() 862 NSControl* pControl = *child; in layoutControls()
|
| /AOO42X/main/offapi/com/sun/star/text/ |
| H A D | AccessibleTextDocumentView.idl | 72 A child of this kind is returned for every header 76 A child of this kind is returned for every footnote 80 A child of this kind is returned for every endnote 84 A child of this kind is returned for every paragraph 91 A child of this kind is returned for every table 96 >AccessibleTextFrameView</type>: A child of this 107 A child of this kind is returned for every graphic that 116 A child of this kind is returned for every embedded 124 >AccessibleShape</type>: A child of this kind (or a
|