Searched refs:_select (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DValueOf.java44 private Expression _select; field in class:ValueOf
52 Util.println("select " + _select.toString());
56 _select = parser.parseExpression(this, "select", null);
59 if (_select.isDummy()) {
68 Type type = _select.typeCheck(stable);
77 _select = new CastExpr(new CastExpr(_select, Type.NodeSet),
82 _select = new CastExpr(_select, Type.Node);
86 _select
[all...]
H A DWithParam.java60 private Expression _select; field in class:WithParam
76 if (_select != null) {
78 Util.println("select " + _select.toString());
132 _select = parser.parseExpression(this, "select", null);
143 if (_select != null) {
144 final Type tselect = _select.typeCheck(stable);
146 _select = new CastExpr(_select, Type.Reference);
162 if (_select != null) {
163 _select
[all...]
H A DCopyOf.java47 private Expression _select; field in class:CopyOf
53 Util.println("select " + _select.toString());
57 _select = parser.parseExpression(this, "select", null);
59 if (_select.isDummy()) {
66 final Type tselect = _select.typeCheck(stable);
74 _select = new CastExpr(_select, Type.String);
82 final Type tselect = _select.getType();
98 _select.translate(classGen, methodGen);
99 _select
[all...]
H A DApplyTemplates.java50 private Expression _select; field in class:ApplyTemplates
59 Util.println("select " + _select.toString());
75 _select = parser.parseExpression(this, "select", null);
94 if (_select != null) {
95 _type = _select.typeCheck(stable);
97 _select = new CastExpr(_select, Type.NodeSet);
155 _select.translate(classGen, methodGen);
165 _select, sortObjects);
175 if (_select
[all...]
H A DForEach.java53 private Expression _select; field in class:ForEach
60 Util.println("select " + _select.toString());
65 _select = parser.parseExpression(this, "select", null);
70 if (_select.isDummy()) {
76 _type = _select.typeCheck(stable);
79 _select = new CastExpr(_select, Type.NodeSet);
119 _select.translate(classGen, methodGen);
130 _select, sortObjects);
133 _select
[all...]
H A DVariableBase.java59 protected Expression _select; // Reference to variable expression field in class:VariableBase
152 return(_select);
168 if (_select != null) {
170 System.out.println("select " + _select.toString());
237 _select = getParser().parseExpression(this, "select", null);
238 if (_select.isDummy()) {
255 if (_select != null) {
256 _select.translate(classGen, methodGen);
259 if (_select.getType() instanceof NodeSetType) {
274 _select
[all...]
H A DParam.java94 if (_select != null) {
96 System.out.println("select " + _select.toString());
157 if (_select != null) {
158 _type = _select.typeCheck(stable);
160 _select = new CastExpr(_select, Type.Reference);
H A DVariable.java100 if (_select != null) {
101 _type = _select.typeCheck(stable);
H A DSort.java75 private Expression _select; field in class:Sort
147 _select = parser.parseExpression(this, "select", "string(.)");
158 final Type type = _select.typeCheck(parser.getSymbolTable());
184 final Type tselect = _select.typeCheck(stable);
189 _select = new CastExpr(_select, Type.String);
231 _select.translate(classGen,methodGen);

Completed in 28 milliseconds