Home
last modified time | relevance | path

Searched refs:StringNode (Results 1 – 25 of 31) sorted by relevance

12

/trunk/main/toolkit/test/accessibility/
H A DAccessibleCellHandler.java92 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()
131 …aChild = 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()
H A DAccessibleTextHandler.java93 aChild = new StringNode (xText.getText(), aParent); in createChild()
99 aChild = new StringNode (characters( xText ), aParent); in createChild()
102 aChild = new StringNode ("selection: " in createChild()
146 aChild = new StringNode (bounds( xText ), aParent); in createChild()
152 aChild = new StringNode ("unknown child index " + nIndex, aParent); in createChild()
208 aNode.addChild (new StringNode (textAtIndexNodeString( in textAtIndexNode()
224 aNode.addChild (new StringNode (textAtIndexNodeString( in textAtIndexNode()
230 aNode.addChild (new StringNode (e.toString(), aNode)); in textAtIndexNode()
234 aNode.addChild (new StringNode (e.toString(), aNode)); in textAtIndexNode()
362 new StringNode( aValues[i].Name + ": " + aValues[i].Value, in getAttributes()
[all …]
H A DAccessibleComponentHandler.java69 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()
H A DAccessibleTableHandler.java70 … aChild = new StringNode ("# table rows: " + xTable.getAccessibleRowCount(), aParent); in createChild()
73 … aChild = 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()
H A DAccessibleSelectionHandler.java73 aChild = new StringNode( in createChild()
98 aVNode.addChild( new StringNode( in createChild()
108 aVNode.addChild( new StringNode( in createChild()
117 aChild = new StringNode( "IndexOutOfBounds", in createChild()
123 aChild = new StringNode( "ERROR", aParent ); in createChild()
H A DAccessibleUNOHandler.java82 aChild = new StringNode ("Implementation name: " + in createChild()
90 aChild = new StringNode ( in createChild()
99 aChild = new StringNode ( in createChild()
119 aNode.addChild (new StringNode (aServiceNames[i], aParent)); in CreateServiceTree()
132 aNode.addChild (new StringNode (aTypes[i].getTypeName(), aParent)); in CreateInterfaceTree()
H A DAccessibleTreeHandler.java70 aChild = new StringNode ("Child count: " + mxContext.getAccessibleChildCount(), 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()
H A DStringNode.java27 class StringNode class
30 public StringNode (String aDisplayObject, AccessibleTreeNode aParent) in StringNode() method in StringNode
H A DAccessibleExtendedComponentHandler.java73 aChild = new StringNode ("Depricated Foreground color: R" in createChild()
82 aChild = new StringNode ("Depricated Background color: R" in createChild()
H A DAccessibleActionHandler.java70 … aChild = new StringNode ("Number of actions: " + xAction.getAccessibleActionCount(), in createChild()
85 aChild = new StringNode ("ERROR", aParent); in createChild()
H A DAccessibleRelationHandler.java104 aVNode.addChild( new StringNode( aBuffer.toString(), in createChild()
112 aChild = new StringNode( "IndexOutOfBounds", aParent ); in createChild()
H A DAccessibleActionNode.java29 extends StringNode
H A DVectorNode.java29 extends StringNode
H A DAccessibleEditableTextHandler.java59 return new StringNode ("XAccessibleEditableText is supported", aParent); in createChild()
H A DAccessibleHyperlinkHandler.java61 return new StringNode ("interface XAccessibleHyperlink is supported", aParent); in getChild()
H A DAccessibleHypertextHandler.java61 return new StringNode ("interface XAccessibleHypertext is supported", aParent); in getChild()
/trunk/main/rsc/source/tools/
H A Drsctree.cxx506 StringNode * StringNode::Search( const char * pSearch ) const{ in Search()
507 return (StringNode *)NameNode::Search( (const void *)pSearch ); in Search()
519 COMPARE StringNode::Compare( const NameNode * pSearch ) const in Compare()
522 ((const StringNode *)pSearch)->aName.GetBuffer() ); in Compare()
531 COMPARE StringNode::Compare( const void * pSearch ) const in Compare()
H A Drscdef.cxx261 : StringNode( rDefName ) in RscDefine()
271 : StringNode( rDefName ) in RscDefine()
380 return (RscDefine *)StringNode::Search( pStr ); in Search()
/trunk/main/rsc/inc/
H A Drsctree.hxx96 class StringNode : public NameNode class
107 StringNode(){}; in StringNode() function in StringNode
108 StringNode( const ByteString & rStr ) { aName = rStr; } in StringNode() function in StringNode
110 StringNode* Search( const char * ) const;
H A Drscdef.hxx117 class RscDefine : public StringNode
143 using StringNode::Search;
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/simple/
H A DUnionNode.java63 else if (aType instanceof StringNode) in AddNode()
70 if (aChild instanceof StringNode) in AddNode()
73 final ISimpleTypeNode aNewChild = ((StringNode)aChild).Join((StringNode)aType); in AddNode()
H A DStringNode.java35 public class StringNode class
38 public StringNode ( in StringNode() method in StringNode
169 public ISimpleTypeNode Join (final StringNode aType) in Join()
H A DISimpleTypeNodeVisitor.java29 void Visit (final StringNode aType); in Visit()
H A DSimpleTypeNodeVisitorAdapter.java46 public void Visit(StringNode aType) in Visit()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/
H A DParserTablesGenerator.java53 import org.apache.openoffice.ooxml.schema.simple.StringNode;
358 @Override public void Visit(StringNode aType) in WriteSimpleTypes()
399 final StringNode aType) in AppendStringDescription()

Completed in 78 milliseconds

12