HomeSort by relevance Sort by last modified time
    Searched full:fnfe (Results 1 - 25 of 43) sorted by null

1 2

  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 51 } catch (FileNotFoundException fnfe) {
52 Log.w(TAG, "Unable to open file: " + uri, fnfe);
53 mText.setText("Unable to open file: " + uri + ": " + fnfe);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 124 } catch (FileNotFoundException fnfe) {
127 fnfe.getMessage());
128 throw fnfe;
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 506 FileNotFoundException fnfe = new FileNotFoundException(); local
507 IllegalArgumentException iae = new IllegalArgumentException(fnfe);
511 assertEquals(asList(ex, re, iae, fnfe), Throwables.getCausalChain(ex));
512 assertSame(fnfe, Iterables.getOnlyElement(Throwables.getCausalChain(fnfe)));
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentInfo.java 275 final FileNotFoundException fnfe = new FileNotFoundException(t.getMessage()); local
276 fnfe.initCause(t);
277 throw fnfe;
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 107 catch (FileNotFoundException fnfe)
112 fnfe.printStackTrace (System.out);
206 catch (FileNotFoundException fnfe)
211 fnfe.printStackTrace (System.out);
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
PermissionTestService.java 174 } catch (FileNotFoundException fnfe) {
194 } catch (FileNotFoundException fnfe) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
PrintTestRunner.java 190 } catch (FileNotFoundException fnfe) {
212 } catch (FileNotFoundException fnfe) {
JarHostTest.java 308 } catch (FileNotFoundException fnfe) {
309 reportLoadError(mJarFileName, className, fnfe);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 110 } catch (FileNotFoundException fnfe) {
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 210 } catch (FileNotFoundException fnfe) {
211 throw fnfe;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AbstractGalleryActivity.java 364 } catch (FileNotFoundException fnfe) {
365 Log.e(TAG, "Error printing an image", fnfe);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
PackageIconLoader.java 169 } catch (FileNotFoundException fnfe) {
170 Log.w(TAG, "Icon not found: " + uri + ", " + fnfe.getMessage());
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 398 catch (IOException fnfe) // FileNotFoundException
402 throw new EMMARuntimeException(fnfe);
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 278 catch (FileNotFoundException fnfe) // ignore: this should not happen
280 if ($assert.ENABLED) throw fnfe;
  /art/test/068-classloader/src/
FancyLoader.java 146 } catch (FileNotFoundException fnfe) {
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 509 catch (IOException fnfe) // FileNotFoundException
512 throw new EMMARuntimeException (fnfe);
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 524 catch (IOException fnfe) // FileNotFoundException
527 throw new EMMARuntimeException (fnfe);
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 297 } catch (FileNotFoundException fnfe) {
299 "could not open file with systemId "+systemId, this, fnfe);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 275 catch (FileNotFoundException fnfe) {
277 LogUtils.e(TAG, fnfe, "Rfc822Output#writeOneAttachment(), FileNotFoundException" +
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
ContentTest.java 151 // its missing, since we expect a SE before a FNFE.
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 272 catch (FileNotFoundException fnfe)
277 fnfe.printStackTrace (System.out);
510 catch (FileNotFoundException fnfe)
515 fnfe.printStackTrace (System.out);
    [all...]
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActivityChooserModel.java     [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 279 } catch (FileNotFoundException fnfe) {
  /art/runtime/native/
dalvik_system_DexFile.cc 387 ScopedLocalRef<jclass> fnfe(env, env->FindClass("java/io/FileNotFoundException"));
389 env->ThrowNew(fnfe.get(), message);

Completed in 1264 milliseconds

1 2