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

1 2 3

  /libcore/ojluni/src/main/java/java/io/
FileNotFoundException.java 43 public class FileNotFoundException extends IOException {
47 * Constructs a <code>FileNotFoundException</code> with
50 public FileNotFoundException() {
55 * Constructs a <code>FileNotFoundException</code> with the
63 public FileNotFoundException(String s) {
68 * Constructs a <code>FileNotFoundException</code> with a detail message
76 private FileNotFoundException(String path, String reason) {
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
BrokenProvider.java 22 import java.io.FileNotFoundException;
48 throws FileNotFoundException {
50 throw new FileNotFoundException();
58 String sortOrder) throws FileNotFoundException {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadManagerWrapper.java 28 import java.io.FileNotFoundException;
69 public ParcelFileDescriptor openDownloadedFile(final long fileId) throws FileNotFoundException {
80 throw new FileNotFoundException();
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/common/assetprovider/
AssetProvider.java 27 import java.io.FileNotFoundException;
80 throws FileNotFoundException, SecurityException {
96 throw new FileNotFoundException();
  /developers/samples/android/common/src/java/com/example/android/common/assetprovider/
AssetProvider.java 27 import java.io.FileNotFoundException;
80 throws FileNotFoundException, SecurityException {
96 throw new FileNotFoundException();
  /development/samples/browseable/BeamLargeFiles/src/com.example.android.common/assetprovider/
AssetProvider.java 27 import java.io.FileNotFoundException;
80 throws FileNotFoundException, SecurityException {
96 throw new FileNotFoundException();
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
ApkInstaller.java 26 import java.io.FileNotFoundException;
42 protected File getTestsDir(IBuildInfo buildInfo) throws FileNotFoundException {
47 protected File getTestFile(IBuildInfo buildInfo, String filename) throws FileNotFoundException {
62 throw new FileNotFoundException();
64 } catch (FileNotFoundException e) {
  /developers/build/prebuilts/gradle/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 29 import java.io.FileNotFoundException;
80 throws FileNotFoundException {
86 throw new FileNotFoundException();
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
AssetProvider.java 30 import java.io.FileNotFoundException;
93 throws FileNotFoundException, SecurityException {
109 throw new FileNotFoundException();
  /developers/samples/android/content/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 29 import java.io.FileNotFoundException;
80 throws FileNotFoundException {
86 throw new FileNotFoundException();
  /development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
AssetProvider.java 29 import java.io.FileNotFoundException;
80 throws FileNotFoundException {
86 throw new FileNotFoundException();
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ResourcesProvider.java 38 import java.io.FileNotFoundException;
76 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
89 throws FileNotFoundException {
109 throws FileNotFoundException {
111 throw new FileNotFoundException();
124 throws FileNotFoundException {
127 throw new FileNotFoundException();
132 void includeDocument(MatrixCursor result, String documentId) throws FileNotFoundException {
135 throw new FileNotFoundException();
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/suite/
SuiteApkInstaller.java 29 import java.io.FileNotFoundException;
51 * @throws FileNotFoundException if no root dir is defined.
54 protected File getTestsDir(IBuildInfo buildInfo) throws FileNotFoundException {
58 throw new FileNotFoundException(String.format("%s was found.", ROOT_DIR));
107 throw new FileNotFoundException();
109 } catch (FileNotFoundException e) {
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
ClassLevelManagedLocalTransactionsTest.java 27 import java.io.FileNotFoundException;
177 @Transactional(rollbackOn = IOException.class, ignore = FileNotFoundException.class)
187 throw new FileNotFoundException();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 24 import java.io.FileNotFoundException;
54 * @throws FileNotFoundException if the specified file does not exist
57 public FileDisk(File file, boolean readOnly) throws FileNotFoundException {
58 if (!file.exists()) throw new FileNotFoundException();
97 } catch (FileNotFoundException ex) {
  /external/okhttp/samples/static-server/src/main/java/com/squareup/okhttp/sample/
SampleServer.java 10 import java.io.FileNotFoundException;
43 if (!path.startsWith("/") || path.contains("..")) throw new FileNotFoundException();
49 } catch (FileNotFoundException e) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/display/
PersistentDataStoreTest.java 37 import java.io.FileNotFoundException;
198 public InputStream openRead() throws FileNotFoundException {
202 throw new FileNotFoundException();
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
Archive.java 43 import java.io.FileNotFoundException;
129 @Nullable String sortOrder) throws FileNotFoundException {
143 throw new FileNotFoundException();
157 public String getDocumentType(String documentId) throws FileNotFoundException {
165 throw new FileNotFoundException();
210 throws FileNotFoundException {
218 throw new FileNotFoundException();
237 throws FileNotFoundException {
248 throws FileNotFoundException {
259 throws FileNotFoundException {
    [all...]
ReadableArchive.java 41 import java.io.FileNotFoundException;
226 throws FileNotFoundException {
235 throw new FileNotFoundException();
249 throws FileNotFoundException {
258 throw new FileNotFoundException();
WriteableArchive.java 35 import java.io.FileNotFoundException;
139 throws FileNotFoundException {
152 throw new FileNotFoundException();
202 throws FileNotFoundException {
213 throw new FileNotFoundException();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
ImageRequest.java 31 import java.io.FileNotFoundException;
94 * @throws FileNotFoundException
96 protected abstract InputStream getInputStreamForResource() throws FileNotFoundException;
128 protected boolean isGif() throws FileNotFoundException {
171 throw new FileNotFoundException();
214 throw new FileNotFoundException();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 43 import java.io.FileNotFoundException;
205 * @throws FileNotFoundException
208 throws FileNotFoundException {
211 throw new FileNotFoundException();
230 throw new FileNotFoundException();
  /packages/apps/Email/provider_src/com/android/email/provider/
AttachmentProvider.java 43 import java.io.FileNotFoundException;
139 * FileNotFoundException, and should be fixed for consistency.
141 * @throws FileNotFoundException
144 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
151 throw new FileNotFoundException();
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 39 import java.io.FileNotFoundException;
84 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
241 throws FileNotFoundException {
251 throws FileNotFoundException {
257 public void deleteDocument(String documentId) throws FileNotFoundException {
267 throws FileNotFoundException {
277 throws FileNotFoundException {
292 throws FileNotFoundException {
301 throws FileNotFoundException {
303 throw new FileNotFoundException(documentId + " is not found.")
    [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 50 import java.io.FileNotFoundException;
112 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
146 throws FileNotFoundException {
157 throws FileNotFoundException {
226 throws FileNotFoundException {
296 throws FileNotFoundException {
312 throws FileNotFoundException {
314 throw new FileNotFoundException();
319 String docId, Point sizeHint, CancellationSignal signal) throws FileNotFoundException {
353 throw new FileNotFoundException(e.getMessage())
    [all...]

Completed in 973 milliseconds

1 2 3