Searched defs:axis (Results 26 - 50 of 70) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DStep.java44 public final Axis<? extends T> axis; field in class:Step
56 protected Step(Axis<? extends T> axis) { argument
57 this.axis = axis;
73 return filter(axis.iterator(contextNode));
97 public Any(Axis<? extends XSComponent> axis) { argument
98 super(axis);
108 protected Filtered(Axis<? extends T> axis) { argument
109 super(axis);
130 public Named(Axis<? extends XSDeclaration> axis, UNam argument
134 Named(Axis<? extends XSDeclaration> axis, String nsUri, String localName) argument
149 AnonymousType(Axis<? extends XSType> axis) argument
163 Facet(Axis<XSFacet> axis, String facetName) argument
178 Schema(Axis<XSSchema> axis, String uri) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStepPattern.java81 public StepPattern(int axis, int nodeType, Vector predicates) { argument
82 _axis = axis;
H A DXPathParser.java929 public StepPattern createStepPattern(int axis, Object test, Vector predicates) { argument
933 nodeType = (axis == Axis.ATTRIBUTE) ? NodeTest.ATTRIBUTE :
934 (axis == Axis.NAMESPACE) ? -1 : NodeTest.ELEMENT;
936 return new StepPattern(axis, nodeType, predicates);
941 return new StepPattern(axis, nodeType, predicates);
947 if (axis == Axis.NAMESPACE) {
974 nodeType = (axis == Axis.ATTRIBUTE) ? NodeTest.ATTRIBUTE
981 nodeType = (axis == Axis.ATTRIBUTE) ? _xsltc.registerAttribute(name)
986 final StepPattern result = new StepPattern(axis, nodeType, predicates);
997 public int findNodeType(int axis, Objec argument
1104 isElementAxis(int axis) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java98 * over an XPath axis, though perhaps not in document order.
100 * @param axis One of Axes.ANCESTORORSELF, etc.
102 * @return A DTMAxisTraverser, or null if the given axis isn't supported.
104 public DTMAxisTraverser getAxisTraverser(final int axis) argument
116 traverser = m_traversers[axis]; // Share/reuse existing traverser
122 switch (axis) // Generate new traverser
187 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_UNKNOWN_AXIS_TYPE, new Object[]{Integer.toString(axis)})); //"Unknown axis traversal type: "+axis);
191 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_AXIS_TRAVERSER_NOT_SUPPORTED, new Object[]{Axis.getNames(axis)}));
[all...]
H A DDTMDefaultBaseIterators.java97 * @param axis One of Axes.ANCESTORORSELF, etc.
100 * @return A DTMAxisIterator, or null if the given axis isn't supported.
102 public DTMAxisIterator getTypedAxisIterator(int axis, int type) argument
116 // iterator = new FilterIterator(getAxisIterator(axis),
121 switch (axis)
164 new Object[]{Axis.getNames(axis)}));
165 //"Error: typed iterator for axis "
166 //+ Axis.names[axis] + "not implemented");
179 * @param axis One of Axes.ANCESTORORSELF, etc.
181 * @return A DTMAxisIterator, or null if the given axis is
183 getAxisIterator(final int axis) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DAxesWalker.java52 public AxesWalker(LocPathIterator locPathIterator, int axis) argument
55 m_axis = axis;
207 int axis = getAxis();
208 int bit = WalkerFactory.getAnalysisBitFromAxes(axis);
503 * Returns the axis being iterated, if it is known.
505 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
587 /** The traversal axis from where the nodes will be filtered. */
590 /** The DTM inner traversal class, that corresponds to the super axis. */
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DStepPattern.java45 /** The axis for this test. */
55 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
58 public StepPattern(int whatToShow, String namespace, String name, int axis, argument
64 m_axis = axis;
72 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
75 public StepPattern(int whatToShow, int axis, int axisForPredicate) argument
80 m_axis = axis;
917 * Set the axis that this step should follow.
920 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
922 public void setAxis(int axis) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextAreaUI.java270 protected SizeRequirements calculateMinorAxisRequirements(int axis, argument
272 SizeRequirements req = super.calculateMinorAxisRequirements(axis, r);
343 public float getPreferredSpan(int axis) { argument
348 return v.getPreferredSpan(axis);
H A DBasicTextFieldUI.java322 * given axis. A value of 0 or less is not resizable.
324 * @param axis View.X_AXIS or View.Y_AXIS
327 public int getResizeWeight(int axis) { argument
328 if (axis == View.X_AXIS) {
H A DBasicHTML.java396 * Determines the preferred span for this view along an axis.
398 * @param axis may be either X_AXIS or Y_AXIS
404 public float getPreferredSpan(int axis) { argument
405 if (axis == X_AXIS) {
409 return view.getPreferredSpan(axis);
413 * Determines the minimum span for this view along an axis.
415 * @param axis may be either X_AXIS or Y_AXIS
421 public float getMinimumSpan(int axis) { argument
422 return view.getMinimumSpan(axis);
426 * Determines the maximum span for this view along an axis
434 getMaximumSpan(int axis) argument
468 getAlignment(int axis) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java123 * axis. This is implemented to return the value
125 * axis of interest.
127 * @param axis may be either View.X_AXIS or View.Y_AXIS
132 * @exception IllegalArgumentException for an invalid axis
134 public float getPreferredSpan(int axis) { argument
135 if ((axis != X_AXIS) && (axis != Y_AXIS)) {
136 throw new IllegalArgumentException("Invalid axis: " + axis);
140 if (axis
162 getMinimumSpan(int axis) argument
190 getMaximumSpan(int axis) argument
217 getAlignment(int axis) argument
[all...]
H A DPlainView.java218 * axis.
220 * @param axis may be either View.X_AXIS or View.Y_AXIS
225 * @exception IllegalArgumentException for an invalid axis
227 public float getPreferredSpan(int axis) { argument
229 switch (axis) {
235 throw new IllegalArgumentException("Invalid axis: " + axis);
482 * layout of the view along the given axis, if it
H A DTableView.java310 * Perform layout for the minor axis of the box (i.e. the
311 * axis orthoginal to the axis that it represents). The results
313 * the allocations to the children along the minor axis. This
315 * updated along the minor axis.
324 * @param axis the axis being layed out.
331 protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans) { argument
339 row.layoutChanged(axis);
346 super.layoutMinorAxis(targetSpan, axis, offset
357 calculateMinorAxisRequirements(int axis, SizeRequirements r) argument
408 calculateColumnRequirements(int axis) argument
461 checkSingleColumnCell(int axis, int col, View v) argument
472 checkMultiColumnCell(int axis, int col, int ncols, View v) argument
668 layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans) argument
712 layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans) argument
747 getResizeWeight(int axis) argument
[all...]
H A DZoneView.java88 * @param axis either View.X_AXIS or View.Y_AXIS
90 public ZoneView(Element elem, int axis) { argument
91 super(elem, axis);
433 * the major axis with the estimated span.
H A DFlowView.java58 * @param axis may be either View.X_AXIS or View.Y_AXIS
60 public FlowView(Element elem, int axis) { argument
61 super(elem, axis);
67 * Fetches the axis along which views should be
68 * flowed. By default, this will be the axis
69 * orthogonal to the axis along which the flow
70 * rows are tiled (the axis of the default flow
87 * span inside of the insets along the flow axis
99 * Fetch the location along the flow axis that the
169 * axis ha
229 calculateMinorAxisRequirements(int axis, SizeRequirements r) argument
726 getPreferredSpan(int axis) argument
754 getMinimumSpan(int axis) argument
[all...]
H A DWrappedPlainView.java374 * layout of the view along the given axis, if it
394 * axis. This is implemented to provide the superclass
400 * @param axis may be either View.X_AXIS or View.Y_AXIS
407 public float getPreferredSpan(int axis) { argument
409 return super.getPreferredSpan(axis);
414 * axis. This is implemented to provide the superclass
420 * @param axis may be either View.X_AXIS or View.Y_AXIS
427 public float getMinimumSpan(int axis) { argument
429 return super.getMinimumSpan(axis);
434 * axis
447 getMaximumSpan(int axis) argument
549 getPreferredSpan(int axis) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSBorder.java296 void paintStrokes(Rectangle r, Graphics g, int axis, argument
298 boolean xAxis = (axis == View.X_AXIS);
H A DFormView.java377 * axis. For certain components, the maximum and preferred span are the
380 * axis of interest.
382 * @param axis may be either View.X_AXIS or View.Y_AXIS
387 * @exception IllegalArgumentException for an invalid axis
389 public float getMaximumSpan(int axis) { argument
390 switch (axis) {
393 super.getMaximumSpan(axis);
394 return getPreferredSpan(axis);
396 return super.getMaximumSpan(axis);
399 super.getMaximumSpan(axis);
[all...]
H A DFrameView.java430 * axis.
432 * @param axis may be either <code>View.X_AXIS</code> or
439 public float getMinimumSpan(int axis) { argument
445 * axis.
447 * @param axis may be either <code>View.X_AXIS</code> or
454 public float getMaximumSpan(int axis) { argument
H A DHRuleView.java173 * @param axis may be either X_AXIS or Y_AXIS
177 public float getPreferredSpan(int axis) { argument
178 switch (axis) {
194 throw new IllegalArgumentException("Invalid axis: " + axis);
199 * Gets the resize weight for the axis.
202 * @param axis may be either X_AXIS or Y_AXIS
205 public int getResizeWeight(int axis) { argument
206 if (axis == View.X_AXIS) {
208 } else if (axis
230 getBreakWeight(int axis, float pos, float len) argument
237 breakView(int axis, int offset, float pos, float len) argument
[all...]
H A DHiddenTagView.java80 public float getAlignment(int axis) { argument
81 if (axis == View.Y_AXIS) {
87 public float getMinimumSpan(int axis) { argument
88 if (axis == View.X_AXIS && isVisible()) {
90 return Math.max(30, super.getPreferredSpan(axis));
92 return super.getMinimumSpan(axis);
95 public float getPreferredSpan(int axis) { argument
96 if (axis == View.X_AXIS && isVisible()) {
97 return Math.max(30, super.getPreferredSpan(axis));
99 return super.getPreferredSpan(axis);
102 getMaximumSpan(int axis) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLTableCellElement.java71 * Names group of related headers. See the axis attribute definition in
75 public void setAxis(String axis); argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMaximizableInternalFrame.java193 public FixedMenuBarLayout(Container target, int axis) { argument
194 super(target, axis);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DDOM.java61 public DTMAxisIterator getAxisIterator(final int axis); argument
62 public DTMAxisIterator getTypedAxisIterator(final int axis, final int type); argument
64 public DTMAxisIterator getNamespaceAxisIterator(final int axis, final int ns); argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java184 public DTMAxisIterator getNamespaceAxisIterator(final int axis, argument
186 return _dom.getNamespaceAxisIterator(axis, getNSReverse()[ns]);
189 public DTMAxisIterator getAxisIterator(final int axis) { argument
191 return _enhancedDOM.getAxisIterator(axis);
194 return _dom.getAxisIterator(axis);
198 public DTMAxisIterator getTypedAxisIterator(final int axis, argument
202 return _enhancedDOM.getTypedAxisIterator(axis, reverse[type]);
204 return _dom.getTypedAxisIterator(axis, type);

Completed in 88 milliseconds

123