| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| ObjectFactory.java | 99 * @exception ObjectFactory.ConfigurationError 126 * @exception ObjectFactory.ConfigurationError 146 } catch (Exception x) { 173 * @exception ObjectFactory.ConfigurationError 201 * @exception ObjectFactory.ConfigurationError 228 } catch (Exception x) { 255 * @exception ObjectFactory.ConfigurationError 324 } catch (Exception x) { 337 // Ignore the exception. 352 } catch (Exception x) 635 private Exception exception; field in class:ObjectFactory.ConfigurationError [all...] |
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
| PrivateScriptRunner.cpp | 28 // when they are called at the first time if V8 has a pending exception. 154 fprintf(stderr, "Private script error: Object constructor threw an exception.\n"); 193 v8::Handle<v8::Value> exception = block.Exception(); local 194 RELEASE_ASSERT(!exception.IsEmpty() && exception->IsObject()); 196 v8::Handle<v8::Object> exceptionObject = v8::Handle<v8::Object>::Cast(exception);
|
| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
| ServiceWorkerContainerTest.cpp | 115 DOMException* exception = V8DOMException::toImplWithTypeCheck(value.isolate(), value.v8Value()); variable 116 EXPECT_TRUE(exception) << "the value should be a DOMException"; 117 if (!exception) 119 EXPECT_EQ(m_expectedName, exception->name()); 120 EXPECT_EQ(m_expectedMessage, exception->message());
|
| /external/chromium_org/third_party/icu/source/test/intltest/ |
| callimts.cpp | 55 UErrorCode exception = U_ZERO_ERROR; local 58 cal->setTime(millis, exception); 59 if (U_SUCCESS(exception)) {
|
| /external/chromium_org/tools/grit/grit/ |
| clique.py | 14 from grit import exception namespace 232 raise exception.MismatchingPlaceholders( 366 raise exception.InvalidMessage(self.GetMessage().GetRealContent()) 446 grit.exception.InvalidTranslation if the translation you're trying to add 452 raise exception.InvalidTranslation(
|
| /external/chromium_org/tools/grit/grit/gather/ |
| tr_html.py | 57 from grit import exception namespace 539 raise exception.BlockTagInTranslateableChunk(html) 560 raise exception.BlockTagInTranslateableChunk(html[current:]) 648 grit.exception.NotReady() if used before Parse() has been successfully 650 grit.exception.NoSuchTranslation() if 'pseudo_if_not_available' is false 654 raise exception.NotReady()
|
| /external/chromium_org/tools/grit/grit/node/ |
| base.py | 15 from grit import exception namespace 48 # line identifying the offending node if an exception escapes from the body 120 raise exception.UnexpectedChild(explanation) 155 raise exception.UnexpectedContent() 173 raise exception.UnexpectedAttribute(attrib) 226 raise exception.MutuallyExclusiveMandatoryAttribute(mandatt) 229 raise exception.MissingMandatoryAttribute(mandatt)
|
| structure.py | 13 from grit import exception namespace 189 raise exception.UnexpectedAttribute(
|
| misc.py | 14 from grit import exception namespace 104 raise exception.UnexpectedChild( 211 raise exception.Parsing('latest_public_release cannot have a greater ' 247 raise exception.DuplicateKey(', '.join(duplicate_names)) 359 raise exception.MissingElement() 446 raise Exception( 465 raise Exception('Please update %s and add a first id for %s (%s).'
|
| /external/chromium_org/v8/tools/oom_dump/ |
| oom_dump.cc | 114 MinidumpException *exception = minidump.GetException(); local 115 CHECK(exception); 117 MinidumpContext* crash_context = exception->GetContext(); 121 CHECK(exception->GetThreadID(&exception_thread_id)); 219 printf("exception thread ID: %" PRIu32 " (%#" PRIx32 ")\n",
|
| /external/clang/test/Analysis/Inputs/ |
| system-header-simulator-cxx.h | 56 class exception { class in namespace:std 58 exception() throw(); 59 virtual ~exception() throw(); 65 class bad_alloc : public exception {
|
| /external/conscrypt/src/main/java/org/conscrypt/ |
| OpenSSLSessionImpl.java | 235 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 236 exception.initCause(exception); 237 throw exception; 239 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 240 exception.initCause(exception); 241 throw exception;
|
| /external/droiddriver/src/com/google/android/droiddriver/helpers/ |
| BaseDroidDriverTest.java | 48 // Prevent crash by uncaught exception. 70 protected void setUp() throws Exception { 80 protected void tearDown() throws Exception { 168 Throwable exception = null; local 173 exception = runException; 176 onFailure(exception); 181 if (exception == null) { 182 exception = tearDownException; 186 if (exception != null) { 187 throw exception; 234 Throwable exception = e.getTargetException(); local [all...] |
| /external/droiddriver/src/com/google/android/droiddriver/instrumentation/ |
| ViewElement.java | 54 Throwable exception; field in class:ViewElement.SnapshotViewAttributesRunnable 95 exception = e; 228 if (attributesSnapshot.exception != null) { 229 throw new DroidDriverException(attributesSnapshot.exception);
|
| /external/icu/icu4c/source/test/intltest/ |
| callimts.cpp | 55 UErrorCode exception = U_ZERO_ERROR; local 58 cal->setTime(millis, exception); 59 if (U_SUCCESS(exception)) {
|
| /external/objenesis/tck/src/org/objenesis/tck/ |
| TextReporter.java | 48 Exception exception; field in class:TextReporter.Result 54 * @param exception Exception that might have occured during the test 57 Exception exception) { 61 this.exception = exception; 126 public void exception(Exception exception) method in class:TextReporter [all...] |
| /external/objenesis/tck/test/org/objenesis/tck/ |
| ObjenesisTest.java | 63 public void exception(Exception exception) {
method in class:ObjenesisTest.JUnitReporter 66 out.println("Exception when instantiating " + currentCandidate + " with "
68 exception.printStackTrace(out);
107 protected void setUp() throws Exception {
115 protected void tearDown() throws Exception {
121 public void testObjenesisStd() throws Exception {
127 public void testObjenesisSerializer() throws Exception {
133 public void testObjenesisSerializerParentConstructorCalled() throws Exception {
[all...] |
| /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
| DeviceInfoInstrument.java | 263 } catch (Exception exception) { 264 Log.e(TAG, "Error getting features: " + exception.getMessage(), exception); 310 } catch (Exception exception) { 311 Log.e(TAG, "Error getting processes: " + exception.getMessage(), exception); 312 builder.append(exception.getMessage());
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
| ParsedEvent.java | 348 * The class implements JDWP EXCEPTION event. 352 private TaggedObject exception; field in class:ParsedEvent.Event_EXCEPTION 363 super(suspendPolicy, packet, JDWPConstants.EventKind.EXCEPTION); 364 exception = packet.getNextValueAsTaggedObject(); 369 * @return Returns the location of the caught exception. 376 * @return Returns the exception. 379 return exception; 696 case JDWPConstants.EventKind.EXCEPTION: {
|
| /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
| SQLExceptionTest.java | 47 } catch (Exception e) { 48 System.out.println("SUID check got exception: " + e.getMessage()); 49 // assertTrue("Exception while testing SUID ", false ); 73 Exception[] theExceptions = { null, null, null, null, null, null, null, 93 } catch (Exception e) { 95 fail(i + "Unexpected exception"); 97 assertEquals(i + "Exception mismatch", e.getClass(), 99 assertEquals(i + "Exception mismatch", e.getMessage(), 122 Exception[] theExceptions = { null, null, null, null, null, null, null, 142 } catch (Exception e) 545 SQLException exception = new SQLException(e); local 556 SQLException exception = new SQLException("reason", e); local 568 SQLException exception = new SQLException("reason", "state", e); local 581 SQLException exception = new SQLException("reason", "state", 18, e); local [all...] |
| /external/chromium_org/v8/test/mjsunit/ |
| debug-scopes.js | 38 var exception; variable 53 exception = e; 66 exception = null; 74 assertNull(exception, test_name + " / " + exception); 864 throw 'Exception'; 875 CheckScopeContent({e:'Exception'}, 0, exec_state); 884 throw 'Exception'; 899 CheckScopeContent({e:'Exception'}, 1, exec_state); 911 throw 'Exception'; [all...] |
| /external/guava/guava-tests/test/com/google/common/util/concurrent/ |
| FuturesTest.java | 77 @Override protected void setUp() throws Exception { 83 @Override protected void tearDown() throws Exception { 95 public void testImmediateFuture() throws Exception { 102 public void testMultipleImmediateFutures() throws Exception { 111 public void testImmediateFailedFuture() throws Exception { 112 Exception exception = new Exception(); local 114 Futures.immediateFailedFuture(exception); 121 assertSame(exception, expected.getCause()) 150 MyException exception = new MyException(); local [all...] |
| /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/lldb/source/Plugins/Process/Utility/ |
| RegisterContextDarwin_arm.h | 149 uint32_t exception; member in struct:RegisterContextDarwin_arm::EXC
|
| /art/runtime/ |
| class_linker_test.cc | 52 mirror::Object* exception = self->GetException(NULL); local 56 EXPECT_TRUE(exception->InstanceOf(exception_class)); [all...] |