Searched defs:nm (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DByte.java269 * @param nm the {@code String} to decode.
271 * value represented by {@code nm}
276 public static Byte decode(String nm) throws NumberFormatException { argument
277 int i = Integer.decode(nm);
280 "Value " + i + " out of range from input " + nm);
H A DShort.java274 * @param nm the {@code String} to decode.
276 * value represented by {@code nm}
281 public static Short decode(String nm) throws NumberFormatException { argument
282 int i = Integer.decode(nm);
285 "Value " + i + " out of range from input " + nm);
H A DLong.java617 * @param nm the {@code String} to decode.
619 * value represented by {@code nm}
625 public static Long decode(String nm) throws NumberFormatException { argument
631 if (nm.length() == 0)
633 char firstChar = nm.charAt(0);
642 if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
646 else if (nm.startsWith("#", index)) {
650 else if (nm.startsWith("0", index) && nm
844 getLong(String nm) argument
889 getLong(String nm, long val) argument
937 getLong(String nm, Long val) argument
[all...]
H A DInteger.java832 * {@code getInteger(nm, null)}
835 * @param nm property name.
840 public static Integer getInteger(String nm) { argument
841 return getInteger(nm, null);
866 * {@code getInteger(nm, new Integer(val))}
872 * Integer result = getInteger(nm, null);
879 * @param nm property name.
885 public static Integer getInteger(String nm, int val) { argument
886 Integer result = getInteger(nm, null);
919 * @param nm propert
926 getInteger(String nm, Integer val) argument
984 decode(String nm) argument
[all...]

Completed in 209 milliseconds