Searched defs:nm (Results 1 - 5 of 5) 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 DInteger.java1035 * {@code getInteger(nm, null)}
1038 * @param nm property name.
1045 public static Integer getInteger(String nm) { argument
1046 return getInteger(nm, null);
1070 * {@code getInteger(nm, new Integer(val))}
1076 * Integer result = getInteger(nm, null);
1083 * @param nm property name.
1091 public static Integer getInteger(String nm, int val) { argument
1092 Integer result = getInteger(nm, null);
1125 * @param nm propert
1133 getInteger(String nm, Integer val) argument
1190 decode(String nm) argument
[all...]
H A DLong.java883 * @param nm the {@code String} to decode.
885 * value represented by {@code nm}
891 public static Long decode(String nm) throws NumberFormatException { argument
897 if (nm.length() == 0)
899 char firstChar = nm.charAt(0);
908 if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
912 else if (nm.startsWith("#", index)) {
916 else if (nm.startsWith("0", index) && nm
1116 getLong(String nm) argument
1161 getLong(String nm, long val) argument
1210 getLong(String nm, Long val) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DCollections.java1915 private final NavigableMap<K, ? extends V> nm; field in class:Collections.UnmodifiableNavigableMap
1918 {super(m); nm = m;}
1920 public K lowerKey(K key) { return nm.lowerKey(key); }
1921 public K floorKey(K key) { return nm.floorKey(key); }
1922 public K ceilingKey(K key) { return nm.ceilingKey(key); }
1923 public K higherKey(K key) { return nm.higherKey(key); }
1927 Entry<K,V> lower = (Entry<K, V>) nm.lowerEntry(key);
1935 Entry<K,V> floor = (Entry<K, V>) nm.floorEntry(key);
1943 Entry<K,V> ceiling = (Entry<K, V>) nm.ceilingEntry(key);
1952 Entry<K,V> higher = (Entry<K, V>) nm
2897 private final NavigableMap<K,V> nm; field in class:Collections.SynchronizedNavigableMap
4085 private final NavigableMap<K, V> nm; field in class:Collections.CheckedNavigableMap
[all...]

Completed in 85 milliseconds