HomeSort by relevance Sort by last modified time
    Searched defs:toUnsignedString (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/java/lang/
Integer.java 187 public static String toUnsignedString(int i, int radix) {
188 return Long.toUnsignedString(toUnsignedLong(i), radix);
230 * @see #toUnsignedString(int, int)
268 * @see #toUnsignedString(int, int)
300 * @see #toUnsignedString(int, int)
440 * 10 were given as arguments to the {@link #toUnsignedString(int,
445 * @see #toUnsignedString(int, int)
448 public static String toUnsignedString(int i) {
    [all...]
Long.java 173 public static String toUnsignedString(long i, int radix) {
269 * @see #toUnsignedString(long, int)
308 * @see #toUnsignedString(long, int)
341 * @see #toUnsignedString(long, int)
409 * 10 were given as arguments to the {@link #toUnsignedString(long,
414 * @see #toUnsignedString(long, int)
417 public static String toUnsignedString(long i) {
418 return toUnsignedString(i, 10);
    [all...]

Completed in 51 milliseconds