/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ |
H A D | Axis.java | 119 public static final int SELF = 13; field in class:Axis
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | sym.java | 45 public static final int SELF = 38; field in class:sym
|
H A D | xpath.cup | 308 terminal SELF, PARENT, CHILD, ATTRIBUTE, ANCESTOR, ANCESTORORSELF, DESCENDANT; 788 | SELF 789 {: RESULT = new Integer(Axis.SELF); :}; 792 {: RESULT = new Step(Axis.SELF, NodeTest.ANODE, null); :} 1111 | SELF
|
H A D | CastExpr.java | 135 if ((step.getAxis() == Axis.SELF) && (step.getNodeType() != -1))
|
H A D | Step.java | 183 return _nodeType == NodeTest.ANODE && _axis == Axis.SELF;
|
H A D | xpath.lex | 241 "self" { return disambiguateAxisOrFunction(sym.SELF); }
|
H A D | XPathLexer.java | 958 { return disambiguateAxisOrFunction(sym.SELF); }
|
H A D | XPathParser.java | 1144 case 139: // QName ::= SELF 1788 RESULT = new Step(Axis.SELF, NodeTest.ANODE, null); 1794 case 96: // AxisName ::= SELF 1797 RESULT = new Integer(Axis.SELF);
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/ |
H A D | XObjectFactory.java | 111 DTMAxisIterator iter = dtm.getAxisIterator(Axis.SELF); 113 DTMIterator iterator = new OneStepIterator(iter, Axis.SELF); 127 DTMIterator iterator = new OneStepIterator(iter, Axis.SELF);
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/ |
H A D | WalkingIteratorSorted.java | 111 || (axis == Axis.SELF) 161 // || (axis == Axis.SELF)
|
H A D | WalkerFactory.java | 338 return Axis.SELF; 384 case Axis.SELF : 859 int axis = Axis.SELF; 860 int paxis = Axis.SELF; 1035 // ai = new StepPattern(whatToShow, Axis.SELF, Axis.SELF); 1056 axis = Axis.SELF; 1057 predicateAxis = Axis.SELF; 1249 ai = new AxesWalker(lpi, Axis.SELF);
|
/openjdk7/corba/make/ |
H A D | Makefile | 119 SELF = $(lastword $(MAKEFILE_LIST)) macro
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | SimpleResultTreeImpl.java | 333 case Axis.SELF: 354 case Axis.SELF:
|
H A D | SAXImpl.java | 1142 case Axis.SELF: 1194 case Axis.SELF:
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/ |
H A D | XPath.java | 241 Axis axis = new Axis(Axis.SELF); 474 if (axis.type == Axis.SELF) { 517 public static final short SELF = 3; field in class:XPath.Axis 552 case SELF: return "self";
|
/openjdk7/jdk/src/share/classes/sun/security/provider/ |
H A D | PolicyFile.java | 290 private static final String SELF = "${{self}}"; field in class:PolicyFile 835 // XXX special case PrivateCredentialPermission-SELF 841 + SELF; 844 if (pe.name != null && pe.name.indexOf(SELF) != -1) { 1480 // handle "SELF" permissions 1559 + "SELF-based target names are " 1569 while ((v = sp.getSelfName().indexOf(SELF, startIndex)) != -1) { 1571 // add non-SELF string 1574 // expand SELF 1591 startIndex = v + SELF [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/ |
H A D | XPathMatcher.java | 237 steps[fCurrentStep[i]].axis.type == XPath.Axis.SELF) { 240 System.out.println(toString()+" [SELF] MATCHED!");
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/ |
H A D | DTMDefaultBaseIterators.java | 123 case Axis.SELF : 190 case Axis.SELF :
|
H A D | DTMDefaultBaseTraversers.java | 163 case Axis.SELF :
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/ |
H A D | XPathContext.java | 302 DTMIterator iter = new com.sun.org.apache.xpath.internal.axes.OneStepIteratorForward(Axis.SELF);
|