Lines Matching refs:prefix

49  * <li> An optional system-dependent <em>prefix</em> string,
59 * prefix and an empty name sequence.
84 * prefix and each name in the pathname's name sequence except for the last.
91 * <p> The prefix concept is used to handle root directories on UNIX platforms,
97 * <li> For UNIX platforms, the prefix of an absolute pathname is always
98 * <code>"/"</code>. Relative pathnames have no prefix. The abstract pathname
99 * denoting the root directory has the prefix <code>"/"</code> and an empty
102 * <li> For Microsoft Windows platforms, the prefix of a pathname that contains a drive
105 * prefix of a UNC pathname is <code>"\\\\"</code>; the hostname and the share
107 * does not specify a drive has no prefix.
194 * The length of this abstract pathname's prefix, or zero if it has no
195 * prefix.
200 * Returns the length of this abstract pathname's prefix.
464 * pathname's prefix, if any, and each name in the pathname's name
488 * pathname's prefix, if any, and each name in the pathname's name
521 * absolute if its prefix is <code>"/"</code>. On Microsoft Windows systems, a
522 * pathname is absolute if its prefix is a drive specifier followed by
523 * <code>"\\"</code>, or if its prefix is <code>"\\\\"</code>.
1879 static File generateFile(String prefix, String suffix, File dir)
1888 String name = prefix + Long.toString(n) + suffix;
1898 * given prefix and suffix strings to generate its name. If this method
1913 * <p> The <code>prefix</code> argument must be at least three characters
1914 * long. It is recommended that the prefix be a short, meaningful string
1919 * <p> To create the new file, the prefix and the suffix may first be
1921 * prefix is too long then it will be truncated, but its first three
1927 * prefix, five or more internally-generated characters, and the suffix.
1939 * @param prefix The prefix string to be used in generating the file's
1953 * If the <code>prefix</code> argument contains fewer than three
1965 public static File createTempFile(String prefix, String suffix,
1969 if (prefix.length() < 3)
1979 f = TempDirectory.generateFile(prefix, suffix, tmpdir);
1994 * the given prefix and suffix to generate its name. Invoking this method
1997 * createTempFile(prefix,&nbsp;suffix,&nbsp;null)}</code>.
2006 * @param prefix The prefix string to be used in generating the file's
2016 * If the <code>prefix</code> argument contains fewer than three
2029 public static File createTempFile(String prefix, String suffix)
2032 return createTempFile(prefix, suffix, null);