HomeSort by relevance Sort by last modified time
    Searched refs:FileNotFoundException (Results 1 - 25 of 975) 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 {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileNotFoundExceptionTest.java 20 import java.io.FileNotFoundException;
27 * java.io.FileNotFoundException#FileNotFoundException()
30 FileNotFoundException e = new FileNotFoundException();
35 * 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) {
  /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) {
  /external/apache-http/android/src/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/security/src/android/security/cts/
KernelSettingsTest.java 23 import java.io.FileNotFoundException;
43 } catch (FileNotFoundException e) {
58 } catch (FileNotFoundException e) {
72 } catch (FileNotFoundException e) {
83 } catch (FileNotFoundException e) {
125 } catch (FileNotFoundException e) {
132 } catch (FileNotFoundException e) {
AslrTest.java 23 import java.io.FileNotFoundException;
46 } catch (FileNotFoundException e) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 19 import java.io.FileNotFoundException;
32 * with {@link #exists} does not guarantee that {@link FileNotFoundException} will not be thrown.
43 @Override public Source source(File file) throws FileNotFoundException {
47 @Override public Sink sink(File file) throws FileNotFoundException {
50 } catch (FileNotFoundException e) {
57 @Override public Sink appendingSink(File file) throws FileNotFoundException {
60 } catch (FileNotFoundException e) {
106 Source source(File file) throws FileNotFoundException;
112 Sink sink(File file) throws FileNotFoundException;
118 Sink appendingSink(File file) throws FileNotFoundException;
    [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) {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Makedict.java 21 import java.io.FileNotFoundException;
36 public void run() throws FileNotFoundException, IOException, UnsupportedFormatException {
  /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) {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/io/
InMemoryFileSystem.java 19 import java.io.FileNotFoundException;
32 @Override public Source source(File file) throws FileNotFoundException {
34 if (result == null) throw new FileNotFoundException();
38 @Override public Sink sink(File file) throws FileNotFoundException {
44 @Override public Sink appendingSink(File file) throws FileNotFoundException {
64 if (buffer == null) throw new FileNotFoundException();
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
FileDescriptorLocalUriFetcher.java 8 import java.io.FileNotFoundException;
20 protected ParcelFileDescriptor loadResource(Uri uri, ContentResolver contentResolver) throws FileNotFoundException {
StreamLocalUriFetcher.java 7 import java.io.FileNotFoundException;
20 protected InputStream loadResource(Uri uri, ContentResolver contentResolver) throws FileNotFoundException {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DictDecoder.java 25 import java.io.FileNotFoundException;
63 throws FileNotFoundException, IOException, UnsupportedFormatException;
117 public void openDictBuffer() throws FileNotFoundException, IOException,
130 throws FileNotFoundException, IOException;
144 throws FileNotFoundException, IOException {
173 throws FileNotFoundException, IOException {
200 throws FileNotFoundException, IOException {
  /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) {
142 public FileInputStream openRead() throws FileNotFoundException {
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 20 import java.io.FileNotFoundException;
59 throws FileNotFoundException, MalformedStatMException {
69 throws FileNotFoundException, MalformedStatMException {
72 throw new FileNotFoundException(proc + " is missing (man 5 proc)");
89 * @throws FileNotFoundException
93 throws FileNotFoundException, MalformedStatMException {
104 throws FileNotFoundException, MalformedStatMException {
145 * @throws FileNotFoundException
147 private static boolean isRootProcess(File processDir) throws FileNotFoundException {
216 private static String getProcessName(File processDir) throws FileNotFoundException {
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsApkInstaller.java 25 import java.io.FileNotFoundException;
50 } catch (FileNotFoundException e) {
  /external/vogar/src/vogar/
Target.java 20 import java.io.FileNotFoundException;
32 public abstract List<File> ls(File directory) throws FileNotFoundException;
  /external/vogar/src/vogar/tasks/
RetrieveFilesTask.java 21 import java.io.FileNotFoundException;
44 throws FileNotFoundException {
  /packages/apps/Gallery2/src/com/android/photos/drawables/
DataUriThumbnailDrawable.java 23 import java.io.FileNotFoundException;
45 } catch (FileNotFoundException e) {

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 91011>>