Searched defs:typeCheck (Results 1 - 25 of 89) sorted by relevance

1234

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DComment.java48 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Comment
H A DConcatCall.java49 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:ConcatCall
52 if (!exp.typeCheck(stable).identicalTo(Type.String)) {
H A DInstruction.java40 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Instruction
H A DNumberCall.java44 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:NumberCall
46 argument().typeCheck(stable);
H A DOtherwise.java45 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Otherwise
H A DPattern.java41 public abstract Type typeCheck(SymbolTable stable) throws TypeCheckError; method in class:Pattern
H A DStringCall.java44 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:StringCall
52 argument().typeCheck(stable);
H A DAbsoluteLocationPath.java75 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:AbsoluteLocationPath
77 final Type ptype = _path.typeCheck(stable);
H A DBooleanCall.java46 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:BooleanCall
47 _arg.typeCheck(stable);
H A DBooleanExpr.java48 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:BooleanExpr
H A DCastCall.java64 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:CastCall
84 Type tright = _right.typeCheck(stable);
H A DContainsCall.java65 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:ContainsCall
74 Type baseType = _base.typeCheck(stable);
80 Type tokenType = _token.typeCheck(stable);
H A DCopy.java72 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Copy
74 _useSets.typeCheck(stable);
H A DCopyOf.java65 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:CopyOf
66 final Type tselect = _select.typeCheck(stable);
H A DDecimalFormatting.java55 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:DecimalFormatting
H A DDocumentCall.java62 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:DocumentCall
82 _arg1Type = _arg1.typeCheck(stable);
96 final Type arg2Type = _arg2.typeCheck(stable);
H A DElementAvailableCall.java49 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:ElementAvailableCall
H A DFallback.java43 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Fallback
H A DFilteredAbsoluteLocationPath.java74 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:FilteredAbsoluteLocationPath
76 final Type ptype = _path.typeCheck(stable);
H A DFormatNumberCall.java58 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:FormatNumberCall
63 final Type tvalue = _value.typeCheck(stable);
67 final Type tformat = _format.typeCheck(stable);
72 final Type tname = _name.typeCheck(stable);
H A DIf.java85 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:If
87 if (_test.typeCheck(stable) instanceof BooleanType == false) {
H A DImport.java161 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Import
H A DInclude.java161 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:Include
H A DIntExpr.java45 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:IntExpr
H A DLangCall.java58 public Type typeCheck(SymbolTable stable) throws TypeCheckError { method in class:LangCall
59 _langType = _lang.typeCheck(stable);

Completed in 2800 milliseconds

1234