Home
last modified time | relevance | path

Searched refs:defValue (Results 1 – 1 of 1) sorted by relevance

/development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/utils/
DUtils.java46 public static int parseInt(String value, int defValue) { in parseInt() argument
47 return parseIntWithBase(value, 10, defValue); in parseInt()
51 public static int parseIntWithBase(String value, int base, int defValue) { in parseIntWithBase() argument
53 return defValue; in parseIntWithBase()
58 return defValue; in parseIntWithBase()