| /external/smack/src/org/xbill/DNS/ |
| KEYRecord.java | 336 throw st.exception("Invalid flags: " + flagString); 340 throw st.exception("Invalid protocol: " + protoString); 344 throw st.exception("Invalid algorithm: " + algString);
|
| /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
| DirectoryLoader.java | 51 Exception exception; field in class:DirectoryResult 114 result.exception = e; 180 } catch (Exception e) { 182 result.exception = e;
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| IccPhoneBookInterfaceManager.java | 69 if (ar.exception == null) { 84 mSuccess = (ar.exception == null); 91 if (ar.exception == null) {
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
| SystemTest.java | 226 boolean exception = false; 230 exception = true; 232 assertTrue("Expected IllegalArgumentException", exception); 384 // Android isn't as strict about requiring this exception; no modification takes place anyway
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
| GZIPInputStreamTest.java | 195 boolean exception = false; 201 exception = true; 203 assertTrue("Exception expected", exception);
|
| /libcore/luni/src/main/java/javax/xml/datatype/ |
| FactoryFinder.java | 149 } catch (Exception x) { 201 } catch (Exception ex) { 288 * <p>Exception that caused the error.</p> 290 private Exception exception; field in class:FactoryFinder.ConfigurationError 294 * exception.</p> 297 * @param x Exception that caused the error. 299 ConfigurationError(String msg, Exception x) { 301 this.exception = x; 305 * <p>Get the Exception that caused the error.</p [all...] |
| /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
| NfcImportVCardActivity.java | 43 import com.android.vcard.exception.VCardException; 44 import com.android.vcard.exception.VCardNestedException; 45 import com.android.vcard.exception.VCardVersionException; 124 Log.w(TAG, "Nested Exception is found (it may be false-positive)."); 125 // Go through without throwing the Exception, as we may be able to detect the
|
| /packages/apps/Mms/src/com/android/mms/util/ |
| PduLoaderManager.java | 182 Throwable exception = null; local 191 exception = e; 195 final Throwable resultException = exception;
|
| /packages/services/Telephony/src/com/android/phone/ |
| TimeConsumingPreferenceActivity.java | 20 public void onException(Preference preference, CommandException exception); 179 public void onException(Preference preference, CommandException exception) { 180 if (exception.getCommandError() == CommandException.Error.FDN_CHECK_FAILURE) {
|
| FdnSetting.java | 246 if (ar.exception != null && ar.exception instanceof CommandException) { 250 ((CommandException) ar.exception).getCommandError(); 278 if (ar.exception != null) { 282 CommandException ce = (CommandException) ar.exception;
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_format.py | 247 # Test exception for unknown format characters 251 def test_exc(formatstr, args, exception, excmsg): 254 except exception, exc: 260 print 'Unexpected ', exception, ':', repr(str(exc)) 263 print 'Unexpected exception' 266 raise TestFailed, 'did not get expected exception: %s' % excmsg
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_format.py | 247 # Test exception for unknown format characters 251 def test_exc(formatstr, args, exception, excmsg): 254 except exception, exc: 260 print 'Unexpected ', exception, ':', repr(str(exc)) 263 print 'Unexpected exception' 266 raise TestFailed, 'did not get expected exception: %s' % excmsg
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| CollectionsTest.java | 774 // test exception cases [all...] |
| /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
| socket.rb | 166 def recognition_exception( exception ) 167 transmit "%s\t%p\t%i\t%i\t%i", :recognition_exception, exception.class, 168 exception.index, exception.line, exception.column
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
| ResumeTest.java | 67 } catch (NumberFormatException exception) { 69 ("## FAILURE: Exception while getting number of started threads from debuggee = " + exception); 91 } catch (ReplyErrorCodeException exception) { 93 ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception); 104 } catch (ReplyErrorCodeException exception) {
|
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Analyzer.java | 294 ExceptionInfo exception = exceptions[i]; local 297 if (pos >= exception.start && pos < exception.end) { 300 newFrame.push(exception.type); 301 merge(queue, newFrame, exception.handler);
|
| /external/chromium_org/v8/test/mjsunit/ |
| mjsunit.js | 89 // Assert that the passed function or eval code throws an exception. 90 // The optional second argument is an exception constructor that the 91 // thrown exception is checked against with "instanceof". 93 // to the type property on the thrown exception. 96 // Assert that the passed function or eval code does not throw an exception. 345 throw new MjsUnitAssertionError("Did not throw exception"); 371 fail("threw an exception: ", e.message || e, name_opt);
|
| debug-evaluate-locals-optimized-double.js | 35 var exception = false; variable 171 exception = e.toString() + e.stack; 235 assertFalse(exception, "exception in listener " + exception)
|
| debug-evaluate-locals-optimized.js | 35 var exception = false; variable 162 exception = e.toString() + e.stack; 216 assertFalse(exception, "exception in listener " + exception)
|
| debug-handle.js | 33 exception = false; 225 exception = e 250 assertFalse(exception, "exception in listener") 252 assertTrue(listenerComplete, "listener did not run to completion: " + exception);
|
| debug-set-variable-value.js | 44 var exception = null; 58 exception = e; 72 if (exception != null) { 73 assertUnreachable("Exception in listener\n" + exception.stack); 182 throw {name: "test exception"};
|
| debug-stepin-positions.js | 37 var exception = false; 45 event == Debug.DebugEvent.Exception) { 54 exception = e 71 assertTrue(!exception, exception); 149 // an exception.
|
| /external/chromium_org/v8/src/ |
| isolate.cc | 428 // Capture stack trace for a detailed exception message. 780 Handle<JSObject> exception = factory()->CopyJSObject(boilerplate); local 781 DoThrow(*exception, NULL); 786 if (!error->IsJSObject()) return heap()->exception(); 794 if (!stack_trace_limit->IsNumber()) return heap()->exception(); 799 exception, factory()->undefined_value(), limit); 800 JSObject::SetHiddenProperty(exception, 803 return heap()->exception(); 809 return heap()->exception(); 850 Object* Isolate::Throw(Object* exception, MessageLocation* location) 2321 Handle<Object> exception; local [all...] |
| isolate.h | 124 isolate, dst, call, isolate->heap()->exception()) 138 RETURN_ON_EXCEPTION_VALUE(isolate, call, isolate->heap()->exception()) 531 // Interface to pending exception. 610 bool is_catchable_by_javascript(Object* exception) { 611 return exception != heap()->termination_exception(); 658 // exceptions. If an exception was thrown and not handled by an external 659 // handler the exception is scheduled to be rethrown when we return to running 660 // JavaScript code. If an exception is scheduled true is returned. 667 // not termination exception. 707 // the result is false, the pending exception is guaranteed to b [all...] |
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| generators-debug-scopes.js | 11 var exception = null; 20 exception = e; 26 exception = null; 33 assertNull(exception, name + " / " + exception); 319 ["try { throw 'Exception'; } catch (e) { debugger; }"], 325 CheckScopeContent({e:'Exception'}, 0, exec_state);
|