Home
last modified time | relevance | path

Searched refs:parent (Results 26 – 50 of 444) sorted by relevance

12345678910>>...18

/aoo42x/main/solenv/bin/modules/installer/patch/
H A DMsi.pm351 my $parent = $item->{'parent'};
352 if (defined $parent)
355 if ( ! defined $parent->{'full_source_long_name'})
357 SetupFullNames($parent, $directory_map);
362 = $parent->{'full_source_long_name'} . "/" . $item->{'source_long_name'};
364 = $parent->{'full_source_short_name'} . "/" . $item->{'source_short_name'};
366 = $parent->{'full_target_long_name'} . "/" . $item->{'target_long_name'};
368 = $parent->{'full_target_short_name'} . "/" . $item->{'target_short_name'};
/aoo42x/main/wizards/com/sun/star/wizards/common/
H A DXMLHelper.java40 public static Node addElement(Node parent, String name, String[] attNames, String[] attValues) in addElement() argument
42 Document doc = parent.getOwnerDocument(); in addElement()
45 doc = (Document) parent; in addElement()
55 parent.appendChild(e); in addElement()
59 public static Node addElement(Node parent, String name, String attNames, String attValues) in addElement() argument
61 return addElement(parent, name, new String[] in addElement()
/aoo42x/main/sfx2/source/layout/
H A Dsfxtabpage.cxx35 SfxTabDialog::SfxTabDialog (::Window *parent, char const* xml_file, char const* id, ResId const& re…
36 : ::SfxTabDialog (parent, res_id, set)
37 , InPlug (parent, xml_file, id)
57 SfxTabPage::SfxTabPage (::Window *parent, char const* xml_file, char const* id, SfxItemSet const* s… in SfxTabPage() argument
58 : ::SfxTabPage (parent, 0, *set) in SfxTabPage()
59 , InPlug (parent, xml_file, id) in SfxTabPage()
H A Dfactory.cxx35 SfxModelessDialog_unprotect (Window *parent, WinBits attributes);
41 SfxModelessDialog_unprotect::SfxModelessDialog_unprotect (Window *parent, WinBits bits) in SfxModelessDialog_unprotect() argument
42 : SfxModelessDialog (sfx2_global_bindings, sfx2_global_child, parent, bits) in SfxModelessDialog_unprotect()
49 SAL_DLLPUBLIC_EXPORT Window* CreateWindow (VCLXWindow** vcl, OUString const& name, Window* parent, … in CreateWindow() argument
58 window = new SfxModelessDialog_unprotect (parent, ImplGetWinBits (attributes, 0)); in CreateWindow()
/aoo42x/main/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/ScriptSelector/
H A DScriptSelector.java328 MutableTreeNode parent = (MutableTreeNode)(node.getParent()); in removeNode() local
329 if (parent != null) { in removeNode()
334 public void addNode(DefaultMutableTreeNode parent, XBrowseNode xbn) { in addNode() argument
342 treeModel.insertNodeInto(newNode, parent, parent.getChildCount()); in addNode()
346 private void initNodes(XBrowseNode parent, DefaultMutableTreeNode top) { in initNodes() argument
347 if ( parent == null || parent.hasChildNodes() == false ) in initNodes()
352 XBrowseNode[] children = parent.getChildNodes(); in initNodes()
/aoo42x/main/offapi/com/sun/star/accessibility/
H A DXAccessibleComponent.idl76 <li>The origin of the parent coordinate system is the upper left corner
77 of the parent's bounding box. With no parent the screen coordinate
148 coordinates are relative to the object's parent coordinate system.
156 object's parent or relative to the screen on which this object
157 is rendered if it has no parent. If the object is not on any
164 bounding box relative to the parent.</p>
167 parent's coordinate system.</p>
171 object's parent or relative to the screen on which this object
172 is rendered if it has no parent. If the object is not on any
184 parent.</p>
/aoo42x/main/solenv/bin/modules/installer/
H A Dpackagelist.pm127 my $parent = $modulehash->{$gid};
129 if ( $parent eq $parentgid )
132 my $parent = $gid;
133 get_children_with_hash($modulehash, $parent, $newitemorder); # recursive!
150 my $parent = "";
151 if ( ${$allitems}[$i]->{'ParentID'} ) { $parent = ${$allitems}[$i]->{'ParentID'}; }
153 if ( $parent eq $startparent )
156 my $parent = $gid;
157 get_children($allitems, $parent, $newitemorder); # recursive!
/aoo42x/main/xmlsecurity/tools/uno/
H A DDomToTreeModelAdapter.java74 public int getChildCount(Object parent) in getChildCount() argument
76 AdapterNode node = (AdapterNode) parent; in getChildCount()
80 public Object getChild(Object parent, int index) in getChild() argument
82 AdapterNode node = (AdapterNode) parent; in getChild()
86 public int getIndexOfChild(Object parent, Object child) in getIndexOfChild() argument
88 AdapterNode node = (AdapterNode) parent; in getIndexOfChild()
/aoo42x/main/scripting/examples/java/selector/
H A DScriptSelector.java429 MutableTreeNode parent = (MutableTreeNode)(node.getParent()); in removeNode() local
430 if (parent != null) { in removeNode()
435 public void addNode(DefaultMutableTreeNode parent, XBrowseNode xbn) { in addNode() argument
443 treeModel.insertNodeInto(newNode, parent, parent.getChildCount()); in addNode()
447 private void initNodes(XBrowseNode parent, DefaultMutableTreeNode top) { in initNodes() argument
448 if ( parent == null || parent.hasChildNodes() == false ) in initNodes()
453 XBrowseNode[] children = parent.getChildNodes(); in initNodes()
/aoo42x/main/reportbuilder/java/com/sun/star/report/pentaho/loader/
H A DInputRepositoryLoader.java105 public ResourceKey deriveKey(final ResourceKey parent, in deriveKey() argument
110 if (!isSupportedKey(parent)) in deriveKey()
115 final InputResourceKey parentKey = (InputResourceKey) parent.getIdentifier(); in deriveKey()
133 map.putAll(parent.getFactoryParameters()); in deriveKey()
138 map = parent.getFactoryParameters(); in deriveKey()
140 return new ResourceKey(parent.getSchema(), in deriveKey()
/aoo42x/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DVariablesDeclarationLayoutController.java63 LayoutController parent = getParent(); in getRepeatingParent() local
64 while (parent != null) in getRepeatingParent()
66 if (parent instanceof OfficeRepeatingStructureLayoutController) in getRepeatingParent()
68 return (OfficeRepeatingStructureLayoutController) parent; in getRepeatingParent()
70 parent = parent.getParent(); in getRepeatingParent()
H A DVariablesCollection.java46 private VariablesCollection parent; field in VariablesCollection
55 public VariablesCollection(final String namePrefix, final VariablesCollection parent) in VariablesCollection() argument
63 this.parent = parent; in VariablesCollection()
69 return parent; in getParent()
H A DImageElementLayoutController.java226 LayoutController parent = getParent(); in findParentCell() local
227 while (parent != null) in findParentCell()
229 final Object node = parent.getNode(); in findParentCell()
235 return parent; in findParentCell()
238 parent = parent.getParent(); in findParentCell()
/aoo42x/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/accessibility/
H A DPopupWindow.java54 java.awt.Window parent = java.awt.KeyboardFocusManager.getCurrentKeyboardFocusManager() in create() local
57 if (parent != null) { in create()
58 PopupWindow w = new PopupWindow(parent); in create()
71 java.awt.Container parent = getParent(); in isShowing() local
73 return (parent == null) || parent.isShowing(); in isShowing()
/aoo42x/main/autodoc/inc/ary/
H A Dsymtreenode.hxx186 parent = NODE_TRAITS::ParentOf_(Entity()); in Get_Parent() local
187 if (parent != 0) in Get_Parent()
188 return NODE_TRAITS::NodeOf_(*parent); in Get_Parent()
298 parent = Get_Parent(); in SearchUp() local
299 if (parent != 0) in SearchUp()
301 parent->SearchUp( o_return, in SearchUp()
/aoo42x/main/offapi/com/sun/star/configuration/
H A DHierarchyElement.idl70 /** provides the local name of this element within its parent.
83 <p>If the parent of this object implements
86 <type scope="com::sun::star::beans">XPropertySetInfo</type> of the parent.
97 <p>If the parent of this object implements
99 of this interface have the same effect as corresponding members of the parent.
108 /** provides access to the parent of this element [optional].
118 <p><em>Setting a different parent is, generally, not supported.</em></p>
/aoo42x/main/offapi/com/sun/star/style/
H A DCharacterStyle.idl53 the character in the parent style.
57 the character in the parent style.
61 the character in the parent style in Asian text.
65 the character in the parent style in Asian text.
69 the character in the parent style in complex text.
73 the character in the parent style in complex text.
/aoo42x/main/scripting/java/com/sun/star/script/framework/container/
H A DParcelContainer.java61 private ParcelContainer parent = null; field in ParcelContainer
80 if ( parent == null ) in hasParent()
92 public ParcelContainer parent() in parent() method in ParcelContainer
94 return parent; in parent()
263 …public ParcelContainer( ParcelContainer parent, XComponentContext xCtx, String containerUrl, Strin… in ParcelContainer() argument
269 this.parent = parent; in ParcelContainer()
275 if ( parent != null ) in ParcelContainer()
277 parentIsPkgContainer = parent.isUnoPkg(); in ParcelContainer()
/aoo42x/main/unoxml/source/dom/
H A Dattr.cxx124 if (0 == m_aAttrPtr->parent) { in getOwnerElement()
129 m_aAttrPtr->parent).get()), in getOwnerElement()
195 tmp->parent = (xmlNodePtr) m_aNodePtr; in setValue()
226 OSL_ASSERT(!m_aNodePtr->parent); in setPrefix()
242 OSL_ASSERT(!m_aNodePtr->parent); in getPrefix()
259 OSL_ASSERT(!m_aNodePtr->parent); in getNamespaceURI()
/aoo42x/main/configmgr/source/
H A Daccess.cxx140 if (!parent.is()) { in markChildAsModified()
144 parent->modifiedChildren_.insert( in markChildAsModified()
148 p = parent; in markChildAsModified()
318 rtl::Reference< Access > parent(getParentAccess()); in getParentNode() local
319 return parent.is() ? parent->getNode() : rtl::Reference< Node >(); in getParentNode()
1296 if (parent.is()) { in setName()
2024 for (rtl::Reference< Access > parent(this);;) { in getSubChild() local
2067 parent = child.get(); in getSubChild()
2127 removable = parent.is() && parent->kind() == Node::KIND_SET; in asProperty()
2214 if (!parent.is()) { in getNotificationRoot()
[all …]
/aoo42x/main/offapi/com/sun/star/report/
H A DXReportComponent.idl67 <p>This interface also provides the access to the component's parent.</p>
140 /** is used for subreports and contains the names of columns of the parent report.
141 <p> These columns are typically the foreign key fields of the parent report.
143 Each time the parent report changes it's current row, the subreport requires
145 <p>If the report is no sub report (e.g. its parent is not a report itself), this
156 which are related to the master fields of the parent report.
174 <p>If the report is no sub report (e.g. it's parent is not a report itself), this
/aoo42x/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DColumnStyle.java104 public ColumnStyle(String name, String family, String parent,int colWidth, StyleCatalog sc) { in ColumnStyle() argument
105 super(name, family, parent, sc); in ColumnStyle()
191 if (parent != null) { in getResolved()
192 parentStyle = (ColumnStyle)sc.lookup(parent, family, null, in getResolved()
196 + parent + " failed!"); in getResolved()
H A DRowStyle.java104 public RowStyle(String name, String family, String parent,int rowHeight, StyleCatalog sc) { in RowStyle() argument
105 super(name, family, parent, sc); in RowStyle()
191 if (parent != null) { in getResolved()
192 parentStyle = (RowStyle)sc.lookup(parent, family, null, in getResolved()
196 + parent + " failed!"); in getResolved()
/aoo42x/main/toolkit/qa/complex/toolkit/accessibility/
H A D_XAccessibleComponent.java350 XAccessibleComponent parent = getParentComponent(); in _getLocationOnScreen() local
356 if (parent != null) { in _getLocationOnScreen()
357 Point parLoc = parent.getLocationOnScreen(); in _getLocationOnScreen()
464 … XAccessibleComponent parent = UnoRuntime.queryInterface(XAccessibleComponent.class, xAccConPar); in getParentComponent() local
465 if (parent == null) { in getParentComponent()
471 return parent; in getParentComponent()
/aoo42x/main/fpicker/source/win32/filepicker/
H A Dpreviewadapter.cxx71 virtual void SAL_CALL setParent(HWND parent);
188 void SAL_CALL CPreviewAdapterImpl::setParent(HWND parent) in setParent() argument
190 OSL_PRECOND(IsWindow(parent),"Invalid FileDialog handle"); in setParent()
192 m_FileDialog = parent; in setParent()
679 void SAL_CALL CPreviewAdapter::setParent(HWND parent) in setParent() argument
681 m_pImpl->setParent(parent); in setParent()

Completed in 90 milliseconds

12345678910>>...18