Searched refs:toffset (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLStringDefault.java273 * @param toffset where to begin looking in the string.
276 * at index <code>toffset</code>; <code>false</code> otherwise.
277 * The result is <code>false</code> if <code>toffset</code> is
282 * this.subString(toffset).startsWith(prefix)
287 public boolean startsWith(String prefix, int toffset) argument
289 return m_str.startsWith(prefix, toffset);
297 * @param toffset where to begin looking in the string.
300 * at index <code>toffset</code>; <code>false</code> otherwise.
301 * The result is <code>false</code> if <code>toffset</code> is
306 * this.subString(toffset)
311 startsWith(XMLString prefix, int toffset) argument
[all...]
H A DXMLString.java228 * @param toffset where to begin looking in the string.
231 * at index <code>toffset</code>; <code>false</code> otherwise.
232 * The result is <code>false</code> if <code>toffset</code> is
237 * this.subString(toffset).startsWith(prefix)
242 public abstract boolean startsWith(String prefix, int toffset); argument
249 * @param toffset where to begin looking in the string.
252 * at index <code>toffset</code>; <code>false</code> otherwise.
253 * The result is <code>false</code> if <code>toffset</code> is
258 * this.subString(toffset).startsWith(prefix)
263 public abstract boolean startsWith(XMLString prefix, int toffset); argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java492 * @param toffset where to begin looking in the string.
495 * at index <code>toffset</code>; <code>false</code> otherwise.
496 * The result is <code>false</code> if <code>toffset</code> is
501 * this.subString(toffset).startsWith(prefix)
506 public boolean startsWith(String prefix, int toffset) argument
508 return str().startsWith(prefix, toffset);
535 * @param toffset where to begin looking in the string.
538 * at index <code>toffset</code>; <code>false</code> otherwise.
539 * The result is <code>false</code> if <code>toffset</code> is
544 * this.subString(toffset)
549 startsWith(XMLString prefix, int toffset) argument
[all...]
H A DXStringForFSB.java596 * @param toffset where to begin looking in the string.
599 * at index <code>toffset</code>; <code>false</code> otherwise.
600 * The result is <code>false</code> if <code>toffset</code> is
605 * this.subString(toffset).startsWith(prefix)
610 public boolean startsWith(XMLString prefix, int toffset) argument
614 int to = m_start + toffset;
619 // Note: toffset might be near -1>>>1.
620 if ((toffset < 0) || (toffset > m_length - pc))
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1229 * <tt>String</tt> object to be compared begins at index <tt>toffset</tt>
1234 * <ul><li><tt>toffset</tt> is negative.
1236 * <li><tt>toffset+len</tt> is greater than the length of this
1242 * <tt>this.charAt(toffset+<i>k</i>)&nbsp;!=&nbsp;other.charAt(ooffset+<i>k</i>)</tt>
1245 * @param toffset the starting offset of the subregion in this string.
1254 public boolean regionMatches(int toffset, String other, int ooffset, argument
1257 int to = toffset;
1260 // Note: toffset, ooffset, or len might be near -1>>>1.
1261 if ((ooffset < 0) || (toffset < 0)
1262 || (toffset > (lon
1324 regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len) argument
1382 startsWith(String prefix, int toffset) argument
[all...]

Completed in 124 milliseconds