Home
last modified time | relevance | path

Searched defs:string (Results 1 – 25 of 44) sorted by relevance

12

/libcore/luni/src/main/java/java/util/
DStringTokenizer.java42 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()
DDate.java148 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()
DTimeZone.java201 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/
DByte.java81 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()
DShort.java73 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()
DInteger.java101 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()
DLong.java88 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()
DBoolean.java68 public Boolean(String string) { in Boolean()
172 public static boolean getBoolean(String string) { in getBoolean()
213 public static Boolean valueOf(String string) { in valueOf()
DAbstractStringBuilder.java85 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()
DDouble.java135 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()
DFloat.java141 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()
DStringBuffer.java82 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()
DString.java634 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/
DFormat.java148 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()
DNumberFormat.java541 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()
DMessageFormat.java823 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()
DChoiceFormat.java375 public Number parse(String string, ParsePosition position) { in parse()
435 private int skipWhitespace(String string, int index) { in skipWhitespace()
DDateFormat.java622 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()
DStringCharacterIterator.java25 String string; field in StringCharacterIterator
/libcore/support/src/test/java/tests/support/
DSupport_Proxy_I2.java26 String string(String s) throws Support_Proxy_SubException, Error; in string() method
DSupport_Proxy_I1.java27 String string(String s) throws Support_Proxy_ParentException, LinkageError; in string() method
/libcore/luni/src/main/java/libcore/net/url/
DUrlUtils.java133 public static int findFirstOf(String string, String chars, int start, int end) { in findFirstOf()
/libcore/dalvik/src/main/java/dalvik/system/profiler/
DBinaryHprofReader.java252 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/
DProxySelectorImpl.java105 String string = System.getProperty(key); in getSystemPropertyInt() local
/libcore/luni/src/test/java/libcore/java/text/
DNumberFormatTest.java57 public Number parse(String string, ParsePosition p) { in test_small_BigInteger_gets_longValue()

12