Searched refs:suffix (Results 51 - 75 of 106) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java836 String suffix = "";
842 suffix = suffix + ResourcesMgr.getString(".Principal.") +
851 suffix = suffix +
863 suffix += ResourcesMgr.getString
868 suffix += ResourcesMgr.getString
875 return s + suffix;
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java1879 static File generateFile(String prefix, String suffix, File dir) argument
1888 String name = prefix + Long.toString(n) + suffix;
1898 * given prefix and suffix strings to generate its name. If this method
1916 * <code>suffix</code> argument may be <code>null</code>, in which case the
1917 * suffix <code>".tmp"</code> will be used.
1919 * <p> To create the new file, the prefix and the suffix may first be
1922 * characters will always be preserved. If the suffix is too long then it
1927 * prefix, five or more internally-generated characters, and the suffix.
1942 * @param suffix The suffix strin
1965 createTempFile(String prefix, String suffix, File directory) argument
2029 createTempFile(String prefix, String suffix) argument
[all...]
/openjdk7/jdk/test/java/lang/instrument/BootClassPath/
H A DSetup.java50 String bootClassPath = "boot" + suffix();
119 private static String suffix() { method in class:Setup
122 // for Unix and Windows, respectively. Use empty suffix
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.java117 String suffix = "";
119 suffix = "/noaccess";
121 suffix = "/public";
123 suffix = "/package";
125 suffix = "/private";
127 suffix = "";
129 suffix = "/#"+Integer.toHexString(lookupModes);
130 return name+suffix;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DGraphicsTests.java160 String suffix;
162 suffix = rulename.substring(3);
165 suffix = rulename.substring(3);
168 suffix = "";
170 if (suffix.length() > 0) {
171 suffix = " "+suffix;
173 ruledescs[j] = rulename+suffix;
/openjdk7/jdk/test/sun/net/idn/
H A DNFS4StringPrep.java159 UCharacterIterator suffix = UCharacterIterator.getInstance(suffixString);
162 out.append(prep.nfsmxs.prepare(suffix, StringPrep.DEFAULT));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLString.java300 * Tests if this string ends with the specified suffix.
302 * @param suffix the suffix.
304 * argument is a suffix of the character sequence represented by
309 * @exception java.lang.NullPointerException if <code>suffix</code> is
312 public abstract boolean endsWith(String suffix); argument
/openjdk7/corba/make/common/internal/
H A DResources.gmk106 $(basename $(file))_$(locale)$(suffix $(file))))
116 $(basename $(file))_$(locale)$(suffix $(file))))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportOptions.java364 private void addRecursive(File dir, String suffix, List<InputSource> result) { argument
370 addRecursive(f, suffix, result);
371 else if (f.getPath().endsWith(suffix))
396 * @param suffix If the given token is a directory name, we do a recusive search
397 * and find all files that have the given suffix.
399 private void addFile(String name, List<InputSource> target, String suffix) throws BadCommandLineException { argument
411 addRecursive(fsrc, suffix, target);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java274 public Name addAll(Name suffix) throws InvalidNameException { argument
275 return addAll(size(), suffix);
279 * If "suffix" is not an LdapName, each of its components is parsed as
282 public Name addAll(int pos, Name suffix) throws InvalidNameException { argument
283 if (suffix instanceof LdapName) {
284 LdapName s = (LdapName)suffix;
289 Enumeration comps = suffix.getAll();
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java134 PathOps ends(String suffix) { argument
135 out.format("test endsWith %s\n", suffix);
137 Path s = FileSystems.getDefault().getPath(suffix);
142 PathOps notEnds(String suffix) { argument
143 out.format("test not endsWith %s\n", suffix);
145 Path s = FileSystems.getDefault().getPath(suffix);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DUtils.java305 final String suffix = value.substring(value.length() - 1);
306 if ("L".equalsIgnoreCase(suffix)) {
309 if ("F".equalsIgnoreCase(suffix)) {
312 if ("D".equalsIgnoreCase(suffix)) {
/openjdk7/jdk/make/common/internal/
H A DResources.gmk109 $(basename $(file))_$(locale)$(suffix $(file))))
119 $(basename $(file))_$(locale)$(suffix $(file))))
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java585 int suffix = (i < SUFFIX_SKIP_1)? 0: cp_Utf8_suffix.getInt();
586 if (suffix == 0 && i >= SUFFIX_SKIP_1) {
591 suffixChars[i] = new char[suffix];
592 for (int j = 0; j < suffix; j++) {
606 int suffix = (i < SUFFIX_SKIP_1)? 0: cp_Utf8_suffix.getInt();
608 if (suffix == 0 && i >= SUFFIX_SKIP_1) {
610 suffix = cp_Utf8_big_suffix.getInt();
614 if (maxChars < prefix + suffix)
615 maxChars = prefix + suffix;
624 int suffix
[all...]
H A DPackageWriter.java576 int suffix = str.length - prefixes[i];
578 if (suffix == 0) {
579 // Zero suffix length is special flag to indicate
581 // This suffix length never occurs naturally,
590 } else if (optBigStrings && effort > 1 && suffix > 100) {
592 for (int n = 0; n < suffix; n++) {
605 assert(suffix == 0);
607 // Mark packed string with zero-length suffix count.
608 // This tells the unpacker to go elsewhere for the suffix bits.
609 // Fourth band: Write unshared suffix wit
[all...]
H A DDriver.java380 File createTempFile(String basefile, String suffix) throws IOException { argument
385 File where = (base.getParentFile() == null && suffix.equals(".bak"))
390 ? Files.createTempFile(prefix, suffix)
391 : Files.createTempFile(where.toPath(), prefix, suffix);
604 // + means we want an non-empty val suffix.
615 // match, as indicated by an empty val suffix.
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp98 void stamp(bool guard, const char* prefix, const char* suffix);
103 void date_stamp(bool guard, const char* prefix, const char* suffix);
104 // A simplified call that includes a suffix of ": "
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java321 private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
329 sb.append(suffix);
332 private void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
334 append(sb, prefix, list, suffix);
535 void writeList(String prefix, Collection<?> items, String suffix) { argument
543 print(suffix);
546 void writeListIfNotEmpty(String prefix, List<?> items, String suffix) { argument
548 writeList(prefix, items, suffix);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dmain.cpp31 static char *base_plus_suffix(const char* base, const char *suffix);// New concatenated string
32 static char *prefix_plus_base_plus_suffix(const char* prefix, const char* base, const char *suffix);// New concatenated string
461 static char *base_plus_suffix(const char* base, const char *suffix) argument
463 int len = (int)strlen(base) + (int)strlen(suffix) + 1;
466 sprintf(fname,"%s%s",base,suffix);
/openjdk7/jdk/make/tools/reorder/tools/
H A Dmcount.c446 char *suffix; local
451 suffix = rindex(fileName, '.');
452 if (suffix == NULL)
453 fail("no file name suffix?");
454 suffix[1] = 'o';
455 suffix[2] = '\0';
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DRmiBootstrapTest.java136 * A filter to find all filenames who match <prefix>*<suffix>.
137 * Note that <prefix> and <suffix> can overlap.
140 final String suffix; field in class:RmiBootstrapTest.ConfigFilenameFilter
142 ConfigFilenameFilter(String prefix, String suffix) { argument
143 this.suffix=suffix;
147 return (name.startsWith(prefix) && name.endsWith(suffix));
746 ": test file suffix must be one of [ko|ok].properties";
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java336 byte[] suffix,
342 suffix[i] = (byte)i;
913 byte[] suffix = new byte[4096];
918 initializeStringTable(prefix, suffix, initial, length);
927 initializeStringTable(prefix, suffix, initial, length);
959 suffix[ti] = initial[newSuffixIndex];
975 string[i] = suffix[c];
335 initializeStringTable(int[] prefix, byte[] suffix, byte[] initial, int[] length) argument
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java177 String suffix = random(null, "$Entry", "$Entry2");
180 if (suffix != null) {
181 ClassSymbol c2 = createClass(names.fromString(outer + suffix), p);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java741 * prefix and suffix strings to generate its name. The resulting
747 * the {@code prefix} and {@code suffix} are used to construct candidate
774 * @param suffix
775 * the suffix string to be used in generating the file's name;
785 * if the prefix or suffix parameters cannot be used to generate
799 String suffix,
804 prefix, suffix, attrs);
809 * the given prefix and suffix to generate its name. The resulting {@code
819 * @param suffix
820 * the suffix strin
797 createTempFile(Path dir, String prefix, String suffix, FileAttribute<?>... attrs) argument
843 createTempFile(String prefix, String suffix, FileAttribute<?>... attrs) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DConfig.java111 // name suffix of the provider
657 String suffix = lib.substring(i + 5);
659 lib = prefix + "/sparcv9" + suffix;
661 lib = prefix + "/amd64" + suffix;
663 lib = prefix + suffix;

Completed in 316 milliseconds

12345