Home
last modified time | relevance | path

Searched refs:infix (Results 1 – 11 of 11) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java233 setResult(infix(Type.BOOLEAN, Type.INT, "==", node.getLeft(), node.getRight())); in caseANumericEqExpression()
245 setResult(infix(Type.BOOLEAN, Type.INT, "!=", node.getLeft(), node.getRight())); in caseANumericNeExpression()
250 setResult(infix(Type.BOOLEAN, Type.INT, "<", node.getLeft(), node.getRight())); in caseALtExpression()
255 setResult(infix(Type.BOOLEAN, Type.INT, ">", node.getLeft(), node.getRight())); in caseAGtExpression()
260 setResult(infix(Type.BOOLEAN, Type.INT, "<=", node.getLeft(), node.getRight())); in caseALteExpression()
265 setResult(infix(Type.BOOLEAN, Type.INT, ">=", node.getLeft(), node.getRight())); in caseAGteExpression()
270 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "&&", node.getLeft(), node.getRight())); in caseAAndExpression()
275 setResult(infix(Type.BOOLEAN, Type.BOOLEAN, "||", node.getLeft(), node.getRight())); in caseAOrExpression()
280 setResult(infix(Type.STRING, Type.STRING, "+", node.getLeft(), node.getRight())); in caseAAddExpression()
285 setResult(infix(Type.INT, Type.INT, "+", node.getLeft(), node.getRight())); in caseANumericAddExpression()
[all …]
DTemplateTranslator.java27 import static com.google.clearsilver.jsilver.compiler.JavaExpression.infix;
341 java.startIfBlock(JavaExpression.infix(Type.BOOLEAN, "!=", value.cast(Type.DATA), literal( in caseAWithCommand()
438 inlineIf(Type.BOOLEAN, infix(Type.BOOLEAN, ">=", incrVar, integer(0)), infix(Type.BOOLEAN, in writeLoop()
439 "<=", loopVar, endVar), infix(Type.BOOLEAN, ">=", loopVar, endVar)); in writeLoop()
443 loopVariable).cast(Type.STRING), infix(Type.BOOLEAN, "==", symbol(loopVariable), startVar), in writeLoop()
444 infix(Type.BOOLEAN, "==", symbol(loopVariable), endVar))); in writeLoop()
DEscapingEvaluator.java101 JavaExpression.infix(JavaExpression.Type.BOOLEAN, "!=", escapeMode, JavaExpression in computeForPropagateStatus()
104 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", escapeModeCheck, in computeForPropagateStatus()
223 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", first, second); in or()
DJavaExpression.java408 public static JavaExpression infix(Type type, final String operator, final JavaExpression left,
/external/v8/tools/
Dcompare-table-gen.js34 function expr(infix, a, cmp, b) { argument
35 return infix ? a + " " + cmp + " " + b : cmp + "(" + a + ", " + b + ")";
43 function gen(name, cmp, infix) { argument
51 var body = "(function " + name + "(a,b) { return " + expr(infix, "a", cmp, "b") + "; })";
73 …var body = "(function " + name + "_L" + i + "(b) { return " + expr(infix, value, cmp, "b") + "; })…
82 …var body = "(function " + name + "_R" + i + "(a) { return " + expr(infix, "a", cmp, value) + "; })…
94 line += expr(infix, strings[i], cmp, strings[j]);
/external/v8/test/mjsunit/
Dwhitespaces.js66 function test_trim(c, infix) { argument
67 var str = c + c + c + infix + c;
69 assertEquals(infix, str.trim());
/external/okhttp/okio/
DCHANGELOG.md55 * New: `ByteString.substring()` returns a prefix, infix, or suffix.
/external/bison/doc/
Dbison.texi1411 reverse polish notation calculator, an algebraic (infix) notation
1893 @cindex infix notation calculator
1895 @cindex calculator, infix notation
1897 We now modify rpcalc to handle infix operators instead of postfix. Infix
1900 @file{calc.y}, an infix desk-top calculator.
2043 This example extends the infix notation calculator with location
2059 the same as the declarations for the infix notation calculator.
2261 It is easy to add new operators to the infix calculator as long as they are
3531 RPN and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish
6631 For example, suppose the infix calculator has read @samp{1 + 5 *}, with a
[all …]
Dbison.info1969 reverse polish notation calculator, an algebraic (infix) notation
2420 We now modify rpcalc to handle infix operators instead of postfix.
2423 `calc.y', an infix desk-top calculator.
2545 This example extends the infix notation calculator with location
2564 the same as the declarations for the infix notation calculator.
2739 It is easy to add new operators to the infix calculator as long as
3814 RPN and infix calculator examples (*note Reverse Polish Notation
6371 For example, suppose the infix calculator has read `1 + 5 *', with a
6384 For example, if the infix calculator's parser stack contains this:
12187 * calculator, infix notation: Infix Calc. (line 6)
[all …]
/external/testng/ant/3rdparty/
Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data ...
/external/bison/
DChangeLog-201218928 * src/output.c (prepare): Insert the muscles `output-infix', and