Searched defs:bo (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/test/sun/security/krb5/auto/ |
H A D | BadKdc.java | 139 ByteArrayOutputStream bo = new ByteArrayOutputStream(); 142 test0(bo, expected); 145 System.out.println(new String(bo.toByteArray())); 155 private static void test0(ByteArrayOutputStream bo, String expected) argument 159 System.setOut(new PrintStream(bo)); 168 String[] lines = new String(bo.toByteArray()).split("\n");
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | UTF_32Coder.java | 46 protected Decoder(Charset cs, int bo) { argument 48 this.expectedBO = bo;
|
H A D | UnicodeDecoder.java | 50 public UnicodeDecoder(Charset cs, int bo) { argument 52 expectedByteOrder = currentByteOrder = bo; 55 public UnicodeDecoder(Charset cs, int bo, int defaultBO) { argument 56 this(cs, bo);
|
H A D | UnicodeEncoder.java | 46 protected UnicodeEncoder(Charset cs, int bo, boolean m) { argument 51 ((bo == BIG) 55 byteOrder = bo;
|
/openjdk7/jdk/src/share/classes/sun/io/ |
H A D | ByteToCharUnicode.java | 78 protected ByteToCharUnicode(int bo, boolean m) { argument 79 originalByteOrder = byteOrder = bo; 127 int bo = AUTO; 130 bo = BIG; 132 bo = LITTLE; 135 if (bo == AUTO) { 140 byteOrder = bo; 146 else if (bo == AUTO) { 150 else if (byteOrder == bo) {
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | generateOptoStub.cpp | 251 Node* bo = _gvn.transform( new (C) BoolNode(cmp, BoolTest::ne) ); local 252 IfNode *iff = create_and_map_if(control(), bo, PROB_MIN, COUNT_UNKNOWN);
|
Completed in 72 milliseconds