| /external/guice/extensions/persist/lib/ |
| commons-logging-1.0.4.jar | |
| /external/guice/extensions/struts2/lib/ |
| commons-logging-1.0.4.jar | |
| /external/guice/lib/build/ |
| commons-logging-1.0.4.jar | |
| /external/jmdns/src/javax/jmdns/impl/ |
| HostInfo.java | 111 } catch (UnknownHostException exception) { 129 } catch (Exception exception) { 130 logger.log(Level.SEVERE, "LocalHostInfo() exception ", exception);
|
| /external/testng/src/main/java/org/testng/internal/ |
| MethodInvocationHelper.java | 56 } catch (Exception e) {
65 } catch (Exception e2) {
186 * <tt>thisMethod</code> results in an exception
245 } catch (Exception ex) {
264 ThreadTimeoutException exception = new ThreadTimeoutException("Method "
local 267 exception.setStackTrace(exec.getStackTraces()[0]);
268 testResult.setThrowable(exception);
275 // will trigger the exception that was thrown, if any
279 testResult.setStatus(ITestResult.SUCCESS); // if no exception till here
|
| /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
| Mapper.java | 171 } catch (FileNotFoundException exception) { 172 Log.e(MtpDocumentsProvider.TAG, "Unexpected FileNotFoundException.", exception); 173 throw new RuntimeException(exception);
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
| CdmaMmiCode.java | 308 if (ar.exception != null) { 310 if (ar.exception instanceof CommandException) { 311 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
| PreferencesTest.java | 57 protected void setUp() throws Exception { 67 protected void tearDown() throws Exception { 72 public void testSystemNodeForPackage() throws Exception { 144 public void testImportPreferences() throws Exception { 173 } catch (Exception e) { 178 public void testImportPreferencesException() throws Exception { 193 stream.setResult(MockInputStream.exception); 212 static final int exception = 1; field in class:PreferencesTest.MockInputStream 228 case exception: 423 public void testReadingFromBackendCache() throws Exception { [all...] |
| /libcore/ojluni/src/main/native/ |
| System.c | 8 * particular file as subject to the "Classpath" exception as provided 230 static void System_log(JNIEnv* env, jclass ignored, jchar type, jstring javaMessage, jthrowable exception) { 251 if (exception != NULL) { 252 jniLogException(env, priority, "System", exception);
|
| /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
| NfcImportVCardActivity.java | 49 import com.android.vcard.exception.VCardException; 50 import com.android.vcard.exception.VCardNestedException; 51 import com.android.vcard.exception.VCardVersionException; 143 Log.w(TAG, "Nested Exception is found (it may be false-positive)."); 144 // Go through without throwing the Exception, as we may be able to detect the
|
| /packages/services/Telephony/src/com/android/phone/ |
| ChangeIccPinScreen.java | 235 if (ar.exception == null) { 251 } else if (ar.exception instanceof CommandException 252 /* && ((CommandException)ar.exception).getCommandError() == 258 CommandException ce = (CommandException) ar.exception;
|
| /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
| maven-aether-provider-3.2.1.jar | |
| /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/ |
| suite.py | 147 except Exception as e: 183 except Exception, e: 192 def _addClassOrModuleLevelException(self, result, exception, errorName): 195 if addSkip is not None and isinstance(exception, case.SkipTest): 196 addSkip(error, str(exception)) 217 except Exception as e: 242 except Exception, e:
|
| /prebuilts/gdb/linux-x86/lib/python2.7/unittest/ |
| suite.py | 147 except Exception as e: 183 except Exception, e: 192 def _addClassOrModuleLevelException(self, result, exception, errorName): 195 if addSkip is not None and isinstance(exception, case.SkipTest): 196 addSkip(error, str(exception)) 217 except Exception as e: 242 except Exception, e:
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
| suite.py | 147 except Exception as e: 183 except Exception, e: 192 def _addClassOrModuleLevelException(self, result, exception, errorName): 195 if addSkip is not None and isinstance(exception, case.SkipTest): 196 addSkip(error, str(exception)) 217 except Exception as e: 242 except Exception, e:
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
| constraint.py | 19 from . import exception namespace 44 raise exception.InvalidConstraintType("{0} is not a valid constraint type.".format(t)) 297 raise exception.ConstraintUseError("{0} rules do not have permissions.".
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
| suite.py | 147 except Exception as e: 183 except Exception, e: 192 def _addClassOrModuleLevelException(self, result, exception, errorName): 195 if addSkip is not None and isinstance(exception, case.SkipTest): 196 addSkip(error, str(exception)) 217 except Exception as e: 242 except Exception, e:
|
| /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.0.4/ |
| commons-logging-1.0.4.jar | |
| /prebuilts/tools/common/m2/repository/org/apache/maven/maven-aether-provider/3.3.9/ |
| maven-aether-provider-3.3.9.jar | |
| /tools/test/connectivity/acts/framework/acts/ |
| test_runner.py | 34 class USERError(Exception): 123 # This exception is logged here to help with debugging 126 self.log.exception(msg) 242 self.log.exception(("Failed to initialize objects for controller " 269 self.log.exception("Exception occurred destroying %s.", name)
|
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/ |
| BackupTestActivity.java | 180 class GenerateValuesTask extends AsyncTask<Void, Void, Exception> { 183 protected Exception doInBackground(Void... params) { 222 protected void onPostExecute(Exception exception) { 223 super.onPostExecute(exception); 224 if (exception != null) { 225 Log.e(TAG, "Couldn't generate test data...", exception);
|
| /cts/tests/app/app/src/android/app/stubs/ |
| AppStubActivity.java | 55 } catch (Throwable exception) { 56 System.err.print("exception!");
|
| /external/ImageMagick/Magick++/tests/ |
| coderInfo.cpp | 116 catch( Exception &error_ ) 118 cout << "Caught exception: " << error_.what() << endl; 121 catch( exception &error_ ) 123 cout << "Caught exception: " << error_.what() << endl;
|
| readWriteImages.cpp | 160 catch(Exception &error_) 162 cout << "Caught exception: " << error_.what() << endl; 165 catch(exception &error_) 167 cout << "Caught exception: " << error_.what() << endl;
|
| /external/ImageMagick/MagickWand/ |
| import.c | 80 % char **argv,char **metadata,ExceptionInfo *exception) 92 % o exception: return any errors or warnings in this structure. 216 int argc,char **argv,char **wand_unused(metadata),ExceptionInfo *exception) 236 (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \ 243 (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \ 300 assert(exception != (ExceptionInfo *) NULL); 459 images=XImportImage(image_info,&ximage_info,exception); 461 (exception->severity < ErrorException); [all...] |