Searched defs:suffix (Results 26 - 50 of 63) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DTempFiles.java109 static File createTempFile(String prefix, String suffix, File dir) throws IOException { argument
112 LOGGER.log(Level.FINEST, "Jdk6 detected, temp file (prefix:{0}, suffix:{1}) being created using old java.io API.", new Object[]{prefix, suffix});
113 return File.createTempFile(prefix, suffix, dir);
120 LOGGER.log(Level.FINEST, "Temp file (path: {0}, prefix:{1}, suffix:{2}) being created using NIO API.", new Object[]{dir.getAbsolutePath(), prefix, suffix});
121 return toFile(METHOD_FILES_CREATE_TEMP_FILE_WITHPATH.invoke(null, path, prefix, suffix, Array.newInstance(CLASS_FILE_ATTRIBUTE, 0)));
123 LOGGER.log(Level.FINEST, "Temp file (prefix:{0}, suffix:{1}) being created using NIO API.", new Object[]{prefix, suffix});
124 return toFile(METHOD_FILES_CREATE_TEMP_FILE.invoke(null, prefix, suffix, Arra
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DFieldDocImpl.java135 private static String sourceForm(double v, char suffix) { argument
137 return "0" + suffix + "/0" + suffix;
139 return "1" + suffix + "/0" + suffix;
141 return "-1" + suffix + "/0" + suffix;
142 return v + (suffix == 'f' || suffix == 'F' ? "" + suffix
[all...]
/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
H A DXMLStringDefault.java357 * Tests if this string ends with the specified suffix.
359 * @param suffix the suffix.
361 * argument is a suffix of the character sequence represented by
366 * @exception java.lang.NullPointerException if <code>suffix</code> is
369 public boolean endsWith(String suffix) argument
371 return m_str.endsWith(suffix);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java597 * Tests if this string ends with the specified suffix.
599 * @param suffix the suffix.
601 * argument is a suffix of the character sequence represented by
606 * @exception java.lang.NullPointerException if <code>suffix</code> is
609 public boolean endsWith(String suffix) argument
611 return str().endsWith(suffix);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusLookAndFeel.java516 private String suffix; field in class:NimbusLookAndFeel.NimbusProperty
519 private NimbusProperty(String prefix, String suffix) { argument
521 this.suffix = suffix;
522 isFont = "font".equals(suffix);
525 private NimbusProperty(String prefix, String state, String suffix) { argument
526 this(prefix,suffix);
542 obj = uiDefaults.get(prefix+"["+state+"]."+suffix);
546 obj = uiDefaults.get(prefix+"[Enabled]."+suffix);
553 obj = uiDefaults.get(suffix);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java319 public Name addAll(Name suffix) throws InvalidNameException { argument
320 return addAll(size(), suffix);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.hpp207 const char* suffix = ""; local
210 suffix = "/static";
212 suffix = "/private";
214 jio_snprintf(qname, len, "MethodHandle::interpreter_entry::%s%s", name, suffix);
/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/test/demo/zipfs/
H A DPathOps.java137 PathOps ends(String suffix) { argument
138 out.format("test endsWith %s\n", suffix);
140 Path s = fs.getPath(suffix);
145 PathOps notEnds(String suffix) { argument
146 out.format("test not endsWith %s\n", suffix);
148 Path s = fs.getPath(suffix);
/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/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java256 private String nameToPath(String name, String suffix) throws IOException { argument
261 return name.replace('.', File.separatorChar) + suffix;
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DType.java51 protected static void append(StringBuilder sb, String prefix, List<? extends Type> types, String suffix) { argument
59 sb.append(suffix);
62 protected static void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> types, String suffix) { argument
64 append(sb, prefix, types, suffix);
/openjdk7/jdk/src/share/native/sun/awt/image/gif/
H A Dgifdecoder.c52 suffix = (unsigned char *) \
54 if (suffix == 0) \
76 if (suffix) \
77 (*env)->ReleasePrimitiveArrayCritical(env, suffixh, suffix, 0); \
111 suffixID = (*env)->GetFieldID(env, this, "suffix", "[B");
146 * entry is the hashtable (the prefix, suffix stuff), and the appropriate
175 unsigned char *suffix = NULL; local
366 outCode[--outCount] = suffix[curCode];
370 * prefix and suffix arrays are monotonically
454 suffix[freeCod
[all...]
/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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DMode.java174 * @param suffix A suffix to append to the method name for this mode
177 public Mode(QName name, Stylesheet stylesheet, String suffix) { argument
180 _methodName = APPLY_TEMPLATES + suffix;
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java343 private byte suffix[] = new byte[4096]; field in class:GifImageDecoder
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java600 public boolean endsWith(int posn, Enumeration suffix) { argument
601 // posn is number of elements in suffix
613 String his = (String)suffix.nextElement();
/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/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/src/share/classes/java/lang/
H A DString.java1418 * Tests if this string ends with the specified suffix.
1420 * @param suffix the suffix.
1422 * argument is a suffix of the character sequence represented by
1428 public boolean endsWith(String suffix) { argument
1429 return startsWith(suffix, value.length - suffix.value.length);
/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/java/util/
H A DResourceBundle.java2696 * same string as its file suffix if it's not one of the default
2848 * <code>'.'</code> and the given file <code>suffix</code>. For
2850 * <code>"foo.bar.MyResources_ja_JP"</code> and <code>suffix</code>
2856 * @param suffix
2857 * the file type suffix
2860 * if <code>bundleName</code> or <code>suffix</code>
2863 public final String toResourceName(String bundleName, String suffix) { argument
2864 StringBuilder sb = new StringBuilder(bundleName.length() + 1 + suffix.length());
2865 sb.append(bundleName.replace('.', '/')).append('.').append(suffix);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java338 // the mode/padding suffix in upper case. for example, if the algorithm
339 // to lookup is "DES/CBC/PKCS5Padding" suffix is "/CBC/PKCS5PADDING"
340 // if loopup is "DES", suffix is the empty string
342 final String suffix; field in class:Cipher.Transform
347 Transform(String alg, String suffix, String mode, String pad) { argument
348 this.transform = alg + suffix;
349 this.suffix = suffix.toUpperCase(Locale.ENGLISH);
444 if (alg.endsWith(tr.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';

Completed in 383 milliseconds

123