/openjdk7/jdk/test/javax/smartcardio/ |
H A D | TestCommandAPDU.java | 39 private static void test(int nc, int ne) throws Exception { argument 40 System.out.println("nc = " + nc + ", ne = " + ne); 43 CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne); 51 if (apdu.getNe() != ne) { 52 throw new Exception("ne does not match"); 66 if (apdu2.getNe() != ne) { 67 throw new Exception("ne does not match"); 77 for (int ne : t) { 78 test(nc, ne); [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
H A D | LdapSearchEnumeration.java | 129 NamingException ne = 132 ne.setRootCause(e); 133 throw ne; 191 protected void update(LdapNamingEnumeration ne) { argument 192 super.update(ne); 195 LdapSearchEnumeration se = (LdapSearchEnumeration)ne;
|
H A D | LdapNamingEnumeration.java | 396 protected void update(LdapNamingEnumeration ne) { argument 401 homeCtx = ne.homeCtx; 402 enumClnt = ne.enumClnt; 404 // Do this to prevent referral enumeration (ne) from decrementing 407 ne.homeCtx = null; 410 posn = ne.posn; 411 limit = ne.limit; 412 res = ne.res; 413 entries = ne.entries; 414 refEx = ne [all...] |
/openjdk7/jdk/src/share/classes/javax/smartcardio/ |
H A D | CommandAPDU.java | 77 // value of ne 78 private transient int ne; field in class:CommandAPDU 190 * @param ne the maximum number of expected data bytes in a response APDU 192 * @throws IllegalArgumentException if ne is negative or greater than 195 public CommandAPDU(int cla, int ins, int p1, int p2, int ne) { argument 196 this(cla, ins, p1, p2, null, 0, 0, ne); 263 * @param ne the maximum number of expected data bytes in a response APDU 266 * or if ne is negative or greater than 65536 268 public CommandAPDU(int cla, int ins, int p1, int p2, byte[] data, int ne) { argument 269 this(cla, ins, p1, p2, data, 0, arrayLength(data), ne); 381 CommandAPDU(int cla, int ins, int p1, int p2, byte[] data, int dataOffset, int dataLength, int ne) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JExpression.java | 127 JExpression ne(JExpression right); method in interface:JExpression
|
H A D | JExpressionImpl.java | 133 public final JExpression ne(JExpression right) { method in class:JExpressionImpl 134 return JOp.ne(this, right);
|
H A D | JOp.java | 216 public static JExpression ne(JExpression left, JExpression right) { method in class:JOp
|
/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 | parse1.cpp | 1150 int ne = tfe->length(); local 1152 _all_successors = ns+ne; 1153 _successors = (ns+ne == 0) ? NULL : NEW_RESOURCE_ARRAY(Block*, ns+ne); 1155 for (int i = 0; i < ns+ne; i++) { 1930 Node* test = _gvn.transform(new (C) BoolNode(check, BoolTest::ne));
|
H A D | stringopts.cpp | 155 if (b->_test._test == BoolTest::ne && 780 if (b->_test._test == BoolTest::ne && 989 __ Bool(__ CmpI(arg, __ intcon(0x80000000)), BoolTest::ne), 1077 __ Bool(__ CmpI(arg, __ intcon(0x80000000)), BoolTest::ne), 1174 IfNode* iff = kit.create_and_map_if(head, __ Bool(__ CmpI(q, __ intcon(0)), BoolTest::ne), 1176 Node* ne = __ IfTrue(iff); local 1179 head->init_req(2, ne); 1200 __ Bool(__ CmpI(sign, __ intcon(0)), BoolTest::ne), 1349 Node* p = __ Bool(__ CmpP(arg, kit.null()), BoolTest::ne); 1373 Node* p = __ Bool(__ CmpP(arg, kit.null()), BoolTest::ne); [all...] |
/openjdk7/hotspot/src/share/vm/shark/ |
H A D | sharkBlock.cpp | 1090 BasicBlock *ne = builder()->CreateBlock(ip, "lcmp_ne"); local 1096 builder()->CreateCondBr(builder()->CreateICmpEQ(a, b), done, ne); 1098 builder()->SetInsertPoint(ne);
|
/openjdk7/jdk/test/java/net/URI/ |
H A D | Test.java | 1386 static void ne(Comparable u, Comparable v) throws URISyntaxException { method in class:Test 1432 ne(new URI("http://host/a%00bcd"), new URI("http://host/aZ00bcd"));
|