Home
last modified time | relevance | path

Searched refs:aNode (Results 1 – 25 of 90) sorted by relevance

1234

/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/html/
H A DHtmlGenerator.java200 WriteLocation(aNode); in Visit()
202 WriteChildren(aNode); in Visit()
212 WriteLocation(aNode); in Visit()
214 WriteChildren(aNode); in Visit()
224 WriteLocation(aNode); in Visit()
226 WriteChildren(aNode); in Visit()
237 WriteLocation(aNode); in Visit()
239 WriteChildren(aNode); in Visit()
261 WriteLocation(aNode); in Visit()
262 WriteChildren(aNode); in Visit()
[all …]
H A Dcode.js247 if (typeof aNode==='undefined')
257 switch(aNode.type)
262 "type:", GetTypeLink(aNode["value-type"], aNode["value-type"], -1),
263 "use:", aNode.use]);
278 aEntry.innerHTML = aNode.type + " " + aNode.name;
286 aEntry.innerHTML = aNode.type + " " + aNode.name;
294 …aEntry.innerHTML = "element <b>" + aNode["tag"] + "</b> -> " + GetTypeLink(aNode["result-type"], a…
298 aEntry.innerHTML = aNode.minimum +" -> " + aNode.maximum;
310 aEntry.innerHTML = aNode.type + " " + aNode.name;
337 var aChildren = aNode["children"];
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/simple/
H A DSimpleTypeDescriptorFactory.java55 Counters.put(aNode.GetNodeType(), Counters.get(aNode.GetNodeType())+1); in Default()
120 public void Visit (final BuiltIn aNode) in Visit() argument
122 assert(aNode.GetChildCount() == 0); in Visit()
127 switch(aNode.GetBuiltInType()) in Visit()
185 public void Visit (final List aNode) in Visit() argument
202 assert(aNode.GetChildCount() == 0); in Visit()
213 aNode, in Visit()
226 switch(aNode.GetChildCount()) in Visit()
258 public void Visit (final Union aNode) in Visit() argument
283 switch(aNode.GetNodeType()) in Default()
[all …]
H A DNumberNode.java87 final Restriction aNode, in ApplyRestriction() argument
90 if (aNode.HasFeature(Restriction.MinExclusiveBit)) in ApplyRestriction()
91 ApplyMinimum(ParseString(aNode.GetMinExclusive()), false); in ApplyRestriction()
92 if (aNode.HasFeature(Restriction.MinInclusiveBit)) in ApplyRestriction()
93 ApplyMinimum(ParseString(aNode.GetMinInclusive()), true); in ApplyRestriction()
95 if (aNode.HasFeature(Restriction.MaxExclusiveBit)) in ApplyRestriction()
96 ApplyMaximum(ParseString(aNode.GetMaxExclusive()), false); in ApplyRestriction()
97 if (aNode.HasFeature(Restriction.MaxInclusiveBit)) in ApplyRestriction()
98 ApplyMaximum(ParseString(aNode.GetMaxInclusive()), true); in ApplyRestriction()
100 if (aNode.HasFeature(Restriction.EnumerationBit)) in ApplyRestriction()
[all …]
/trunk/main/toolkit/test/accessibility/
H A DNodeFactory.java69 aNode.addHandler (maTextHandler.createHandler (xContext)); in addDefaultHandlers()
74 aNode.addHandler (maImageHandler.createHandler (xContext)); in addDefaultHandlers()
76 aNode.addHandler (maCellHandler.createHandler (xContext)); in addDefaultHandlers()
81 aNode.addHandler (maUNOHandler.createHandler (xContext)); in addDefaultHandlers()
82 aNode.addHandler (maTreeHandler.createHandler (xContext)); in addDefaultHandlers()
93 aNode.addHandler (aHandler); in addDefaultHandlers()
101 aNode.addHandler (aHandler); in addDefaultHandlers()
110 aNode.addHandler (maUNOHandler.createHandler (xContext)); in addDefaultHandlers()
141 addDefaultHandlers (aNode, xContext); in createDefaultNode()
143 if (aNode == null) in createDefaultNode()
[all …]
H A DAccessibilityTreeModel.java163 if( aNode == null ) in removeChild()
183 maNodeMap.RemoveNode (aNode); in removeChild()
189 + aNode + " : " + e); in removeChild()
203 removeChild (aNode); in removeNode()
205 System.out.println (aNode); in removeNode()
294 + aNode + ": " + e); in addNode()
309 aNode.createPath (aPath); in createPath()
421 createPath(aNode), in createChangeEvent()
502 AccTreeNode aNode = null; in updateNode() local
507 aNode = (AccTreeNode) aTreeNode; in updateNode()
[all …]
H A DAccessibleTextHandler.java218 if (aNode.getChildCount() > 50) 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()
390 if (aNode instanceof AccTreeNode) in getActions()
398 if ( ! (aNode instanceof AccTreeNode)) in performAction()
401 AccTreeNode aATNode = (AccTreeNode)aNode; in performAction()
487 AccTreeNode aNode; field in TextActionDialog
498 aNode = aNd; in TextActionDialog()
606 public TextEditDialog( AccTreeNode aNode, in TextEditDialog() argument
[all …]
H A DAccessibilityTree.java172 int nLength = aNode.getChildCount(); 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()
266 aNode.getActions(aActions); in popupTrigger()
271 aNode, i ) ); in popupTrigger()
284 aNode, in popupTrigger()
310 maNode = aNode; in NodeAction()
329 maNode = aNode; in ShapeExpandAction()
[all …]
H A DNodeMap.java28 public abstract void Apply (AccTreeNode aNode); in Apply() 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()
72 + aNode + " : " + e); in RemoveNode()
112 XAccessibleContext GetAccessible (AccessibleTreeNode aNode) in GetAccessible() argument
114 if ((aNode != null) && (aNode instanceof AccTreeNode)) in GetAccessible()
115 return ((AccTreeNode)aNode).getContext(); in GetAccessible()
125 boolean ValueIsMember (AccessibleTreeNode aNode) in ValueIsMember() argument
[all …]
H A DAccessibleUNOHandler.java56 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 DCanvas.java86 public void addNode (AccTreeNode aNode) in addNode() argument
88 if (maNodes.indexOf (aNode) == -1) in addNode()
90 maNodes.add (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()
123 public void updateNode (AccTreeNode aNode) in updateNode() argument
[all …]
H A DNodeHandler.java98 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
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/canvas/
H A DShapeContainer.java85 aShape = new CanvasShape (aNode, maCanvas); in AddNode()
96 maShapeList.put (aNode, aShape); in AddNode()
117 maShapeList.remove (aNode); in RemoveNode()
145 public CanvasShape Get (TreeNode aNode) in Get() argument
147 if (aNode != null) { in Get()
148 return (CanvasShape)maShapeList.get (aNode); in Get()
181 RemoveAllChildren(aNode); in treeStructureChanged()
182 AddAllChildren(aNode); in treeStructureChanged()
193 RemoveAllChildren (aNode); in treeWillCollapse()
199 AddAllChildren (aNode); in treeExpanded()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/base/
H A DNodeVisitorAdapter.java59 Default(aNode); in Visit()
65 Default(aNode); in Visit()
71 Default(aNode); in Visit()
77 Default(aNode); in Visit()
83 Default(aNode); in Visit()
95 Default(aNode); in Visit()
101 Default(aNode); in Visit()
107 Default(aNode); in Visit()
113 Default(aNode); in Visit()
119 Default(aNode); in Visit()
[all …]
/trunk/main/store/source/
H A Dstorpage.cxx166 OStoreBTreeNodeObject aNode;
203 aNode.remove (nIndex, rEntry, *this);
287 return aNode.remove (i, rEntry, *this); in remove_Impl()
417 OStoreBTreeNodeObject aNode; in iterate() local
445 OStoreBTreeNodeObject aNode; in load_dirpage_Impl() local
466 node aNode; in save_dirpage_Impl() local
493 return saveObjectAt (aNode, aNode.location()); in save_dirpage_Impl()
506 return saveObjectAt (aNode, aNode.location()); in save_dirpage_Impl()
527 OStoreBTreeNodeObject aNode; in attrib() local
554 eErrCode = saveObjectAt (aNode, aNode.location()); in attrib()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/automaton/
H A DValidatingCreator.java553 public void Visit (final BuiltIn aNode) in Visit() argument
563 public void Visit (final List aNode) in Visit() argument
572 public void Visit (final Restriction aNode) in Visit() argument
583 ProcessAttributes(aNode); in Visit()
593 public void Visit (final SimpleType aNode) in Visit() argument
613 public void Visit (final Union aNode) in Visit() argument
640 public void Visit (final Attribute aNode) in Visit() argument
658 final INode aNode, in ProcessType() argument
665 aNode.AcceptVisitor(this); in ProcessType()
755 for (final INode aNode : aNodes) in GetAllReplacement()
[all …]
H A DNonValidatingCreator.java172 for (final INode aNode : new DereferencingNodeIterator(aComplexType, maSchemaBase, true)) in CreateForComplexType()
173 ProcessAttributes(aNode); in CreateForComplexType()
191 for (final INode aNode : new DereferencingNodeIterator(aType, maSchemaBase, false)) in CollectElements()
193 if (aNode.GetNodeType() == NodeType.Element) in CollectElements()
194 aElements.add((Element)aNode); in CollectElements()
205 for (final INode aNode : new DereferencingNodeIterator(aType, maSchemaBase, false)) in CollectAnys()
207 if (aNode.GetNodeType() == NodeType.Any) in CollectAnys()
208 aAnys.add((Any)aNode); in CollectAnys()
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityTreeModel.java69 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()
208 int nIndex = aRoot.getIndex (aNode); in RemoveTopLevelNode()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/optimize/
H A DSchemaOptimizer.java76 final INode aNode = maTodoList.poll(); in Run() local
90 final QualifiedName aName = aNode.GetName(); in Run()
112 final Node aNode = maOriginalSchemaBase.GetTypeForName(aName); in RequestType() local
113 if (aNode == null) in RequestType()
116 RequestType(aNode); in RequestType()
122 void RequestType (final INode aNode) in RequestType() argument
124 if (aNode.GetNodeType() == NodeType.SimpleTypeReference) in RequestType()
125 System.out.println(aNode); in RequestType()
126 if ( ! maProcessedTypes.contains(aNode)) in RequestType()
128 maProcessedTypes.add(aNode); in RequestType()
[all …]
/trunk/main/ooxml/source/framework/OOXMLViewer/src/org/apache/openoffice/ooxml/viewer/
H A DStreamView.java95 DefaultMutableTreeNode aNode = aRootNode; in CreateTreeModel() local
102 aNode.add(aChild); in CreateTreeModel()
105 aNode = aChild; in CreateTreeModel()
131 for (int nIndex=0; nIndex<aNode.getChildCount(); ++nIndex) in GetChildNodeForName()
133 final TreeNode aChild = aNode.getChildAt(nIndex); in GetChildNodeForName()
226 TreeNode aNode = (TreeNode)getModel().getRoot(); in MakePartVisible() local
228 aTreeNodePath[nDepth++] = aNode; in MakePartVisible()
232 for (int nIndex=0; nIndex<aNode.getChildCount(); ++nIndex) in MakePartVisible()
234 final TreeNode aChildNode = aNode.getChildAt(nIndex); in MakePartVisible()
238 aNode = aChildNode; in MakePartVisible()
[all …]
/trunk/main/linguistic/source/
H A Dlngsvcmgr.cxx221 OUString aPropName( aNode ); in SetAvailableCfgServiceLists()
663 OUString aNode( aSpellCheckerList ); in Notify() local
666 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
744 OUString aPropName( aNode ); in Notify()
1129 String aPrefix( aNode ); in SetCfgServiceLists()
1172 String aPrefix( aNode ); in SetCfgServiceLists()
1219 String aPrefix( aNode ); in SetCfgServiceLists()
[all …]
/trunk/main/unoxml/source/dom/
H A Dattributesmap.cxx70 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()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/complex/
H A DExtension.java125 INode aNode = aParent; in AddNodes() local
128 switch (aNode.GetNodeType()) in AddNodes()
131 aNode = ((Extension)aNode).GetBaseType(aSchemaBase); in AddNodes()
137 switch(aNode.GetChildCount()) in AddNodes()
142 aNode = aNode.GetOnlyChild(); in AddNodes()
150 aNodes.add(aNode); in AddNodes()
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/view/
H A DTextView.java325 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 …]
/trunk/main/unotools/source/config/
H A Dconfigitem.cxx536 if (!(aNode >>= xNode) || !xNode.is()) in GetReadOnlyStates()
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()
1024 aNode >>= xCont;
1125 aNode >>= xCont;
[all …]

Completed in 92 milliseconds

1234