| /libcore/luni/src/main/java/java/util/ |
| D | StringTokenizer.java | 42 private String string; field in StringTokenizer 58 public StringTokenizer(String string) { in StringTokenizer() 74 public StringTokenizer(String string, String delimiters) { in StringTokenizer() 92 public StringTokenizer(String string, String delimiters, in StringTokenizer()
|
| D | Date.java | 148 public Date(String string) { in Date() 350 private static int parse(String string, String[] array) { in parse() 371 public static long parse(String string) { in parse()
|
| D | TimeZone.java | 201 String string = Integer.toString(value); in appendNumber() local 383 private static int parseNumber(String string, int offset, int[] position) { in parseNumber()
|
| /libcore/luni/src/main/java/java/lang/ |
| D | Byte.java | 81 public Byte(String string) throws NumberFormatException { in Byte() 134 public static Byte decode(String string) throws NumberFormatException { in decode() 194 public static byte parseByte(String string) throws NumberFormatException { in parseByte() 213 public static byte parseByte(String string, int radix) throws NumberFormatException { in parseByte() 263 public static Byte valueOf(String string) throws NumberFormatException { in valueOf() 283 public static Byte valueOf(String string, int radix) throws NumberFormatException { in valueOf()
|
| D | Short.java | 73 public Short(String string) throws NumberFormatException { in Short() 134 public static Short decode(String string) throws NumberFormatException { in decode() 193 public static short parseShort(String string) throws NumberFormatException { in parseShort() 212 public static short parseShort(String string, int radix) throws NumberFormatException { in parseShort() 259 public static Short valueOf(String string) throws NumberFormatException { in valueOf() 279 public static Short valueOf(String string, int radix) throws NumberFormatException { in valueOf()
|
| D | Integer.java | 101 public Integer(String string) throws NumberFormatException { in Integer() 154 public static Integer decode(String string) throws NumberFormatException { in decode() 228 public static Integer getInteger(String string) { in getInteger() 257 public static Integer getInteger(String string, int defaultValue) { in getInteger() 286 public static Integer getInteger(String string, Integer defaultValue) { in getInteger() 331 public static int parseInt(String string) throws NumberFormatException { in parseInt() 350 public static int parseInt(String string, int radix) throws NumberFormatException { in parseInt() 369 …private static int parse(String string, int offset, int radix, boolean negative) throws NumberForm… in parse() 489 public static Integer valueOf(String string) throws NumberFormatException { in valueOf() 509 public static Integer valueOf(String string, int radix) throws NumberFormatException { in valueOf()
|
| D | Long.java | 88 public Long(String string) throws NumberFormatException { in Long() 140 public static Long decode(String string) throws NumberFormatException { in decode() 215 public static Long getLong(String string) { in getLong() 244 public static Long getLong(String string, long defaultValue) { in getLong() 273 public static Long getLong(String string, Long defaultValue) { in getLong() 318 public static long parseLong(String string) throws NumberFormatException { in parseLong() 337 public static long parseLong(String string, int radix) throws NumberFormatException { in parseLong() 356 private static long parse(String string, int offset, int radix, boolean negative) { in parse() 476 public static Long valueOf(String string) throws NumberFormatException { in valueOf() 496 public static Long valueOf(String string, int radix) throws NumberFormatException { in valueOf()
|
| D | Boolean.java | 68 public Boolean(String string) { in Boolean() 172 public static boolean getBoolean(String string) { in getBoolean() 213 public static Boolean valueOf(String string) { in valueOf()
|
| D | AbstractStringBuilder.java | 85 AbstractStringBuilder(String string) { in AbstractStringBuilder() 137 final void append0(String string) { in append0() 349 final void insert0(int index, String string) { in insert0() 405 final void replace0(int start, int end, String string) { in replace0() 677 public int indexOf(String string) { in indexOf() 743 public int lastIndexOf(String string) { in lastIndexOf()
|
| D | Double.java | 135 public Double(String string) throws NumberFormatException { in Double() 294 public static double parseDouble(String string) throws NumberFormatException { in parseDouble() 331 public static Double valueOf(String string) throws NumberFormatException { in valueOf()
|
| D | Float.java | 141 public Float(String string) throws NumberFormatException { in Float() 299 public static float parseFloat(String string) throws NumberFormatException { in parseFloat() 336 public static Float valueOf(String string) throws NumberFormatException { in valueOf()
|
| D | StringBuffer.java | 82 public StringBuffer(String string) { in StringBuffer() 218 public synchronized StringBuffer append(String string) { in append() 557 public synchronized StringBuffer insert(int index, String string) { in insert() 681 public synchronized StringBuffer replace(int start, int end, String string) { in replace()
|
| D | String.java | 634 public native int compareTo(String string); in compareTo() 656 public int compareToIgnoreCase(String string) { in compareToIgnoreCase() 682 public String concat(String string) { in concat() 767 public boolean equalsIgnoreCase(String string) { in equalsIgnoreCase() 992 public int indexOf(String string) { in indexOf() 1158 public int lastIndexOf(String string) { in lastIndexOf() 1233 public boolean regionMatches(int thisStart, String string, int start, int length) { in regionMatches() 1277 …public boolean regionMatches(boolean ignoreCase, int thisStart, String string, int start, int leng… in regionMatches()
|
| /libcore/luni/src/main/java/java/text/ |
| D | Format.java | 148 public Object parseObject(String string) throws ParseException { in parseObject() 175 public abstract Object parseObject(String string, ParsePosition position); in parseObject() 177 static boolean upTo(String string, ParsePosition position, in upTo() 201 static boolean upToWithQuotes(String string, ParsePosition position, in upToWithQuotes()
|
| D | NumberFormat.java | 541 public Number parse(String string) throws ParseException { in parse() 568 public abstract Number parse(String string, ParsePosition position); in parse() 571 public final Object parseObject(String string, ParsePosition position) { in parseObject()
|
| D | MessageFormat.java | 823 public Object[] parse(String string) throws ParseException { in parse() 851 public Object[] parse(String string, ParsePosition position) { in parse() 923 public Object parseObject(String string, ParsePosition position) { in parseObject() 927 private int match(String string, ParsePosition position, boolean last, in match() 956 private Format parseVariable(String string, ParsePosition position) { in parseVariable() 1195 private void appendQuoted(StringBuffer buffer, String string) { in appendQuoted()
|
| D | ChoiceFormat.java | 375 public Number parse(String string, ParsePosition position) { in parse() 435 private int skipWhitespace(String string, int index) { in skipWhitespace()
|
| D | DateFormat.java | 622 public Date parse(String string) throws ParseException { in parse() 655 public abstract Date parse(String string, ParsePosition position); in parse() 681 public Object parseObject(String string, ParsePosition position) { in parseObject()
|
| D | StringCharacterIterator.java | 25 String string; field in StringCharacterIterator
|
| /libcore/support/src/test/java/tests/support/ |
| D | Support_Proxy_I2.java | 26 String string(String s) throws Support_Proxy_SubException, Error; in string() method
|
| D | Support_Proxy_I1.java | 27 String string(String s) throws Support_Proxy_ParentException, LinkageError; in string() method
|
| /libcore/luni/src/main/java/libcore/net/url/ |
| D | UrlUtils.java | 133 public static int findFirstOf(String string, String chars, int start, int end) { in findFirstOf()
|
| /libcore/dalvik/src/main/java/dalvik/system/profiler/ |
| D | BinaryHprofReader.java | 252 String string = new String(bytes, "UTF-8"); in parseStringInUtf8() local 303 String string = idToString.get(id); in readString() local 312 String string = idToClassName.get(id); in readClass() local
|
| /libcore/luni/src/main/java/java/net/ |
| D | ProxySelectorImpl.java | 105 String string = System.getProperty(key); in getSystemPropertyInt() local
|
| /libcore/luni/src/test/java/libcore/java/text/ |
| D | NumberFormatTest.java | 57 public Number parse(String string, ParsePosition p) { in test_small_BigInteger_gets_longValue()
|