Home | History | Annotate | Download | only in string

Lines Matching refs:end

28  * Returns the string slice starting at start and ending at end, similar to the Python slice
34 * @param args 1 string values then 2 numeric values (start and end).
43 int end = endValue.asNumber();
48 if (end == 0) {
49 end = length;
53 if (end < 0) {
54 end += length;
57 end = min(end, length);
59 if (end < start) {
63 return literalValue(string.substring(start, end), stringValue.getEscapeMode(), stringValue