Home
last modified time | relevance | path

Searched refs:aChild (Results 1 – 25 of 49) sorted by relevance

12

/trunk/main/sw/source/core/access/
H A Daccselectionhelper.cxx106 if( !aChild.IsValid() ) in selectAccessibleChild()
132 if ( aChild.GetSwFrm() ) in lcl_getSelectedState()
136 else if ( aChild.GetDrawObject() ) in lcl_getSelectedState()
171 if( !aChild.IsValid() ) in isAccessibleChildSelected()
179 if ( aChild.GetSwFrm() != 0 ) in isAccessibleChildSelected()
317 SwAccessibleChild aChild; in getSelectedAccessibleChild() local
325 aChild = pFlyFrm; in getSelectedAccessibleChild()
336 aChild = pParaFrm; in getSelectedAccessibleChild()
362 aChild = rChild; in getSelectedAccessibleChild()
370 if( !aChild.IsValid() ) in getSelectedAccessibleChild()
[all …]
H A Dacccontext.cxx632 if( !aChild.IsValid() ) in getAccessibleChild()
642 if( aChild.GetSwFrm() ) in getAccessibleChild()
670 else if ( aChild.GetDrawObject() ) in getAccessibleChild()
678 else if ( aChild.GetWindow() ) in getAccessibleChild()
874 if( aChild.GetSwFrm() ) in getAccessibleAtPoint()
876 xAcc = GetMap()->GetContext( aChild.GetSwFrm() ); in getAccessibleAtPoint()
878 else if( aChild.GetDrawObject() ) in getAccessibleAtPoint()
882 else if ( aChild.GetWindow() ) in getAccessibleAtPoint()
884 xAcc = aChild.GetWindow()->GetAccessible(); in getAccessibleAtPoint()
1610 ByteString aChild( String(pChildAcc->GetName()), in lcl_SwAccessibleContext_DbgMsg() local
[all …]
/trunk/main/toolkit/test/accessibility/
H A DAccessibleCellHandler.java68 AccessibleTreeNode aChild = null; in createChild() local
92 aChild = new StringNode ("# table row: " + nRow, aParent); in createChild()
100 aChild = new StringNode ("# table column: " + nCol, aParent); in createChild()
110 aChild = new StringNode ("# table row extend: " + nExt, aParent); in createChild()
120 aChild = new StringNode ("# table column extend: " + nExt, aParent); in createChild()
131aChild = new StringNode ("# cell name retrieved from table: " + xChild.getAccessibleContext().getA… in createChild()
142 aChild = new StringNode ("cell is selected: " + bSelected, aParent); in createChild()
152 aChild = new StringNode ("table row is selected: " + bSelected, aParent); in createChild()
162 aChild = new StringNode ("table column is selected: " + bSelected, aParent); in createChild()
166 aChild = new StringNode ("unknown child index " + nIndex, aParent); in createChild()
[all …]
H A DAccessibleTreeHandler.java66 AccessibleTreeNode aChild = null; in createChild() local
70 aChild = new StringNode ("Child count: " + mxContext.getAccessibleChildCount(), in createChild()
79 aChild = NodeFactory.Instance().createDefaultNode ( in createChild()
84 aChild = new StringNode ("ERROR: no child with index " + nIndex, aParent); in createChild()
89 aChild = new StringNode ("XAccessibleContext interface not supported", aParent); in createChild()
90 return aChild; in createChild()
99 AccessibleTreeNode aChild = null; in addAccessibleChild() local
111 aChild = NodeFactory.Instance().createDefaultNode (xChild, aParent); in addAccessibleChild()
112 maChildList.insertElementAt (aChild, nIndex); in addAccessibleChild()
117 return aChild; in addAccessibleChild()
H A DAccessibilityTreeModelBase.java55 Object aChild = null; in getChild() local
59 aChild = ((AccessibleTreeNode)aParent).getChild(nIndex); in getChild()
65 aChild = ("no child " + nIndex + " from " + aParent + ": " + e); in getChild()
67 return aChild; in getChild()
72 Object aChild = null; in getChildNoCreate() local
76 aChild = ((AccessibleTreeNode)aParent).getChildNoCreate(nIndex); in getChildNoCreate()
82 return aChild; in getChildNoCreate()
86 public synchronized int getIndexOfChild (Object aParent, Object aChild) in getIndexOfChild() argument
91 if ((aParent instanceof AccessibleTreeNode) && (aChild instanceof AccessibleTreeNode)) in getIndexOfChild()
94 AccessibleTreeNode aChildNode = (AccessibleTreeNode) aChild; in getIndexOfChild()
H A DAccessibilityTreeModel.java138 if (aChild == null) in getChild()
142 addNode (aChild); in getChild()
144 return aChild; in getChild()
151 return aChild; in getChildNoCreate()
246 AccessibleTreeNode aChild = addChild ((AccTreeNode)aParentNode, xChild); in addChild() local
247 if (addNode (aChild)) in addChild()
280 AccTreeNode aChild = (AccTreeNode)aNode; in addNode() local
281 XAccessibleContext xChild = aChild.getContext(); in addNode()
282 registerAccListener (aChild); in addNode()
284 maCanvas.addNode (aChild); in addNode()
[all …]
H A DAccessibleComponentHandler.java56 AccessibleTreeNode aChild = null; in createChild() local
69 aChild = new StringNode ( in createChild()
75 aChild = new StringNode ( in createChild()
81 aChild = new StringNode ( in createChild()
87 aChild = new StringNode ( in createChild()
94 aChild = new StringNode ("Foreground color: R" in createChild()
103 aChild = new StringNode ("Background color: R" in createChild()
113 return aChild; in createChild()
H A DNodeHandler.java76 AccessibleTreeNode aChild = (AccessibleTreeNode)maChildList.get(nIndex); in getChild() local
77 if (aChild == null) in getChild()
79 aChild = createChild (aParent, nIndex); in getChild()
80 if (aChild == null) in getChild()
81 aChild = new StringNode ("could not create child", aParent); in getChild()
82 maChildList.setElementAt (aChild, nIndex); in getChild()
84 return aChild; in getChild()
H A DAccessibleTableHandler.java59 AccessibleTreeNode aChild = null; in createChild() local
70aChild = new StringNode ("# table rows: " + xTable.getAccessibleRowCount(), aParent); in createChild()
73aChild = new StringNode ("# table columns: " + xTable.getAccessibleColumnCount(), aParent); in createChild()
84 aChild = new StringNode (sText, aParent); in createChild()
96 aChild = new StringNode (sText, aParent); in createChild()
100 aChild = new StringNode ("unknown child index " + nIndex, aParent); in createChild()
109 return aChild; in createChild()
H A DAccessibleUNOHandler.java76 AccessibleTreeNode aChild = null; in createChild() local
82 aChild = new StringNode ("Implementation name: " + in createChild()
90 aChild = new StringNode ( in createChild()
94 aChild = CreateServiceTree (aParent, xServiceInfo); in createChild()
99 aChild = new StringNode ( in createChild()
103 aChild = CreateInterfaceTree (aParent, xTypeProvider); in createChild()
107 return aChild; in createChild()
H A DAccessibleTextHandler.java81 AccessibleTreeNode aChild = null; in createChild() local
93 aChild = new StringNode (xText.getText(), aParent); in createChild()
96 aChild = new StringNode ("# chars: " + xText.getCharacterCount(), aParent); in createChild()
99 aChild = new StringNode (characters( xText ), aParent); in createChild()
102 aChild = new StringNode ("selection: " in createChild()
109aChild = new StringNode ("getCaretPosition: " + xText.getCaretPosition(), aParent); in createChild()
114 aChild = aVec; in createChild()
146 aChild = new StringNode (bounds( xText ), aParent); in createChild()
149 aChild = getAttributes( xText, aParent ); in createChild()
152 aChild = new StringNode ("unknown child index " + nIndex, aParent); in createChild()
[all …]
H A DAccessibleSelectionHandler.java62 AccessibleTreeNode aChild = null; in createChild() local
73 aChild = new StringNode( in createChild()
113 aChild = aVNode; in createChild()
117 aChild = new StringNode( "IndexOutOfBounds", in createChild()
123 aChild = new StringNode( "ERROR", aParent ); in createChild()
129 return aChild; in createChild()
H A DAccessibleActionHandler.java62 AccessibleTreeNode aChild = null; in createChild() local
70aChild = new StringNode ("Number of actions: " + xAction.getAccessibleActionCount(), in createChild()
77 aChild = new AccessibleActionNode ( in createChild()
85 aChild = new StringNode ("ERROR", aParent); in createChild()
91 return aChild; in createChild()
H A DAccessibleRelationHandler.java62 AccessibleTreeNode aChild = null; in createChild() local
70 return aChild; in createChild()
108 aChild = aVNode; in createChild()
112 aChild = new StringNode( "IndexOutOfBounds", aParent ); in createChild()
115 return aChild; in createChild()
/trunk/main/connectivity/source/drivers/dbase/
H A Ddindexnode.cxx105 if (aChild.Is()) in QueryDelete()
127 if (!aChild.Is() && pIndex) in GetChild()
129 aChild = rIndex.CreatePage(aChild.GetPagePos(),this,aChild.HasPage()); in GetChild()
131 return aChild; in GetChild()
345 if (aChild.Is()) in Release()
346 aChild->Release(bSave); in Release()
349 aChild.Clear(); in Release()
725 rStream >> aChild; in Read()
763 rStream << aChild; in Write()
772 aChild = pIndex->CreatePage(aChild.GetPagePos(),pParent,aChild.HasPage()); in GetChild()
[all …]
H A DDNoException.cxx295 rStream >> aChild; in Read()
334 rStream << aChild; in Write()
342 if (!aChild.Is() && pIndex) in GetChild()
344 aChild = pIndex->CreatePage(aChild.GetPagePos(),pParent,aChild.HasPage()); in GetChild()
346 return aChild; in GetChild()
464 rStream >> nValue >> rPage.aChild; in operator >>()
491 rStream << nValue << rPage.aChild; in operator <<()
521 nPagePos, HasParent() ? aParent->GetPagePos() : 0 ,nCount, aChild.GetPagePos()); in PrintPage()
/trunk/main/connectivity/source/inc/dbase/
H A Ddindexnode.hxx128 aChild; // Zeiger auf rechte ChildPage member in connectivity::dbase::ONDXPage
199 inline sal_Bool ONDXPage::IsLeaf() const {return !aChild.HasPage();} in IsLeaf()
212 aChild = aCh; in SetChild()
213 if (aChild.Is()) in SetChild()
214 aChild->SetParent(this); in SetChild()
228 ONDXPagePtr aChild; /* naechster Seitenverweis */ member in connectivity::dbase::ONDXNode
235 :aChild(aPagePtr),aKey(rKey) {} in ONDXNode()
238 sal_Bool HasChild() const {return aChild.HasPage();} in HasChild()
329 aChild = aCh; in SetChild()
330 if (aChild.Is()) in SetChild()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/automaton/
H A DValidatingCreator.java255 for (final INode aChild : aComplexType.GetChildren()) in Visit()
285 for (final INode aChild : aChoice.GetChildren()) in Visit()
288 aChild, in Visit()
370 for (final INode aChild : aNodes) in Visit()
373 ProcessType(aChild, aCurrentState, aCurrentState, aNextState); in Visit()
438 final INode aChild = aOccurrence.GetChildren().iterator().next(); in Visit() local
464 ProcessType(aChild, aCurrentState, aCurrentState, aNextState); in Visit()
482 ProcessType(aChild, aLoopState, aLoopState, aLoopState); in Visit()
539 for (final INode aChild : aSequence.GetChildren()) in Visit()
542 ProcessType(aChild, aCurrentState, aCurrentState, aNextState); in Visit()
[all …]
/trunk/main/forms/source/xforms/submission/
H A Dserialization_urlencoded.cxx127 Reference< XNode > aChild; in serialize_node() local
137 aChild = aChildList->item(i); in serialize_node()
138 if (aChild->getNodeType() == NodeType_TEXT_NODE) in serialize_node()
140 aText = Reference< XText >(aChild, UNO_QUERY); in serialize_node()
163 aChild = aChildList->item(i); in serialize_node()
165 if (aChild.is() && aChild->getNodeType() == NodeType_ELEMENT_NODE) in serialize_node()
166 serialize_node(aChild); in serialize_node()
/trunk/main/editeng/source/accessibility/
H A DAccessibleParaManager.cxx145 sal_Bool AccessibleParaManager::IsReferencable( WeakPara::HardRefType aChild ) in IsReferencable() argument
147 return aChild.is(); in IsReferencable()
189 WeakPara::HardRefType aChild( GetChild( nParagraphIndex ).first.get() ); in CreateChild() local
202 aChild = WeakPara::HardRefType( xChild, pChild ); in CreateChild()
204 InitChild( *aChild, rEditSource, nChild, nParagraphIndex ); in CreateChild()
206 maChildren[ nParagraphIndex ] = WeakChild( aChild, pChild->getBounds() ); in CreateChild()
209 return Child( aChild.getRef(), GetChild( nParagraphIndex ).second ); in CreateChild()
408 WeakPara::HardRefType aChild( rChild.first.get() ); in ShutdownPara() local
410 if( IsReferencable( aChild ) ) in ShutdownPara()
411 aChild->SetEditSource( NULL ); in ShutdownPara()
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/canvas/
H A DShapeContainer.java209 TreeNode aChild = (TreeNode) aChildList.nextElement(); in AddAllChildren() local
210 if (aChild != null) { in AddAllChildren()
211 AddAllChildren (aChild); in AddAllChildren()
212 AddNode (aChild); in AddAllChildren()
220 TreeNode aChild = (TreeNode) aChildList.nextElement(); in RemoveAllChildren() local
221 if (aChild != null) { in RemoveAllChildren()
222 RemoveAllChildren (aChild); in RemoveAllChildren()
223 RemoveNode (aChild); in RemoveAllChildren()
/trunk/main/ooxml/source/framework/OOXMLViewer/src/org/apache/openoffice/ooxml/viewer/
H A DStreamView.java98 DefaultMutableTreeNode aChild = GetChildNodeForName(aNode, sPart); in CreateTreeModel() local
99 if (aChild == null) in CreateTreeModel()
101 aChild = new DefaultMutableTreeNode(sPart); in CreateTreeModel()
102 aNode.add(aChild); in CreateTreeModel()
105 aNode = aChild; in CreateTreeModel()
133 final TreeNode aChild = aNode.getChildAt(nIndex); in GetChildNodeForName() local
134 if (aChild.toString().equals(sName)) in GetChildNodeForName()
136 return (DefaultMutableTreeNode)aChild; in GetChildNodeForName()
/trunk/main/toolkit/test/accessibility/ov/
H A DSelectionView.java177 JToggleButton aChild; in Update() local
179 aChild = new JCheckBox (sName); in Update()
182 aChild = new JRadioButton (sName); in Update()
183 aButtonGroup.add (aChild); in Update()
187 aChild.setSelected (aChildStateSet!=null in Update()
190 aChild.addActionListener (this); in Update()
191 maChildrenSelector.add (aChild); in Update()
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityTreeModel.java114 AccessibilityNode aChild = null; in getChild() local
119 aChild = aParentNode.GetChildNoCreate (nIndex); in getChild()
123 if (aChild == null) in getChild()
125 aChild = aParentNode.CreateChild (nIndex); in getChild()
126 aParentNode.SetChild ((AccessibilityNode)aChild, nIndex); in getChild()
133 return aChild; in getChild()
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/view/
H A DSelectionView.java185 JToggleButton aChild; in Update() local
186 aChild = new JCheckBox (sName); in Update()
187 aChild.setFont (maContainer.GetViewFont()); in Update()
191 aChild.setSelected (aChildStateSet!=null in Update()
194 aChild.addActionListener (this); in Update()
195 maChildrenSelector.add (aChild); in Update()

Completed in 105 milliseconds

12