Lines Matching +defs:val +defs:src
1102 * @param val the default value to use if <code>name</code> does not
1110 public abstract boolean get(String name, boolean val)
1117 * @param val the default value to use if <code>name</code> does not
1125 public abstract byte get(String name, byte val) throws IOException;
1131 * @param val the default value to use if <code>name</code> does not
1139 public abstract char get(String name, char val) throws IOException;
1145 * @param val the default value to use if <code>name</code> does not
1153 public abstract short get(String name, short val) throws IOException;
1159 * @param val the default value to use if <code>name</code> does not
1167 public abstract int get(String name, int val) throws IOException;
1173 * @param val the default value to use if <code>name</code> does not
1181 public abstract long get(String name, long val) throws IOException;
1187 * @param val the default value to use if <code>name</code> does not
1195 public abstract float get(String name, float val) throws IOException;
1201 * @param val the default value to use if <code>name</code> does not
1209 public abstract double get(String name, double val) throws IOException;
1215 * @param val the default value to use if <code>name</code> does not
1223 public abstract Object get(String name, Object val) throws IOException;
2030 private static native void bytesToFloats(byte[] src, int srcpos,
2038 private static native void bytesToDoubles(byte[] src, int srcpos,
2090 public boolean get(String name, boolean val) throws IOException {
2092 return (off >= 0) ? Bits.getBoolean(primVals, off) : val;
2095 public byte get(String name, byte val) throws IOException {
2097 return (off >= 0) ? primVals[off] : val;
2100 public char get(String name, char val) throws IOException {
2102 return (off >= 0) ? Bits.getChar(primVals, off) : val;
2105 public short get(String name, short val) throws IOException {
2107 return (off >= 0) ? Bits.getShort(primVals, off) : val;
2110 public int get(String name, int val) throws IOException {
2112 return (off >= 0) ? Bits.getInt(primVals, off) : val;
2115 public float get(String name, float val) throws IOException {
2117 return (off >= 0) ? Bits.getFloat(primVals, off) : val;
2120 public long get(String name, long val) throws IOException {
2122 return (off >= 0) ? Bits.getLong(primVals, off) : val;
2125 public double get(String name, double val) throws IOException {
2127 return (off >= 0) ? Bits.getDouble(primVals, off) : val;
2130 public Object get(String name, Object val) throws IOException {
2138 return val;
2595 int val = peek();
2596 if (val < 0) {
2599 return (byte) val;