Searched refs:infix (Results 1 - 4 of 4) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DExpressionTranslator.java233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight()));
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight()));
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight()));
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight()));
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight()));
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight()));
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight()));
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight()));
280 setResult(infix(Type.STRING, Type.STRING, "+", node.getLeft(), node.getRight()));
285 setResult(infix(Typ
356 infix(Type destType, Type srcType, String infix, PExpression leftNode, PExpression rightNode) argument
[all...]
H A DEscapingEvaluator.java101 JavaExpression.infix(JavaExpression.Type.BOOLEAN, "!=", escapeMode, JavaExpression
104 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", escapeModeCheck,
223 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", first, second);
H A DTemplateTranslator.java27 import static com.google.clearsilver.jsilver.compiler.JavaExpression.infix;
341 java.startIfBlock(JavaExpression.infix(Type.BOOLEAN, "!=", value.cast(Type.DATA), literal(
438 inlineIf(Type.BOOLEAN, infix(Type.BOOLEAN, ">=", incrVar, integer(0)), infix(Type.BOOLEAN,
439 "<=", loopVar, endVar), infix(Type.BOOLEAN, ">=", loopVar, endVar));
443 loopVariable).cast(Type.STRING), infix(Type.BOOLEAN, "==", symbol(loopVariable), startVar),
444 infix(Type.BOOLEAN, "==", symbol(loopVariable), endVar)));
H A DJavaExpression.java406 * An infix expression (e.g. (a + b) ).
408 public static JavaExpression infix(Type type, final String operator, final JavaExpression left, method in class:JavaExpression
460 * An increment statement (e.g. a += b). The difference with infix is that this does not wrap the

Completed in 59 milliseconds