Searched defs:file (Results 126 - 150 of 497) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DInvalidPathException.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
31 * the path string is invalid for other file system specific reasons.
H A DStandardOpenOption.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
46 * If the file is opened for {@link #WRITE} access then bytes will be written
47 * to the end of the file rather than the beginning.
49 * <p> If the file is opened for write access by other programs, then it
50 * is file system specific if writing to the end of the file is atomic.
55 * If the file alread
[all...]
H A DStandardWatchEventKinds.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
H A DWatchEvent.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DBasicFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
31 * A file attribute view that provides a view of a <em>basic set</em> of file
32 * attributes common to many file systems. The basic set of file attributes
33 * consist of <em>mandatory</em> and <em>optional</em> file attributes as
36 * <p> The file attribute
[all...]
H A DBasicFileAttributes.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
29 * Basic attributes associated with a file in a file system.
31 * <p> Basic file attributes are attributes that are common to many file systems
32 * and consist of mandatory and optional file attributes as defined by this
37 * Path file
[all...]
H A DDosFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
31 * A file attribute view that provides a view of the legacy "DOS" file attributes.
32 * These attributes are supported by file systems such as the File Allocation
37 * to indicate if the file is read-only, hidden, a system file, or archived.
39 * <p> Where dynamic access to file attribute
[all...]
H A DPosixFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
28 import java.nio.file.*;
33 * A file attribute view that provides a view of the file attributes commonly
34 * associated with files on file systems used by operating systems that implement
38 * POSIX</a> family of standards commonly use file systems that have a
39 * file <e
[all...]
H A DPosixFilePermission.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
H A DUserDefinedFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
33 * A file attribute view that provides a view of a file's user-defined
35 * file attributes are used to store metadata with a file that is not meaningful
36 * to the file system. It is primarily intended for file syste
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMidiAudioFileReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
157 public AudioFileFormat getAudioFileFormat(File file) argument
161 seq = MidiSystem.getSequence(file);
183 public AudioInputStream getAudioInputStream(File file) argument
185 if (!file.getName().toLowerCase().endsWith(".mid"))
189 seq = MidiSystem.getSequence(file);
H A DWaveFileReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
45 * WAVE file reader.
63 * Obtains the audio file format of the input stream provided. The stream must
64 * point to valid audio file data. In general, audio file providers may
71 * @param stream the input stream from which file format information should be
73 * @return an <code>AudioFileFormat</code> object describing the audio file format
75 * file dat
122 getAudioFileFormat(File file) argument
201 getAudioInputStream(File file) argument
[all...]
H A DWaveFloatFileReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
43 * Floating-point encoded (format 3) WAVE file loader.
145 public AudioFileFormat getAudioFileFormat(File file) argument
147 InputStream stream = new FileInputStream(file);
162 public AudioInputStream getAudioInputStream(File file) argument
165 file)));
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java1 import static java.nio.file.FileVisitResult.CONTINUE;
4 import java.nio.file.FileSystems;
5 import java.nio.file.FileVisitResult;
6 import java.nio.file.Files;
7 import java.nio.file.Path;
8 import java.nio.file.attribute.BasicFileAttributes;
19 public FileVisitResult visitFile(Path file, BasicFileAttributes attr) { argument
24 String fileName = file.getFileName().toString();
28 // usePch applies to all configs for a file.
37 } else if (cfg.matchesIgnoredPath(file
133 visitFileFailed(Path file, IOException exc) argument
[all...]
H A DFileTreeCreatorVC7.java1 import static java.nio.file.FileVisitResult.CONTINUE;
4 import java.nio.file.FileSystems;
5 import java.nio.file.FileVisitResult;
6 import java.nio.file.Files;
7 import java.nio.file.Path;
8 import java.nio.file.attribute.BasicFileAttributes;
19 public FileVisitResult visitFile(Path file, BasicFileAttributes attr) { argument
24 String fileName = file.getFileName().toString();
26 // usePch applies to all configs for a file.
35 } else if (cfg.matchesIgnoredPath(file
149 visitFileFailed(Path file, IOException exc) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPropList.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
40 public static PropList readSpecFile(File file, int plane) argument
43 return new PropList(file, plane);
57 private PropList(File file, int plane) throws IOException { argument
60 BufferedReader sbfr = new BufferedReader(new FileReader(file));
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DFrameworkGenerator.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
45 static List<File> findFrameworkFilesIn(final File file) throws IOException{ argument
46 final List<File> bridgeSupportFiles = Utils.find(file, FRAMEWORK_MATCH, FRAMEWORK_PRUNE);
55 for (final File file : bridgeSupportFiles){
56 Framework f = new Framework(extractFrameworkNameFrom(file), file);
108 private static String extractFrameworkNameFrom(final File file) { argument
109 final String fileName = file
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfStringTable.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
34 // Otherwise, fallback to more expensive file operation.
35 ElfStringTable::ElfStringTable(FILE* file, Elf_Shdr shdr, int index) { argument
36 assert(file, "null file handle");
40 m_file = file;
44 long cur_offset = ftell(file);
48 if (fseek(file, shdr.sh_offset, SEEK_SET) ||
49 fread((void*)m_table, shdr.sh_size, 1, file) != 1 ||
50 fseek(file, cur_offse
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DSecuritySupport.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
67 FileInputStream getFileInputStream(final File file) argument
74 return new FileInputStream(file);
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DFileDataSource.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
40 * that encapsulates a file. It provides data typing services via
67 * The file will not actually be opened until a method is
68 * called that requires the file to be opened.</i>
70 * @param file the file
72 public FileDataSource(File file) { argument
73 _file = file; // sav
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/util/
H A DDirectoryUtil.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
92 public static String getRelativePathfromCommonBase(File file, File base) throws IOException { argument
94 String filePath = file.getCanonicalPath();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DData.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
54 * Write this partial data to a file
56 * @param file to which the data needs to be written
57 * @return file pointer before the write operation(at which the data is
60 long writeTo(DataFile file); argument
64 * be file based one or memory based one.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataSourceStreamingDataHandler.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
48 public void moveTo(File file) throws IOException { argument
50 OutputStream os = new FileOutputStream(file);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsException.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
28 import java.nio.file.*;
72 private IOException translateToIOException(String file, String other) { argument
79 return new NoSuchFileException(file, other, null);
81 return new FileAlreadyExistsException(file, other, null);
83 return new AccessDeniedException(file, other, null);
86 return new FileSystemException(file, other, errorString());
89 void rethrowAsIOException(String file) throw argument
94 rethrowAsIOException(WindowsPath file, WindowsPath other) argument
101 rethrowAsIOException(WindowsPath file) argument
105 asIOException(WindowsPath file) argument
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DLogFilter.java12 * version 2 for more details (a copy is included in the LICENSE file that
41 LogFilter (File file) throws IOException { argument
42 ps = new PrintStream (new FileOutputStream (file));

Completed in 76 milliseconds

1234567891011>>