Searched refs:suffix (Results 1 - 25 of 106) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509AttributeName.java40 private String suffix = null; field in class:X509AttributeName
54 suffix = name.substring(i + 1);
66 * Return the suffix of the name.
69 return (suffix);
H A DX509CertInfo.java380 String suffix = attrName.getSuffix();
384 if (suffix == null) {
387 version.set(suffix, val);
392 if (suffix == null) {
395 serialNum.set(suffix, val);
400 if (suffix == null) {
403 algId.set(suffix, val);
408 if (suffix == null) {
411 issuer.set(suffix, val);
416 if (suffix
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DNameModifierImpl.java32 private String suffix ; field in class:NameModifierImpl
37 this.suffix = null ;
40 public NameModifierImpl( String prefix, String suffix )
43 this.suffix = suffix ;
80 suffix = pattern.substring( first+1 ) ;
114 if (suffix != null)
115 sb.append( suffix ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEConfig.java57 String suffix; field in class:MIMEConfig
61 long inMemoryThreshold, String dir, String prefix, String suffix) {
66 this.suffix = suffix;
119 return suffix;
139 ? File.createTempFile(prefix, suffix)
140 : File.createTempFile(prefix, suffix, tempDir);
60 MIMEConfig(boolean parseEagerly, int chunkSize, long inMemoryThreshold, String dir, String prefix, String suffix) argument
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...]
H A DMemoryData.java79 String suffix = config.getTempFileSuffix();
80 File tempFile = TempFiles.createTempFile(prefix, suffix, config.getTempDir());
/openjdk7/jdk/test/java/io/File/createTempFile/
H A DPatterns.java26 @summary Check various temp-file prefix/suffix cases */
35 static void ckn(String prefix, String suffix) throws Exception { argument
37 File f = File.createTempFile(prefix, suffix, dir);
43 System.err.println("\"" + prefix + "\", \"" + suffix
49 throw new Exception("\"" + prefix + "\", \"" + suffix
53 static void cky(String prefix, String suffix) throws Exception { argument
54 File f = File.createTempFile(prefix, suffix, dir);
56 System.err.println("\"" + prefix + "\", \"" + suffix
H A DSpecialTempFile.java37 private static void test(String name, String[] prefix, String[] suffix) { argument
38 if (prefix == null || suffix == null
39 || prefix.length != suffix.length)
52 + prefix[i] + ", suffix, " + suffix[i]);
54 f = File.createTempFile(prefix[i], suffix[i]);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassPath.java218 * @param suffix file name ends with suff, e.g. .java
221 public InputStream getInputStream(String name, String suffix) throws IOException { argument
225 is = getClass().getClassLoader().getResourceAsStream(name + suffix);
231 return getClassFile(name, suffix).getInputStream();
236 * @param suffix file name ends with suff, e.g. .java
239 public ClassFile getClassFile(String name, String suffix) throws IOException { argument
243 if((cf = paths[i].getClassFile(name, suffix)) != null)
247 throw new IOException("Couldn't find: " + name + suffix);
260 * @param suffix file name ends with suffix,
263 getBytes(String name, String suffix) argument
305 getPath(String name, String suffix) argument
310 getClassFile(String name, String suffix) argument
343 getClassFile(String name, String suffix) argument
370 getClassFile(String name, String suffix) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModel.java84 final String getText(Component component, String suffix) { argument
85 return UIManager.getString(this.prefix + suffix + "Text", component.getLocale()); // NON-NLS: default postfix
88 final int getInteger(Component component, String suffix) { argument
89 Object value = UIManager.get(this.prefix + suffix, component.getLocale());
/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/jdk/src/share/classes/com/sun/beans/finder/
H A DInstanceFinder.java41 private final String suffix; field in class:InstanceFinder
44 InstanceFinder(Class<? extends T> type, boolean allow, String suffix, String... packages) { argument
47 this.suffix = suffix;
65 String name = type.getName() + this.suffix;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DTempFileHelper.java57 private static Path generatePath(String prefix, String suffix, Path dir) { argument
60 Path name = dir.getFileSystem().getPath(prefix + Long.toString(n) + suffix);
63 throw new IllegalArgumentException("Invalid prefix or suffix");
82 String suffix,
89 if (suffix == null)
90 suffix = (createDirectory) ? "" : ".tmp";
127 f = generatePath(prefix, suffix, dir);
131 throw new IllegalArgumentException("Invalid prefix or suffix");
157 String suffix,
161 return create(dir, prefix, suffix, fals
80 create(Path dir, String prefix, String suffix, boolean createDirectory, FileAttribute[] attrs) argument
155 createTempFile(Path dir, String prefix, String suffix, FileAttribute[] attrs) argument
[all...]
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DGeneratePropertyPassword.sh85 suffix=`basename $f .in`
86 f2="${TESTCLASSES}${FILESEP}${suffix}"
113 suffix=`basename $f .in`
114 f2="${TESTCLASSES}${FILESEP}${suffix}"
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLType.java96 String suffix = "Exception" ;
98 if (excName.endsWith( suffix )) {
99 int last = excName.length() - suffix.length() ;
/openjdk7/jdk/test/java/nio/file/Files/
H A DTemporaryFiles.java45 static void testTempFile(String prefix, String suffix, Path dir) argument
49 Files.createTempFile(prefix, suffix) :
50 Files.createTempFile(dir, prefix, suffix);
56 if (suffix == null && !name.endsWith(".tmp"))
58 if (suffix != null && !name.endsWith(suffix))
59 throw new RuntimeException("Should end with " + suffix);
82 static void testTempFile(String prefix, String suffix) argument
85 testTempFile(prefix, suffix, null);
136 static void testInvalidFileTemp(String prefix, String suffix) throw argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DCompositeName.java402 * Creates a composite name whose components consist of a suffix of the
438 * Determines whether a composite name is a suffix of this composite name.
439 * A composite name 'n' is a suffix if it it is equal to
446 * is a suffix of this composite name, false otherwise.
460 * @param suffix The non-null components to add.
462 * @exception InvalidNameException If suffix is not a composite name.
464 public Name addAll(Name suffix) argument
467 if (suffix instanceof CompositeName) {
468 impl.addAll(suffix.getAll());
472 suffix
[all...]
H A DCompoundName.java384 * Creates a compound name whose components consist of a suffix of the
425 * Determines whether a compound name is a suffix of this compound name.
426 * A compound name 'n' is a suffix if it it is equal to
435 * is a suffix of this compound name, false otherwise.
449 * Implementation note: Currently the syntax properties of suffix
451 * @param suffix The non-null components to add.
453 * @exception InvalidNameException If suffix is not a compound name,
457 public Name addAll(Name suffix) throws InvalidNameException { argument
458 if (suffix instanceof CompoundName) {
459 impl.addAll(suffix
[all...]
H A DName.java156 * Creates a name whose components consist of a suffix of the
183 * Determines whether this name ends with a specified suffix.
184 * A name <tt>n</tt> is a suffix if it is equal to
189 * @return true if <tt>n</tt> is a suffix of this name, false otherwise
196 * @param suffix
200 * @throws InvalidNameException if <tt>suffix</tt> is not a valid name,
204 public Name addAll(Name suffix) throws InvalidNameException; argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexp.java39 * prefix, a constant string suffix, and a series of floating strings in
43 public String prefix, suffix; field in class:Regexp
74 suffix = null;
76 suffix = s.substring(lastst + 1);
118 !suffix.regionMatches(ignoreCase,
/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/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DResolver.java43 * suffix-based matching and an external RFC2483 resolver.
56 * <p>URI suffix entries match URIs that end in a specified suffix.</p>
63 * <p>System suffix entries match system identifiers that end in a
64 * specified suffix.</p>
124 String suffix = normalizeURI(entry.getEntryArg(0));
129 catalogManager.debug.message(4, "URISUFFIX", suffix, fsi);
131 String suffix = normalizeURI(entry.getEntryArg(0));
136 catalogManager.debug.message(4, "SYSTEMSUFFIX", suffix, fsi);
179 String suffix
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBISchemaBinding.java98 * It simply adds prefix and suffix to the name, but
106 private String suffix = ""; field in class:BISchemaBinding.NamingRule
110 this.suffix = _suffix;
118 return prefix+originalName+suffix;
/openjdk7/jdk/src/share/back/
H A Derror_messages.h35 void print_message(FILE *fp, const char *prefix, const char *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...]

Completed in 52 milliseconds

12345