Searched defs:hb (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/javax/xml/parsers/
H A DSAXParser.java115 * @param hb The SAX HandlerBase to use.
124 public void parse(InputStream is, HandlerBase hb) argument
131 this.parse(input, hb);
141 * @param hb The SAX HandlerBase to use.
154 HandlerBase hb,
163 this.parse(input, hb);
227 * @param hb The SAX HandlerBase to use.
235 public void parse(String uri, HandlerBase hb) argument
242 this.parse(input, hb);
276 * @param hb Th
152 parse( InputStream is, HandlerBase hb, String systemId) argument
284 parse(File f, HandlerBase hb) argument
346 parse(InputSource is, HandlerBase hb) argument
[all...]
/libcore/ojluni/src/main/java/java/nio/
H A DDoubleBuffer.java101 final double[] hb; // Non-null only for heap buffers field in class:DoubleBuffer
109 double[] hb, int offset)
112 this.hb = hb;
577 return (hb != null) && !isReadOnly;
600 if (hb == null)
604 return hb;
628 if (hb == null)
108 DoubleBuffer(int mark, int pos, int lim, int cap, double[] hb, int offset) argument
H A DFloatBuffer.java101 final float[] hb; // Non-null only for heap buffers field in class:FloatBuffer
109 float[] hb, int offset)
112 this.hb = hb;
577 return (hb != null) && !isReadOnly;
600 if (hb == null)
604 return hb;
628 if (hb == null)
108 FloatBuffer(int mark, int pos, int lim, int cap, float[] hb, int offset) argument
H A DIntBuffer.java102 final int[] hb; // Non-null only for heap buffers field in class:IntBuffer
110 int[] hb, int offset)
113 this.hb = hb;
578 return (hb != null) && !isReadOnly;
601 if (hb == null)
605 return hb;
629 if (hb == null)
109 IntBuffer(int mark, int pos, int lim, int cap, int[] hb, int offset) argument
H A DLongBuffer.java101 final long[] hb; // Non-null only for heap buffers field in class:LongBuffer
109 long[] hb, int offset)
112 this.hb = hb;
577 return (hb != null) && !isReadOnly;
600 if (hb == null)
604 return hb;
628 if (hb == null)
108 LongBuffer(int mark, int pos, int lim, int cap, long[] hb, int offset) argument
H A DShortBuffer.java101 final short[] hb; // Non-null only for heap buffers field in class:ShortBuffer
109 short[] hb, int offset)
112 this.hb = hb;
577 return (hb != null) && !isReadOnly;
600 if (hb == null)
604 return hb;
628 if (hb == null)
108 ShortBuffer(int mark, int pos, int lim, int cap, short[] hb, int offset) argument
H A DCharBuffer.java128 final char[] hb; // Non-null only for heap buffers field in class:CharBuffer
136 char[] hb, int offset)
139 this.hb = hb;
803 return (hb != null) && !isReadOnly;
826 if (hb == null)
830 return hb;
854 if (hb == null)
135 CharBuffer(int mark, int pos, int lim, int cap, char[] hb, int offset) argument
H A DByteBuffer.java214 final byte[] hb; // Non-null only for heap buffers field in class:ByteBuffer
222 byte[] hb, int offset)
225 this.hb = hb;
621 if (this.hb != null && src.hb != null) {
623 System.arraycopy(src.hb, src.position() + src.offset, hb, position() + offset, n);
629 final Object srcObject = src.isDirect() ? src : src.hb;
636 final Object dstObject = dst.isDirect() ? dst : dst.hb;
221 ByteBuffer(int mark, int pos, int lim, int cap, byte[] hb, int offset) argument
[all...]

Completed in 237 milliseconds