Searched defs:substring (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/lang/
H A DAbstractStringBuilder.java608 public String substring(int start) { method in class:AbstractStringBuilder
633 public String substring(int start, int end) { method in class:AbstractStringBuilder
680 return substring(start, end);
H A DStringBuffer.java705 return super.substring(start, end);
709 public synchronized String substring(int start) { method in class:StringBuffer
710 return super.substring(start);
714 public synchronized String substring(int start, int end) { method in class:StringBuffer
715 return super.substring(start, end);
H A DString.java1108 * string, -1 if the specified string is not a substring.
1155 * string, -1 if the specified string is not a substring.
1267 * string, -1 if the specified string is not a substring.
1286 * string , -1 if the specified string is not a substring.
1548 public String substring(int start) { method in class:String
1570 public String substring(int start, int end) { method in class:String
1995 * the string to replace the matching substring with.
2008 * Replace the first substring within this string that matches the supplied
2014 * the string to replace the matching substring with.
2071 * Has the same result as the substring functio
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java228 * argument is a prefix of the substring of this object starting
249 * argument is a prefix of the substring of this object starting
420 * specified substring. The integer returned is the smallest value
428 * @return if the string argument occurs as a substring within this
430 * such substring is returned; if it does not occur as a
431 * substring, <code>-1</code> is returned.
439 * specified substring. The integer returned is the smallest value
447 * @return if the string argument occurs as a substring within this
449 * such substring is returned; if it does not occur as a
450 * substring, <cod
543 public abstract XMLString substring(int beginIndex); method in interface:XMLString
561 public abstract XMLString substring(int beginIndex, int endIndex); method in interface:XMLString
[all...]
H A DXMLStringDefault.java273 * argument is a prefix of the substring of this object starting
297 * argument is a prefix of the substring of this object starting
495 * specified substring. The integer returned is the smallest value
503 * @return if the string argument occurs as a substring within this
505 * such substring is returned; if it does not occur as a
506 * substring, <code>-1</code> is returned.
517 * specified substring. The integer returned is the smallest value
525 * @return if the string argument occurs as a substring within this
527 * such substring is returned; if it does not occur as a
528 * substring, <cod
633 public XMLString substring(int beginIndex) method in class:XMLStringDefault
654 public XMLString substring(int beginIndex, int endIndex) method in class:XMLStringDefault
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXString.java492 * argument is a prefix of the substring of this object starting
535 * argument is a prefix of the substring of this object starting
735 * specified substring. The integer returned is the smallest value
743 * @return if the string argument occurs as a substring within this
745 * such substring is returned; if it does not occur as a
746 * substring, <code>-1</code> is returned.
757 * specified substring. The integer returned is the smallest value
765 * @return if the string argument occurs as a substring within this
767 * such substring is returned; if it does not occur as a
768 * substring, <cod
873 public XMLString substring(int beginIndex) method in class:XString
894 public XMLString substring(int beginIndex, int endIndex) method in class:XString
[all...]
H A DXStringForFSB.java153 // str = str.substring(0, 600);
596 * argument is a prefix of the substring of this object starting
736 * Returns a new string that is a substring of this string. The
737 * substring begins with the character at the specified index and
741 * "unhappy".substring(2) returns "happy"
742 * "Harbison".substring(3) returns "bison"
743 * "emptiness".substring(9) returns "" (an empty string)
747 * @return the specified substring.
752 public XMLString substring(int beginIndex) method in class:XStringForFSB
768 * Returns a new string that is a substring o
783 public XMLString substring(int beginIndex, int endIndex) method in class:XStringForFSB
[all...]

Completed in 182 milliseconds