Searched defs:lastPathComponent (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreePath.java85 /** Path representing the parent, null if lastPathComponent represents
89 private Object lastPathComponent; field in class:TreePath
103 lastPathComponent = path[path.length - 1];
104 if (lastPathComponent == null) {
116 * @param lastPathComponent the root
118 * @throws IllegalArgumentException if {@code lastPathComponent} is
121 public TreePath(Object lastPathComponent) { argument
122 if(lastPathComponent == null)
124 this.lastPathComponent = lastPathComponent;
137 TreePath(TreePath parent, Object lastPathComponent) argument
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c643 const char lastPathComponent[] = "/lib/jli/libjli.dylib"; local
644 size_t sizeOfLastPathComponent = sizeof(lastPathComponent) - 1;
650 if (0 == strncmp(realPathToSelf + indexOfLastPathComponent, lastPathComponent, sizeOfLastPathComponent - 1)) {

Completed in 2800 milliseconds