HomeSort by relevance Sort by last modified time
    Searched refs:FileNotFoundException (Results 101 - 125 of 975) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java 34 import java.io.FileNotFoundException;
199 throws FileNotFoundException, IOException, UnsupportedFormatException {
212 throws IOException, UnsupportedFormatException, FileNotFoundException {
227 * @throws FileNotFoundException if the file can't be found
232 throws FileNotFoundException, IOException, UnsupportedFormatException {
243 * @throws FileNotFoundException if the file can't be found
247 throws FileNotFoundException, IOException {
261 * @throws FileNotFoundException if one of the output files can't be created.
265 throws FileNotFoundException, IOException, UnsupportedFormatException,
283 * @throws FileNotFoundException if the output file can't be created
    [all...]
  /packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/
DownloadProviderPermissionsTest.java 19 import java.io.FileNotFoundException;
62 } catch (FileNotFoundException e) {
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 19 import java.io.FileNotFoundException;
114 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
120 throw new FileNotFoundException("Unable to open " + uri);
128 FileNotFoundException fnf = new FileNotFoundException("Unable to open " + uri);
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 52 import java.io.FileNotFoundException;
173 } catch (FileNotFoundException e) {
194 private String getDocIdForFile(File file) throws FileNotFoundException {
213 throw new FileNotFoundException("Failed to find root that contains " + path);
229 private File getFileForDocId(String docId) throws FileNotFoundException {
233 private File getFileForDocId(String docId, boolean visible) throws FileNotFoundException {
243 throw new FileNotFoundException("No root for " + tag);
255 throw new FileNotFoundException("Missing file for " + docId + " at " + target);
261 throws FileNotFoundException {
303 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
    [all...]
  /frameworks/support/v4/java/android/support/v4/print/
PrintHelper.java 24 import java.io.FileNotFoundException;
108 throws FileNotFoundException;
210 final OnPrintFinishCallback callback) throws FileNotFoundException {
333 * @throws FileNotFoundException if <code>Uri</code> is not pointing to a valid image.
335 public void printBitmap(String jobName, Uri imageFile) throws FileNotFoundException {
346 * @throws FileNotFoundException if <code>Uri</code> is not pointing to a valid image.
350 throws FileNotFoundException {
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 39 import java.io.FileNotFoundException;
105 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
155 throws FileNotFoundException {
207 throws FileNotFoundException {
248 throws FileNotFoundException {
261 throws FileNotFoundException {
274 String sortOrder) throws FileNotFoundException {
294 throws FileNotFoundException {
321 throw new FileNotFoundException("Failed to open document with id " + documentId +
334 throws FileNotFoundException {
    [all...]
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 39 import java.io.FileNotFoundException;
105 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
155 throws FileNotFoundException {
207 throws FileNotFoundException {
248 throws FileNotFoundException {
261 throws FileNotFoundException {
274 String sortOrder) throws FileNotFoundException {
294 throws FileNotFoundException {
321 throw new FileNotFoundException("Failed to open document with id " + documentId +
334 throws FileNotFoundException {
    [all...]
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 39 import java.io.FileNotFoundException;
105 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
155 throws FileNotFoundException {
207 throws FileNotFoundException {
248 throws FileNotFoundException {
261 throws FileNotFoundException {
274 String sortOrder) throws FileNotFoundException {
294 throws FileNotFoundException {
321 throw new FileNotFoundException("Failed to open document with id " + documentId +
334 throws FileNotFoundException {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 41 import java.io.FileNotFoundException;
174 throws FileNotFoundException {
178 throw new FileNotFoundException("cannot open file for write");
183 throw new FileNotFoundException(uri.toString());
188 throw new FileNotFoundException("unspported type: " + object);
207 final T args, final PipeDataWriter<T> func) throws FileNotFoundException {
224 throw new FileNotFoundException("failure making pipe");
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 31 import java.io.FileNotFoundException;
68 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
184 throws FileNotFoundException {
194 throws FileNotFoundException {
200 public void deleteDocument(String documentId) throws FileNotFoundException {
209 throws FileNotFoundException {
217 String sortOrder) throws FileNotFoundException {
227 CancellationSignal signal) throws FileNotFoundException {
230 throw new FileNotFoundException();
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 33 import java.io.FileNotFoundException;
58 fail("Should always throw out FileNotFoundException!");
59 } catch (FileNotFoundException e) {
64 fail("Should always throw out FileNotFoundException!");
65 } catch (FileNotFoundException e) {
174 fail("Should always throw out FileNotFoundException!");
175 } catch (FileNotFoundException e) {
180 fail("Should always throw out FileNotFoundException!");
181 } catch (FileNotFoundException e) {
210 fail("Should throw FileNotFoundException!");
    [all...]
  /frameworks/base/services/core/java/com/android/server/
PersistentDataBlockService.java 39 import java.io.FileNotFoundException;
185 } catch (FileNotFoundException e) {
209 } catch (FileNotFoundException e) {
251 } catch (FileNotFoundException e) {
277 } catch (FileNotFoundException e) {
305 } catch (FileNotFoundException e) {
341 } catch (FileNotFoundException e) {
382 } catch (FileNotFoundException e) {
458 } catch (FileNotFoundException e) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResultRepo.java 24 import java.io.FileNotFoundException;
76 } catch (FileNotFoundException e) {
113 } catch (FileNotFoundException e) {
  /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();
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
SharingSupport.java 31 import java.io.FileNotFoundException;
83 } catch (FileNotFoundException e) {
107 } catch (FileNotFoundException e) {
  /external/vogar/src/vogar/android/
DeviceFilesystem.java 20 import java.io.FileNotFoundException;
82 public List<File> ls(File dir) throws FileNotFoundException {
92 throw new FileNotFoundException(dir + " not found.");
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 26 import java.io.FileNotFoundException;
82 } catch (FileNotFoundException e) {
98 } catch (FileNotFoundException e) {
  /libcore/luni/src/test/java/libcore/java/io/
RandomAccessFileTest.java 20 import java.io.FileNotFoundException;
143 } catch (FileNotFoundException expected) {
148 } catch (FileNotFoundException expected) {
FileDescriptorTest.java 21 import java.io.FileNotFoundException;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
NetworkUriImageRequest.java 27 import java.io.FileNotFoundException;
46 protected InputStream getInputStreamForResource() throws FileNotFoundException {
54 protected boolean isGif() throws FileNotFoundException {
  /frameworks/base/core/java/android/content/
IContentProvider.java 30 import java.io.FileNotFoundException;
53 throws RemoteException, FileNotFoundException;
56 throws RemoteException, FileNotFoundException;
71 Bundle opts, ICancellationSignal signal) throws RemoteException, FileNotFoundException;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContentProvider.java 33 import java.io.FileNotFoundException;
86 throws RemoteException, FileNotFoundException {
94 throws RemoteException, FileNotFoundException {
127 Bundle arg2, ICancellationSignal signal) throws RemoteException, FileNotFoundException {
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
MmsFileProvider.java 32 import java.io.FileNotFoundException;
86 public ParcelFileDescriptor openFile(Uri uri, String fileMode) throws FileNotFoundException {
89 throw new FileNotFoundException("Unable to extract message handle from: " + uri);
95 throw new FileNotFoundException("Unable to extract message handle from: " + uri);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 44 import java.io.FileNotFoundException;
94 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
108 throws FileNotFoundException {
112 throw new FileNotFoundException("Directory creation not supported");
141 public void deleteDocument(String docId) throws FileNotFoundException {
154 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
179 throws FileNotFoundException {
202 throws FileNotFoundException {
224 throws FileNotFoundException {
258 throws FileNotFoundException {
    [all...]
  /cts/suite/cts/hostTests/jank/app/src/com/android/cts/jank/
CtsJankTestBase.java 22 import java.io.FileNotFoundException;
39 throws FileNotFoundException, IOException {

Completed in 2436 milliseconds

1 2 3 45 6 7 8 91011>>