Searched defs:endsWith (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.h60 inline bool endsWith(const char* str, const char* suf) { function
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractPath.java47 public final boolean endsWith(String other) { method in class:AbstractPath
48 return endsWith(getFileSystem().getPath(other));
/openjdk7/jdk/src/share/classes/javax/naming/
H A DName.java191 public boolean endsWith(Name n); method in interface:Name
H A DCompositeName.java448 public boolean endsWith(Name n) { method in class:CompositeName
450 return (impl.endsWith(n.size(), n.getAll()));
H A DCompoundName.java437 public boolean endsWith(Name n) { method in class:CompoundName
439 return (impl.endsWith(n.size(), n.getAll()));
H A DNameImpl.java600 public boolean endsWith(int posn, Enumeration suffix) { method in class:NameImpl
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java57 * the {@link #startsWith startsWith} and {@link #endsWith endWith} methods.
285 boolean endsWith(Path other); method in interface:Path
290 * #endsWith(Path) endsWith(Path)} method. On UNIX for example, the path
306 boolean endsWith(String other); method in interface:Path
347 * that {@link #endsWith ends} with the given path. Where the given path has
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java342 public boolean endsWith(Name n) { method in class:LdapName
363 public boolean endsWith(List<Rdn> rdns) { method in class:LdapName
383 * Helper method for startsWith() and endsWith().
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLString.java312 public abstract boolean endsWith(String suffix); method in interface:XMLString
H A DXMLStringDefault.java369 public boolean endsWith(String suffix) method in class:XMLStringDefault
371 return m_str.endsWith(suffix);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java609 public boolean endsWith(String suffix) method in class:XString
611 return str().endsWith(suffix);
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java234 public boolean endsWith(Name n) { method in class:DnsName
516 return !(label.startsWith("-") || label.endsWith("-"));
/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java463 private static void endsWith() { method in class:Exceptions
464 System.out.println("endsWith(String suffix)");
467 "foo".endsWith(null);
649 endsWith(); // endsWith(String)
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java659 public boolean endsWith(Path other) { method in class:UnixPath
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java221 public boolean endsWith(Name n) { method in class:LdapName
246 * Helper method for startsWith() and endsWith().
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPath.java228 if (defaultDirectory.endsWith("\\")) {
249 if (defaultDirectory.endsWith("\\")) {
268 if (wd.endsWith("\\")) {
361 if (path.endsWith("\\"))
534 if (path.endsWith("\\") || (root.length() == path.length())) {
544 if (root.endsWith("\\")) {
553 if (!root.endsWith("\\"))
562 if (path.endsWith("\\")) {
679 public boolean endsWith(Path obj) { method in class:WindowsPath
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java180 boolean endsWith = (defaultdir[defaultlen - 1] == '/');
182 if (endsWith)
187 if (!endsWith)
325 public boolean endsWith(Path other) { method in class:ZipPath
362 public final boolean endsWith(String other) { method in class:ZipPath
363 return endsWith(getFileSystem().getPath(other));
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1428 public boolean endsWith(String suffix) { method in class:String
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java421 public boolean endsWith(Path other) { method in class:PassThroughFileSystem.PassThroughPath
422 return delegate.endsWith(unwrap(other));
426 public boolean endsWith(String other) { method in class:PassThroughFileSystem.PassThroughPath
427 return delegate.endsWith(other);

Completed in 91 milliseconds