Searched refs:extension (Results 1 - 25 of 111) sorted by relevance

12345

/openjdk10/jaxws/src/java.activation/share/classes/com/sun/activation/registries/
H A DMimeTypeEntry.java32 private String extension; field in class:MimeTypeEntry
36 extension = file_ext;
44 return extension;
48 return "MIMETypeEntry: " + type + ", " + extension;
/openjdk10/langtools/src/java.compiler/share/classes/javax/tools/
H A DJavaFileObject.java76 * The extension which (by convention) is normally used for
80 public final String extension; field in class:JavaFileObject.Kind
81 private Kind(String extension) { argument
82 this.extension = Objects.requireNonNull(extension);
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/framework/
H A DExtensionVisitorBase.java31 * A base class for extension visitors.
39 public void preVisit(TWSDLExtension extension) throws Exception { argument
41 public void postVisit(TWSDLExtension extension) throws Exception { argument
H A DExtensionVisitor.java31 * A visitor working on extension entities.
36 public void preVisit(TWSDLExtension extension) throws Exception; argument
37 public void postVisit(TWSDLExtension extension) throws Exception; argument
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DHelloExtensions.java35 * ClientHello and ServerHello messages. The extension mechanism and
37 * defined in the ECC RFC 4492 and the ALPN extension is defined in RFC 7301.
44 * . ExtensionType: an enum style class for the extension type
50 * . ServerNameExtension: the server_name extension.
51 * . SignatureAlgorithmsExtension: the signature_algorithms extension.
52 * . SupportedGroupsExtension: the supported groups extension.
54 * (compressed/uncompressed) extension.
55 * . ALPNExtension: the application_layer_protocol_negotiation extension.
77 HelloExtension extension;
79 extension
[all...]
/openjdk10/jdk/src/demo/share/jfc/FileChooserDemo/
H A DExampleFileView.java108 * extension strings, e.g: ".gif". Case is ignored.
110 public void putTypeDescription(String extension, String typeDescription) { argument
111 typeDescriptions.put(extension, typeDescription);
116 * the passed in file. Based on "dot" extension strings, e.g: ".gif".
134 * Convenience method that returns the "dot" extension for the
150 * Adds an icon based on the file type "dot" extension
153 public void putIcon(String extension, Icon icon) { argument
154 icons.put(extension, icon);
167 String extension = getExtension(f);
168 if (extension !
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DPathUtilities.java56 String generateID(String extension) { argument
57 Integer box = sequences.get(extension);
59 sequences.put(extension, 1);
62 sequences.put(extension, box + 1);
68 private static String getThreadDumpId(String extension) { argument
74 return id.generateID(extension);
79 * extension if the string does not already start with a period.
105 * id} and an optional {@code extension}.
109 public static Path getPath(OptionValues options, OptionKey<String> baseNameOption, String extension) throws IOException { argument
110 return getPath(options, baseNameOption, extension, tru
119 getPathGlobal(OptionValues options, OptionKey<String> baseNameOption, String extension) argument
123 getPath(OptionValues options, OptionKey<String> baseNameOption, String extension, boolean includeThreadId) argument
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSimpleContent.java43 public SimpleExtension extension(); method in interface:SimpleContent
H A DComplexContent.java44 public ComplexExtension extension(); method in interface:ComplexContent
/openjdk10/test/lib/jdk/test/lib/artifacts/
H A DArtifact.java35 String extension(); method in interface:Artifact
/openjdk10/jdk/src/java.base/macosx/native/libnio/fs/
H A DUTIFileTypeDetector.c93 * Returns the content type corresponding to the supplied file extension.
95 * the file extension parameter is NULL, a CFString cannot be created
96 * from the file extension parameter, there is no UTI corresponding to
97 * the file extension, the UTI cannot supply a MIME type for the file
98 * extension, or a Java string cannot be created, then NULL is returned;
107 CFStringRef extension = toCFString(env, ext); local
108 if (extension != NULL) {
111 extension, NULL);
112 CFRelease(extension);
/openjdk10/nashorn/samples/
H A Dfjson.js50 -scripting mode extension as well
/openjdk10/test/fmw/gtest/include/gtest/internal/
H A Dgtest-filepath.h84 // extension = "xml", returns "dir/test.xml". If number is greater
90 const char* extension);
99 // will be directory/base_name.extension or
100 // directory/base_name_<number>.extension if directory/base_name.extension
108 const char* extension);
134 // Returns a copy of the FilePath with the case-insensitive extension removed.
136 // FilePath("dir/file"). If a case-insensitive extension is not
138 FilePath RemoveExtension(const char* extension) const;
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java329 * File type extension.
331 private final String extension; field in class:AudioFileFormat.Type
337 * @param extension the string that commonly marks the file type
340 public Type(final String name, final String extension) { argument
342 this.extension = extension;
386 * Obtains the common file name extension for this file type.
388 * @return file type extension
391 return extension;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtFileAttributes.java107 * "file" extension of a file resource.
109 * @return extension string for the file resource
111 public String extension() { method in class:JrtFileAttributes
112 return node.extension();
137 fm.format(" extension : %s%n", extension());
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/extension/
H A DZeroPortPolicy.java26 package com.sun.corba.se.spi.extension ;
H A DCopyObjectPolicy.java26 package com.sun.corba.se.spi.extension ;
/openjdk10/hotspot/test/applications/scimark/
H A DScimark.java37 @Artifact(organization = "gov.nist.math", name = "scimark", revision = "2.0", extension = "zip")
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DEndpointReferenceExtensionContributor.java45 * @param extension EPRExtension is passed if an extension with same QName is already configured on the endpoint
50 public abstract WSEndpointReference.EPRExtension getEPRExtension(WSEndpoint endpoint, @Nullable WSEndpointReference.EPRExtension extension );
54 * @return QName of the extensibility element that is contributed by this extension.
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLExtensible.java59 * The type of the extension to obtain. Must not be null.
67 * Gets the extension that is assignable to the given type.
79 * null if the extension was not found.
87 * @param extension
90 void addExtension(WSDLExtension extension); argument
99 * Marks extension as not understood
100 * @param extnEl QName of extension
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DPatternEntry.java53 * Gets the current extension, quoted
56 appendQuoted(extension,toAddTo);
102 return extension;
144 if (showExtension && extension.length() != 0) {
146 appendQuoted(extension,toAddTo);
190 StringBuffer extension)
194 this.extension = (extension.length() > 0) ? extension.toString()
305 String extension field in class:PatternEntry
188 PatternEntry(int strength, StringBuffer chars, StringBuffer extension) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/filechooser/
H A DFileNameExtensionFilter.java33 * specified set of extensions. The extension for a file is the
35 * not contain a "." have no file name extension. File name extension
65 * file with a file name extension contained in {@code extensions}.
85 "Each extension must be non-null and not empty");
94 * accepted, false otherwise. True is returned if the extension
116 for (String extension : lowerCaseExtensions) {
117 if (desiredExtension.equals(extension)) {
/openjdk10/hotspot/test/compiler/aot/
H A DAotCompiler.java165 extension = "tar.gz")
181 extension = "tar.gz")
201 extension = "tar.gz")
217 extension = "tar.gz")
235 extension = "tar.gz")
250 extension = "tar.gz")
265 extension = "tar.gz")
/openjdk10/jdk/src/java.scripting/share/classes/javax/script/
H A DScriptEngineManager.java40 * as well as utility methods which look up factories on the basis of language name, file extension
253 * Look up and create a <code>ScriptEngine</code> for a given extension. The algorithm
256 * given extension using <code>registerEngineExtension</code>.
257 * @param extension The given extension
258 * @return The engine to handle scripts with this extension. Returns <code>null</code>
260 * @throws NullPointerException if extension is null.
262 public ScriptEngine getEngineByExtension(String extension) { argument
263 if (extension == null) throw new NullPointerException();
264 //look for registered extension firs
397 registerEngineExtension(String extension, ScriptEngineFactory factory) argument
[all...]
/openjdk10/test/fmw/gtest/src/
H A Dgtest-filepath.cc115 // Returns a copy of the FilePath with the case-insensitive extension removed.
117 // FilePath("dir/file"). If a case-insensitive extension is not
119 FilePath FilePath::RemoveExtension(const char* extension) const {
120 const std::string dot_extension = std::string(".") + extension;
175 // extension = "xml", returns "dir/test.xml". If number is greater
181 const char* extension) {
184 file = base_name.string() + "." + extension;
187 + "." + extension;
274 // will be directory/base_name.extension or
275 // directory/base_name_<number>.extension i
178 MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension) argument
281 GenerateUniqueFileName(const FilePath& directory, const FilePath& base_name, const char* extension) argument
[all...]

Completed in 245 milliseconds

12345