HomeSort by relevance Sort by last modified time
    Searched refs:FileNotFoundException (Results 1 - 25 of 610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
FileNotFoundException.java 23 public class FileNotFoundException extends IOException {
28 * Constructs a new {@code FileNotFoundException} with its stack trace
31 public FileNotFoundException() {
35 * Constructs a new {@code FileNotFoundException} with its stack trace and
41 public FileNotFoundException(String detailMessage) {
FileReader.java 38 * @throws FileNotFoundException
41 public FileReader(File file) throws FileNotFoundException {
48 * FileNotFoundException can be thrown.
62 * @throws FileNotFoundException
65 public FileReader(String filename) throws FileNotFoundException {
FileOutputStream.java 70 * @throws FileNotFoundException if file cannot be opened for writing.
72 public FileOutputStream(File file) throws FileNotFoundException {
81 * @throws FileNotFoundException if the file cannot be opened for writing.
83 public FileOutputStream(File file, boolean append) throws FileNotFoundException {
114 * @throws FileNotFoundException if file cannot be opened for writing.
116 public FileOutputStream(String path) throws FileNotFoundException {
125 * @throws FileNotFoundException if the file cannot be opened for writing.
127 public FileOutputStream(String path, boolean append) throws FileNotFoundException {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileNotFoundExceptionTest.java 20 import java.io.FileNotFoundException;
27 * @tests java.io.FileNotFoundException#FileNotFoundException()
30 FileNotFoundException e = new FileNotFoundException();
35 * @tests java.io.FileNotFoundException#FileNotFoundException(java.lang.String)
39 FileNotFoundException e = new FileNotFoundException(message);
  /libcore/luni/src/test/java/libcore/java/io/
OldFileReaderTest.java 21 import java.io.FileNotFoundException;
32 fail("Test 2: FileNotFoundException expected.");
33 } catch (FileNotFoundException e) {
41 fail("Test 2: FileNotFoundException expected.");
42 } catch (FileNotFoundException e) {
FileDescriptorTest.java 20 import java.io.FileNotFoundException;
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/build/
StubCtsBuildHelper.java 19 import java.io.FileNotFoundException;
36 public File getTestApp(String appFileName) throws FileNotFoundException {
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
ExceptionUtil.java 19 import java.io.FileNotFoundException;
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePartSource.java 36 import java.io.FileNotFoundException;
62 * @throws FileNotFoundException if the file does not exist or
65 public FilePartSource(File file) throws FileNotFoundException {
69 throw new FileNotFoundException("File is not a normal file.");
72 throw new FileNotFoundException("File is not readable.");
84 * @throws FileNotFoundException if the file does not exist or
88 throws FileNotFoundException {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 23 import java.io.FileNotFoundException;
55 * @throws FileNotFoundException
57 public CtsBuildHelper(IFolderBuildInfo build) throws FileNotFoundException {
79 } catch (FileNotFoundException e) {
104 * @throws FileNotFoundException if file does not exist
106 public File getTestApp(String appFileName) throws FileNotFoundException {
109 throw new FileNotFoundException(String.format("CTS test app file %s does not exist",
150 * @throws FileNotFoundException if plans directory does not exist
152 public File getTestPlanFile(String planName) throws FileNotFoundException {
159 * @throws FileNotFoundException if any major directories are missin
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 19 import java.io.FileNotFoundException;
36 public void testWriteExternalStorage() throws FileNotFoundException, IOException {
47 } catch (FileNotFoundException e) {
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorFactory.java 21 import java.io.FileNotFoundException;
52 throw new FileNotFoundException("Cannot create project path: "
60 throw new FileNotFoundException("Cannot create file .nomedia");
  /cts/tests/tests/security/src/android/security/cts/
KernelSettingsTest.java 23 import java.io.FileNotFoundException;
43 } catch (FileNotFoundException e) {
58 } catch (FileNotFoundException e) {
72 } catch (FileNotFoundException e) {
89 } catch (FileNotFoundException e) {
100 } catch (FileNotFoundException e) {
AslrTest.java 23 import java.io.FileNotFoundException;
46 } catch (FileNotFoundException e) {
  /cts/hostsidetests/appsecurity/test-apps/AppAccessData/src/com/android/cts/appaccessdata/
AccessPrivateDataTest.java 22 import java.io.FileNotFoundException;
65 } catch (FileNotFoundException e) {
80 } catch (FileNotFoundException e) {
87 private int getOtherAppUid() throws IOException, FileNotFoundException, SecurityException {
101 } catch (FileNotFoundException e) {
121 } catch (FileNotFoundException e) {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Makedict.java 21 import java.io.FileNotFoundException;
38 public void run() throws FileNotFoundException, IOException, ParserConfigurationException,
  /frameworks/base/core/java/android/provider/
DocumentsProvider.java 48 import java.io.FileNotFoundException;
179 throws FileNotFoundException {
192 public void deleteDocument(String documentId) throws FileNotFoundException {
212 public abstract Cursor queryRoots(String[] projection) throws FileNotFoundException;
230 throws FileNotFoundException {
244 throws FileNotFoundException;
283 throws FileNotFoundException;
289 throws FileNotFoundException {
329 throws FileNotFoundException {
339 public String getDocumentType(String documentId) throws FileNotFoundException {
    [all...]
  /frameworks/base/core/java/android/util/
AtomicFile.java 24 import java.io.FileNotFoundException;
103 } catch (FileNotFoundException e) {
114 } catch (FileNotFoundException e2) {
165 } catch (FileNotFoundException e) {
177 } catch (FileNotFoundException e) {
194 public FileInputStream openRead() throws FileNotFoundException {
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 24 import java.io.FileNotFoundException;
71 } catch (FileNotFoundException e) {
82 } catch (FileNotFoundException e2) {
117 } catch (FileNotFoundException e) {
127 } catch (FileNotFoundException e) {
133 public FileInputStream openRead() throws FileNotFoundException {
  /cts/tests/tests/os/src/android/os/cts/
NoExecutePermissionTest.java 20 import java.io.FileNotFoundException;
31 public void testNoExecutePermission() throws FileNotFoundException {
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 20 import java.io.FileNotFoundException;
55 throws FileNotFoundException, MalformedStatMException {
65 throws FileNotFoundException, MalformedStatMException {
68 throw new FileNotFoundException(proc + " is missing (man 5 proc)");
85 * @throws FileNotFoundException
89 throws FileNotFoundException, MalformedStatMException {
100 throws FileNotFoundException, MalformedStatMException {
141 * @throws FileNotFoundException
143 private static boolean isRootProcess(File processDir) throws FileNotFoundException {
213 private static String getProcessName(File processDir) throws FileNotFoundException {
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/drawables/
DataUriThumbnailDrawable.java 23 import java.io.FileNotFoundException;
45 } catch (FileNotFoundException e) {
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DumpFileProviderTest.java 23 import java.io.FileNotFoundException;
63 } catch (FileNotFoundException e) {
100 } catch (FileNotFoundException e) {
  /cts/tests/tests/util/src/android/util/cts/
PrintStreamPrinterTest.java 22 import java.io.FileNotFoundException;
41 public void testConstructor() throws FileNotFoundException {
45 public void testPrintln() throws FileNotFoundException, SecurityException, IOException {
PrintWriterPrinterTest.java 22 import java.io.FileNotFoundException;
49 } catch (FileNotFoundException e) {
61 } catch (FileNotFoundException e) {

Completed in 1815 milliseconds

1 2 3 4 5 6 7 8 91011>>