| /AOO41X/main/toolkit/test/accessibility/ |
| H A D | NodeFactory.java | 63 private void addDefaultHandlers (AccTreeNode aNode, XAccessibleContext xContext) in addDefaultHandlers() argument 68 aNode.addHandler (maContextHandler.createHandler (xContext)); in addDefaultHandlers() 69 aNode.addHandler (maTextHandler.createHandler (xContext)); in addDefaultHandlers() 70 aNode.addHandler (maEditableTextHandler.createHandler (xContext)); in addDefaultHandlers() 71 aNode.addHandler (maComponentHandler.createHandler (xContext)); in addDefaultHandlers() 72 aNode.addHandler (maExtendedComponentHandler.createHandler (xContext)); in addDefaultHandlers() 73 aNode.addHandler (maActionHandler.createHandler (xContext)); in addDefaultHandlers() 74 aNode.addHandler (maImageHandler.createHandler (xContext)); in addDefaultHandlers() 75 aNode.addHandler (maTableHandler.createHandler (xContext)); in addDefaultHandlers() 76 aNode.addHandler (maCellHandler.createHandler (xContext)); in addDefaultHandlers() [all …]
|
| H A D | AccessibilityTreeModel.java | 94 public void FireTreeStructureChanged (AccessibleTreeNode aNode) in FireTreeStructureChanged() argument 110 public void Apply (AccTreeNode aNode) in setRoot() 113 maCanvas.removeNode (aNode); in setRoot() 114 removeAccListener ((AccTreeNode)aNode); in setRoot() 159 protected boolean removeChild (AccessibleTreeNode aNode) in removeChild() argument 163 if( aNode == null ) in removeChild() 171 while (aNode.getChildCount() > 0) in removeChild() 172 if ( ! removeChild (aNode.getChildNoCreate (0))) in removeChild() 176 AccessibleTreeNode aParent = aNode.getParent(); in removeChild() 179 int nIndex = aParent.indexOf(aNode); in removeChild() [all …]
|
| H A D | AccessibilityTree.java | 121 protected void expandTree (AccessibleTreeNode aNode, Expander aExpander) in expandTree() argument 133 expandTree (new TreePath (aNode.createPath()), aExpander); in expandTree() 144 ((AccessibilityTreeModel)maTree.getModel()).unlock (aNode); in expandTree() 171 AccessibleTreeNode aNode = (AccessibleTreeNode)aObj; in expandTree() local 172 int nLength = aNode.getChildCount(); in expandTree() 176 aPath.pathByAddingChild( aNode.getChild( i ) ), in expandTree() 200 public void expandShapes (AccessibleTreeNode aNode) in expandShapes() argument 202 expandTree (aNode, new ShapeExpander()); in expandShapes() 210 public void expandAll (AccessibleTreeNode aNode) in expandAll() argument 212 expandTree (aNode, new AllExpander()); in expandAll() [all …]
|
| H A D | AccessibleTextHandler.java | 183 VectorNode aNode = new VectorNode (sName, aParent); in textAtIndexNode() local 208 aNode.addChild (new StringNode (textAtIndexNodeString( in textAtIndexNode() 210 sWord.SegmentText, sBefore.SegmentText, sBehind.SegmentText), aNode)); in textAtIndexNode() 218 if (aNode.getChildCount() > 50) in textAtIndexNode() 224 aNode.addChild (new StringNode (textAtIndexNodeString( in textAtIndexNode() 226 sWord.SegmentText, sBefore.SegmentText, sBehind.SegmentText), aNode)); in textAtIndexNode() 230 aNode.addChild (new StringNode (e.toString(), aNode)); in textAtIndexNode() 234 aNode.addChild (new StringNode (e.toString(), aNode)); in textAtIndexNode() 238 return aNode; in textAtIndexNode() 387 public String[] getActions (AccessibleTreeNode aNode) in getActions() argument [all …]
|
| H A D | NodeMap.java | 28 public abstract void Apply (AccTreeNode aNode); in Apply() argument 52 public boolean InsertNode (XAccessibleContext xContext, AccessibleTreeNode aNode) in InsertNode() argument 56 aNode); in InsertNode() 57 return aPreviousNode != aNode; in InsertNode() 60 protected void RemoveNode (AccessibleTreeNode aNode) in RemoveNode() argument 64 if ((aNode != null) && (aNode instanceof AccTreeNode)) in RemoveNode() 66 maXAccessibleToNode.remove (((AccTreeNode)aNode).getContext()); in RemoveNode() 72 + aNode + " : " + e); in RemoveNode() 112 XAccessibleContext GetAccessible (AccessibleTreeNode aNode) in GetAccessible() argument 114 if ((aNode != null) && (aNode instanceof AccTreeNode)) in GetAccessible() [all …]
|
| H A D | AccessibleUNOHandler.java | 56 private XServiceInfo GetServiceInfo (AccessibleTreeNode aNode) in GetServiceInfo() argument 59 if (aNode instanceof AccTreeNode) in GetServiceInfo() 61 XServiceInfo.class, ((AccTreeNode)aNode).getContext()); in GetServiceInfo() 64 private XTypeProvider GetTypeProvider (AccessibleTreeNode aNode) in GetTypeProvider() argument 67 if (aNode instanceof AccTreeNode) in GetTypeProvider() 69 XTypeProvider.class, ((AccTreeNode)aNode).getContext()); in GetTypeProvider() 115 VectorNode aNode = new VectorNode ("Supported Services", aParent); in CreateServiceTree() local 119 aNode.addChild (new StringNode (aServiceNames[i], aParent)); in CreateServiceTree() 121 return aNode; in CreateServiceTree() 128 VectorNode aNode = new VectorNode ("Supported Interfaces", aParent); in CreateInterfaceTree() local [all …]
|
| H A D | Canvas.java | 86 public void addNode (AccTreeNode aNode) in addNode() argument 88 if (maNodes.indexOf (aNode) == -1) in addNode() 90 maNodes.add (aNode); in addNode() 92 CanvasShape aObject = (CanvasShape) maObjects.get (aNode); in addNode() 95 aObject = new CanvasShape (aNode); in addNode() 102 maObjects.put (aNode, aObject); in addNode() 110 public void removeNode (AccTreeNode aNode) in removeNode() argument 112 int i = maNodes.indexOf (aNode); in removeNode() 115 Object aObject = maObjects.get(aNode); in removeNode() 118 maNodes.remove (aNode); in removeNode() [all …]
|
| H A D | NodeHandler.java | 98 public boolean removeChild (AccessibleTreeNode aNode, int nIndex) in removeChild() argument 116 public int indexOf (AccessibleTreeNode aNode) in indexOf() argument 120 return maChildList.indexOf (aNode); in indexOf() 136 public boolean isChildEditable (AccessibleTreeNode aNode, int nIndex) in isChildEditable() argument 146 public String[] getActions (AccessibleTreeNode aNode) in getActions() argument 152 public void performAction (AccessibleTreeNode aNode, int nIndex) in performAction() argument 158 public void update (AccessibleTreeNode aNode) in update() argument
|
| H A D | AccessibleSelectionHandler.java | 133 public String[] getActions (AccessibleTreeNode aNode) in getActions() argument 135 if( aNode instanceof AccTreeNode ) in getActions() 138 ((AccTreeNode)aNode).getSelection(); in getActions() 147 public void performAction (AccessibleTreeNode aNode, int nIndex) in performAction() argument 149 new SelectionDialog( (AccTreeNode)aNode ).show(); in performAction()
|
| H A D | AccTreeNode.java | 249 public int indexOf (AccessibleTreeNode aNode) in indexOf() argument 252 if (aNode != null) in indexOf() 257 int nIndex = aDescriptor.maHandler.indexOf (aNode); in indexOf() 331 AccessibleTreeNode aNode = aHandler.addAccessibleChild (this, xChild); in addAccessibleChild() local 333 return aNode; in addAccessibleChild()
|
| /AOO41X/main/accessibility/workben/org/openoffice/accessibility/awb/canvas/ |
| H A D | ShapeContainer.java | 80 public synchronized boolean AddNode (TreeNode aNode) in AddNode() argument 82 CanvasShape aShape = (CanvasShape)maShapeList.get (aNode); in AddNode() 85 aShape = new CanvasShape (aNode, maCanvas); in AddNode() 87 if (aNode instanceof XAccessibleEventBroadcaster) in AddNode() 88 ((XAccessibleEventBroadcaster) aNode).addEventListener(aShape); in AddNode() 96 maShapeList.put (aNode, aShape); in AddNode() 109 public synchronized boolean RemoveNode (TreeNode aNode) in RemoveNode() argument 111 CanvasShape aShape = (CanvasShape)maShapeList.get (aNode); in RemoveNode() 114 if (aNode instanceof XAccessibleEventBroadcaster) in RemoveNode() 115 ((XAccessibleEventBroadcaster) aNode).removeEventListener(aShape); in RemoveNode() [all …]
|
| /AOO41X/main/store/source/ |
| H A D | storpage.cxx | 166 OStoreBTreeNodeObject aNode; 168 eErrCode = m_aRoot.find_lookup (aNode, nIndex, entry::CompareGreater(rEntry), *this); 172 PageHolderObject< page > xPage (aNode.get()); 197 eErrCode = loadObjectAt (aNode, nAddr); 199 PageHolderObject< page > xNext (aNode.get()); 203 aNode.remove (nIndex, rEntry, *this); 209 eErrCode = loadObjectAt (aNode, nAddr); 230 OStoreBTreeNodeObject aNode (m_aRoot.get()); in remove_Impl() local 233 PageHolderObject< page > xPage (aNode.get()); in remove_Impl() 256 storeError eErrCode = loadObjectAt (aNode, nAddr); in remove_Impl() [all …]
|
| /AOO41X/main/accessibility/workben/org/openoffice/accessibility/awb/tree/ |
| H A D | AccessibilityTreeModel.java | 69 AccessibilityNode aNode = (AccessibilityNode)aObject; in isLeaf() local 72 bIsLeaf = aNode.isLeaf(); in isLeaf() 102 AccessibilityNode aNode = (AccessibilityNode)aObject; in getChildCount() local 103 return aNode.getChildCount(); in getChildCount() 176 public synchronized void AddTopLevelNode (AccessibilityNode aNode) in AddTopLevelNode() argument 178 if (aNode != null) in AddTopLevelNode() 192 aNode.SetParent (aRoot); in AddTopLevelNode() 193 aRoot.Append (aNode); in AddTopLevelNode() 194 nodesWereInserted (aRoot, new int[]{aRoot.getIndex (aNode)}); in AddTopLevelNode() 203 public synchronized void RemoveTopLevelNode (AccessibilityNode aNode) in RemoveTopLevelNode() argument [all …]
|
| /AOO41X/main/linguistic/source/ |
| H A D | lngsvcmgr.cxx | 208 String aNode( String::CreateFromAscii( pEntryName ) ); in SetAvailableCfgServiceLists() local 209 uno::Sequence < OUString > aNodeNames( /*aCfg.*/GetNodeNames( aNode ) ); in SetAvailableCfgServiceLists() 221 OUString aPropName( aNode ); in SetAvailableCfgServiceLists() 663 OUString aNode( aSpellCheckerList ); in Notify() local 666 OUString aPropName( aNode ); in Notify() 688 OUString aNode( aGrammarCheckerList ); in Notify() local 691 OUString aPropName( aNode ); in Notify() 716 OUString aNode( aHyphenatorList ); in Notify() local 719 OUString aPropName( aNode ); in Notify() 741 OUString aNode( aThesaurusList ); in Notify() local [all …]
|
| /AOO41X/main/unoxml/source/dom/ |
| H A D | attributesmap.cxx | 70 Reference< XNode > aNode; in getNamedItem() local 81 aNode = Reference< XNode >( in getNamedItem() 89 return aNode; in getNamedItem() 102 Reference< XNode > aNode; in getNamedItemNS() local 118 aNode = Reference< XNode >( in getNamedItemNS() 126 return aNode; in getNamedItemNS() 137 Reference< XNode > aNode; in item() local 147 aNode = Reference< XNode >( in item() 156 return aNode; in item()
|
| H A D | saxbuilder.cxx | 155 Reference< XNode > aNode = m_aNodeStack.top(); in endDocumentFragment() local 156 if ( aNode->getNodeType() != NodeType_DOCUMENT_FRAGMENT_NODE) in endDocumentFragment() 189 Reference< XNode > aNode = m_aNodeStack.top(); in endDocument() local 190 if ( aNode->getNodeType() != NodeType_DOCUMENT_NODE) in endDocument() 309 Reference< XNode > aNode(m_aNodeStack.top()); in endElement() local 310 if (aNode->getNodeType() != NodeType_ELEMENT_NODE) in endElement() 313 Reference< XElement > aElement(aNode, UNO_QUERY); in endElement()
|
| /AOO41X/main/accessibility/workben/org/openoffice/accessibility/awb/view/ |
| H A D | TextView.java | 325 DefaultMutableTreeNode aNode = new DefaultMutableTreeNode (sTitle); in CreateNode() local 327 aNode.add (CreateSegmentNode ("Before", nTextType, BEFORE)); in CreateNode() 328 aNode.add (CreateSegmentNode ("At", nTextType, AT)); in CreateNode() 329 aNode.add (CreateSegmentNode ("Behind", nTextType, BEHIND)); in CreateNode() 331 return aNode; in CreateNode() 338 DefaultMutableTreeNode aNode = new DefaultMutableTreeNode (sTitle); in CreateSegmentNode() local 348 aNode.add (aSegmentNode); in CreateSegmentNode() 357 return aNode; in CreateSegmentNode() 413 DefaultMutableTreeNode aNode, in AddAttributeNodes() argument 421 aNode.add (new DefaultMutableTreeNode ( in AddAttributeNodes() [all …]
|
| /AOO41X/main/unotools/source/config/ |
| H A D | configitem.cxx | 535 Any aNode = xHierarchyAccess->getByHierarchicalName(sPath); in GetReadOnlyStates() local 536 if (!(aNode >>= xNode) || !xNode.is()) in GetReadOnlyStates() 686 Any aNode = xHierarchyAccess->getByHierarchicalName(sNode); in PutProperties() local 689 aNode >>= xNodeAcc; in PutProperties() 876 Any aNode = xHierarchyAccess->getByHierarchicalName(rNode); in GetNodeNames() local 877 aNode >>= xCont; in GetNodeNames() 907 Any aNode = xHierarchyAccess->getByHierarchicalName(rNode); in ClearNodeSet() local 908 aNode >>= xCont; in ClearNodeSet() 948 Any aNode = xHierarchyAccess->getByHierarchicalName(rNode); in ClearNodeElements() local 949 aNode >>= xCont; in ClearNodeElements() [all …]
|
| /AOO41X/main/desktop/source/deployment/registry/component/ |
| H A D | dp_compbackenddb.cxx | 119 Reference<css::xml::dom::XNode> aNode = getKeyElement(url); in getEntry() local 120 if (aNode.is()) in getEntry() 122 bool bJava = readSimpleElement(OUSTR("java-type-library"), aNode) in getEntry() 128 aNode, in getEntry() 134 aNode, in getEntry()
|
| /AOO41X/main/l10ntools/source/filter/utils/ |
| H A D | XMLHelper.java | 121 public static java.util.HashMap convertNodeToPropSet(org.w3c.dom.Node aNode) in convertNodeToPropSet() argument 127 … java.util.Vector lChildNodes = XMLHelper.extractChildNodesByTagName(aNode, XMLTAG_PROP); in convertNodeToPropSet() 636 public static java.lang.String extractNodeAttribByName(org.w3c.dom.Node aNode , in extractNodeAttribByName() argument 641 if (aNode.getNodeType() != org.w3c.dom.Node.ELEMENT_NODE) in extractNodeAttribByName() 648 org.w3c.dom.NamedNodeMap lAttribs = aNode.getAttributes(); in extractNodeAttribByName() 689 public static java.util.Vector extractChildNodesByTagName(org.w3c.dom.Node aNode, in extractChildNodesByTagName() argument 694 …java.util.Vector lChilds = XMLHelper.extractChildNodesByType(aNode,org.w3c.dom.Node.ELEME… in extractChildNodesByTagName() 727 public static java.util.Vector extractChildNodesByType(org.w3c.dom.Node aNode, in extractChildNodesByType() argument 732 org.w3c.dom.NodeList lChilds = aNode.getChildNodes(); in extractChildNodesByType()
|
| /AOO41X/main/basegfx/source/inc/ |
| H A D | polygontemplate.hxx | 365 LocalImplSimplePointEntry aNode(rPoint); in insert() local 368 maPoints.insert(aIndex, nCount, aNode); in insert() 374 LocalImplSimpleBezierEntry aNode; in insert() local 377 mpVectors->insert(aIndex, nCount, aNode); in insert() 425 LocalImplSimpleBezierEntry aNode; in insert() local 428 mpVectors->insert(aIndex, nCount, aNode); in insert()
|
| H A D | PolygonPoint.hxx | 365 LocalSimplePointEntry aNode(rPoint); in insert() local 368 maPoints.insert(aIndex, nCount, aNode); in insert() 374 LocalSimpleBezierEntry aNode; in insert() local 377 mpVectors->insert(aIndex, nCount, aNode); in insert() 425 LocalSimpleBezierEntry aNode; in insert() local 428 mpVectors->insert(aIndex, nCount, aNode); in insert()
|
| /AOO41X/main/sal/qa/rtl/uuid/ |
| H A D | rtl_Uuid.cxx | 89 sal_uInt8 aNode[TEST_UUID][16]; in createUuid_001() local 93 rtl_createUuid( aNode[i], 0, sal_False ); in createUuid_001() 100 if ( rtl_compareUuid( aNode[i] , aNode[i2] ) == 0 ) in createUuid_001()
|
| /AOO41X/main/desktop/source/deployment/registry/configuration/ |
| H A D | dp_configurationbackenddb.cxx | 112 Reference<css::xml::dom::XNode> aNode = getKeyElement(url); in getEntry() local 113 if (aNode.is()) in getEntry() 115 retData.dataUrl = readSimpleElement(OUSTR("data-url"), aNode); in getEntry() 116 retData.iniEntry = readSimpleElement(OUSTR("ini-entry"), aNode); in getEntry()
|
| /AOO41X/main/forms/source/xforms/submission/ |
| H A D | serialization_urlencoded.cxx | 119 void CSerializationURLEncoded::serialize_node(const Reference< XNode >& aNode) in serialize_node() argument 126 Reference< XNodeList > aChildList = aNode->getChildNodes(); in serialize_node() 129 if (aNode->getNodeType() == NodeType_ELEMENT_NODE) in serialize_node() 131 ::rtl::OUString aName = aNode->getNodeName(); in serialize_node()
|