Searched refs:typeCheck (Results 1 - 25 of 94) sorted by relevance

1234

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DBooleanCall.java44 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:BooleanCall
45 _arg.typeCheck(stable);
H A DNumberCall.java42 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:NumberCall
44 argument().typeCheck(stable);
H A DContainsCall.java63 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:ContainsCall
72 Type baseType = _base.typeCheck(stable);
78 Type tokenType = _token.typeCheck(stable);
H A DAlternativePattern.java66 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:AlternativePattern
67 _left.typeCheck(stable);
68 _right.typeCheck(stable);
H A DStartsWithCall.java55 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:StartsWithCall
66 Type baseType = _base.typeCheck(stable);
72 Type tokenType = _token.typeCheck(stable);
H A DNamespaceAlias.java48 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:NamespaceAlias
H A DFormatNumberCall.java56 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:FormatNumberCall
61 final Type tvalue = _value.typeCheck(stable);
65 final Type tformat = _format.typeCheck(stable);
70 final Type tname = _name.typeCheck(stable);
H A DPattern.java39 public abstract Type typeCheck(SymbolTable stable) throws TypeCheckError; method in class:Pattern
H A DUnresolvedRef.java79 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:UnresolvedRef
86 return (_type = _ref.typeCheck(stable));
H A DUnaryOpExpr.java62 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:UnaryOpExpr
63 final Type tleft = _left.typeCheck(stable);
H A DUnparsedEntityUriCall.java48 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:UnparsedEntityUriCall
49 final Type entity = _entity.typeCheck(stable);
H A DStringCall.java42 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:StringCall
50 argument().typeCheck(stable);
H A DVariableRefBase.java121 public Type typeCheck(SymbolTable stable) method in class:VariableRefBase
152 _variable.typeCheck(stable);
H A DKeyCall.java136 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:KeyCall
137 final Type returnType = super.typeCheck(stable);
142 final Type nameType = _name.typeCheck(stable);
163 _valueType = _value.typeCheck(stable);
169 _valueType = _value.typeCheck(stable);
H A DDocumentCall.java60 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:DocumentCall
80 _arg1Type = _arg1.typeCheck(stable);
94 final Type arg2Type = _arg2.typeCheck(stable);
H A DBinOpExpr.java79 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:BinOpExpr
80 final Type tleft = _left.typeCheck(stable);
81 final Type tright = _right.typeCheck(stable);
H A DConcatCall.java47 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:ConcatCall
50 if (!exp.typeCheck(stable).identicalTo(Type.String)) {
H A DCastCall.java62 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:CastCall
82 Type tright = _right.typeCheck(stable);
H A DLangCall.java56 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:LangCall
57 _langType = _lang.typeCheck(stable);
H A DIf.java83 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:If
85 if (_test.typeCheck(stable) instanceof BooleanType == false) {
H A DNameBase.java63 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:NameBase
71 _paramType = _param.typeCheck(stable);
H A DWhen.java84 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:When
86 if (_test.typeCheck(stable) instanceof BooleanType == false) {
H A DSimpleAttributeValue.java52 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:SimpleAttributeValue
H A DRealExpr.java43 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:RealExpr
H A DIntExpr.java43 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:IntExpr

Completed in 59 milliseconds

1234