Searched defs:_test (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | If.java | 43 private Expression _test; field in class:If 54 Util.println(_test.toString()); 63 _test = parser.parseExpression(this, "test", null); 66 if (_test.isDummy()) { 73 Object result = _test.evaluateAtCompileTime(); 87 if (_test.typeCheck(stable) instanceof BooleanType == false) { 88 _test = new CastExpr(_test, Type.Boolean); 103 _test.translateDesynthesized(classGen, methodGen); 109 _test [all...] |
H A D | When.java | 41 private Expression _test; field in class:When 49 Util.println(_test.toString()); 54 return _test; 62 _test = parser.parseExpression(this, "test", null); 66 Object result = _test.evaluateAtCompileTime(); 74 if (_test.isDummy()) { 88 if (_test.typeCheck(stable) instanceof BooleanType == false) { 89 _test = new CastExpr(_test, Type.Boolean);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | subnode.hpp | 267 mask _test; member in struct:VALUE_OBJ_CLASS_SPEC 268 BoolTest( mask btm ) : _test(btm) {} 273 mask commute( ) const { return mask("038147858"[_test]-'0'); } 274 mask negate( ) const { return mask(_test^4); } 275 bool is_canonical( ) const { return (_test == BoolTest::ne || _test == BoolTest::lt || _test == BoolTest::le); } 288 const BoolTest _test; member in class:BoolNode 289 BoolNode( Node *cc, BoolTest::mask t): _test(t), Node(0,cc) {
|
Completed in 41 milliseconds