Searched defs:le (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/test/java/nio/Buffer/ |
H A D | Order.java | 35 static final ByteOrder le = ByteOrder.LITTLE_ENDIAN; field in class:Order 56 bb.order(le); 57 ckViews(bb, le); 65 ck(ByteBuffer.allocate(10).order(le).order(), le);
|
/openjdk7/jdk/src/share/classes/javax/security/auth/login/ |
H A D | LoginContext.java | 598 } catch (LoginException le) { 606 throw le; 608 throw le; 675 private void throwException(LoginException originalError, LoginException le) argument 682 LoginException error = (originalError != null) ? originalError : le; 833 LoginException le; 863 le = (LoginException)ite.getCause(); 870 le = new LoginException("Security Exception"); 871 le.initCause(new SecurityException()); 886 le [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | subnode.hpp | 266 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::mask 275 bool is_canonical( ) const { return (_test == BoolTest::ne || _test == BoolTest::lt || _test == BoolTest::le); }
|
H A D | loopnode.cpp | 69 CountedLoopEndNode* le = l->loopexit(); local 70 if (le != NULL && 71 le->proj_out(1 /* true */) == l->in(LoopNode::LoopBackControl)) { 73 Node* exit = le->proj_out(0 /* false */); 77 le->loopnode() == l && le->stride_is_con()) { 420 (bt == BoolTest::le || bt == BoolTest::lt) && stride_con < 0 || 465 bool incl_limit = (bt == BoolTest::le || bt == BoolTest::ge); 509 bol = new (C) BoolNode(cmp_limit, BoolTest::le); 569 if (bt == BoolTest::le) 720 IfNode *le = lex->as_If(); local [all...] |
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
H A D | unpack.cpp | 1574 char le = *lp++; local 1576 if (le == 'S' && can_be_signed) { 1579 le = *lp++; 1580 } else if (le == 'B') { 1586 switch (le) {
|
Completed in 53 milliseconds