HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 151 - 175 of 263) sorted by null

1 2 3 4 5 67 8 91011

  /external/fdlibm/
fdlibm.h 67 struct exception { struct
148 extern int ieee_matherr __P((struct exception *));
  /frameworks/base/awt/java/awt/
EventQueue.java 128 Exception exception = event.getException(); local
130 if (exception != null) {
131 throw new InvocationTargetException(exception);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 102 // If the class was not found, we throw the exception directly, because this
106 } catch (Exception e) {
107 // Wrap the real exception in a ClassNotFoundException, so that the calling method
109 ClassNotFoundException exception = new ClassNotFoundException("onCreateView", e); local
110 throw exception;
127 } catch (Exception e2) {
128 // Wrap the real exception in an InflateException so that the calling
130 InflateException exception = new InflateException(); local
132 exception.initCause(e2);
134 exception.initCause(e)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NetworkQueryService.java 199 int exception = (ar.exception == null) ? QUERY_OK : QUERY_EXCEPTION; local
200 if (DBG) log("AsyncResult has exception " + exception);
207 cb.onQueryComplete((ArrayList<NetworkInfo>) ar.result, exception);
  /system/core/sh/
error.c 68 int exception; variable
78 * Called to raise an exception. Since C doesn't include exceptions, we
79 * just do a longjmp to the exception handler. The type of exception is
80 * stored in the global variable "exception".
88 exception = e;
149 * Exverror is called to raise the error exception. If the second argument
151 * formatting. It then raises the error exception.
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 130 if (mAsyncTask.exception != null) {
131 throw mAsyncTask.exception;
150 fail("Failed to throw exception!");
184 assertNotNull(mAsyncTask.exception);
185 assertTrue(mAsyncTask.exception instanceof InterruptedException);
214 assertNull(mAsyncTask.exception);
240 assertNull(mAsyncTask.exception);
258 public Exception exception; field in class:AsyncTaskTest.MyAsyncTask
270 } catch (Exception e)
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
FutureTask.java 143 * computation encounters an exception or is cancelled. This is
176 /** The exception to throw from get() */
177 private Throwable exception; field in class:FutureTask.Sync
222 if (exception != null)
223 throw new ExecutionException(exception);
232 if (exception != null)
233 throw new ExecutionException(exception);
271 exception = t;
  /dalvik/libcore/luni-kernel/src/main/native/
java_lang_ProcessManager.cpp 141 * letting the exception percolate up.
238 // Close remaining open fds with the exception of statusOut.
360 // Temporarily clear exception so we can clean up.
361 jthrowable exception = env->ExceptionOccurred(); local
373 // Re-throw exception if present.
374 if (exception != NULL) {
375 if (env->Throw(exception) < 0) {
376 LOGE("Error rethrowing exception!");
  /dalvik/libcore/xml/src/main/java/javax/xml/datatype/
FactoryFinder.java 79 } catch (Exception x) {
165 } catch (Exception x) {
223 } catch (Exception ex) {
303 // Ignore the exception.
327 * <p>Exception that caused the error.</p>
329 private Exception exception; field in class:FactoryFinder.ConfigurationError
333 * exception.</p>
336 * @param x Exception that caused the error.
338 ConfigurationError(String msg, Exception x)
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/xslt/
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...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
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...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ObjectFactory.java 98 * @exception ObjectFactory.ConfigurationError
125 * @exception ObjectFactory.ConfigurationError
145 } catch (Exception x) {
172 * @exception ObjectFactory.ConfigurationError
200 * @exception ObjectFactory.ConfigurationError
227 } catch (Exception x) {
254 * @exception ObjectFactory.ConfigurationError
323 } catch (Exception x) {
336 // Ignore the exception.
351 } catch (Exception x)
634 private Exception exception; field in class:ObjectFactory.ConfigurationError
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
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...]
  /dalvik/libcore/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...]
  /dalvik/libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 223 exception(
269 exception(desc);
272 private final void exception(String desc) throws XmlPullParserException { method in class:KXmlParser
286 exception("No Input specified");
359 // make exception switchable for instances.chg... !!!!
361 // exception ("text '"+getText ()+"' not allowed outside root element");
746 exception("Duplicate Attribute: " + getAttributeName(i));
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 146 throw new RuntimeException("Unexpected exception", e);
148 throw new RuntimeException("Unexpected exception", e);
158 throw new RuntimeException("Unexpected exception", e);
183 throw new RuntimeException("Unexpected exception", e);
185 throw new RuntimeException("Unexpected exception", e);
195 throw new RuntimeException("Unexpected exception", e);
293 throw new RuntimeException("Unexpected exception", e);
295 throw new RuntimeException("Unexpected exception", e);
308 throw new RuntimeException("Unexpected exception", e);
310 throw new RuntimeException("Unexpected exception", e)
627 SAXParseException exception = new SAXParseException("Oops!", null); local
646 SAXParseException exception = new SAXParseException("Oops!", null); local
665 SAXParseException exception = new SAXParseException("Oops!", null); local
    [all...]
  /external/icu4c/test/intltest/
callimts.cpp 55 UErrorCode exception = U_ZERO_ERROR; local
58 cal->setTime(millis, exception);
59 if (U_SUCCESS(exception)) {
  /external/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /external/v8/test/mjsunit/
debug-scopes.js 39 var exception; variable
54 exception = e;
67 exception = null;
75 assertNull(exception, test_name)
668 throw 'Exception';
679 CheckScopeContent({e:'Exception'}, 0, exec_state);
688 throw 'Exception';
703 CheckScopeContent({e:'Exception'}, 1, exec_state);
715 throw 'Exception';
726 CheckScopeContent({e:'Exception'}, 0, exec_state)
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 129 JSValueRef exception = 0; local
133 value = getProperty(ctx, thisRef, propertyNameRef.get(), &exception);
135 if (exception) {
136 exec->setException(toJS(exec, exception));
201 JSValueRef exception = 0; local
205 result = setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, &exception);
207 if (exception)
208 exec->setException(toJS(exec, exception));
209 if (result || exception)
220 JSValueRef exception = 0 local
259 JSValueRef exception = 0; local
321 JSValueRef exception = 0; local
346 JSValueRef exception = 0; local
385 JSValueRef exception = 0; local
452 JSValueRef exception = 0; local
479 JSValueRef exception = 0; local
532 JSValueRef exception = 0; local
586 JSValueRef exception = 0; local
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
CallFrame.h 82 void setException(JSValue exception) { globalData().exception = exception; }
83 void clearException() { globalData().exception = JSValue(); }
84 JSValue exception() const { return globalData().exception; } function in class:JSC::ExecState
85 JSValue* exceptionSlot() { return &globalData().exception; }
86 bool hadException() const { return globalData().exception; }
  /external/webkit/JavaScriptCore/qt/api/
qscriptvalue_p.h 422 m_object = JSValueToObject(context(), value(), /* exception */ 0);
436 m_object = JSValueToObject(context(), value(), /* exception */ 0);
464 return QScriptConverter::toString(JSValueToStringCopy(context(), value(), /* exception */ 0));
477 return JSValueToNumber(context(), value(), /* exception */ 0);
574 return JSValueIsEqual(context(), value(), other->value(), /* exception */ 0);
632 m_object = JSValueToObject(context(), value(), /* exception */ 0);
655 JSValueRef exception = 0; local
656 JSValueRef result = JSObjectCallAsFunction(context(), object(), /* thisObject */ 0, argc, argv.constData(), &exception);
657 if (!result && exception)
658 return new QScriptValuePrivate(engine(), exception);
    [all...]
  /external/webkit/WebCore/editing/
VisiblePosition.cpp 613 int exception = 0; local
614 return VisiblePosition(r->startContainer(exception), r->startOffset(exception), affinity);
619 int exception = 0; local
620 return VisiblePosition(r->endContainer(exception), r->endOffset(exception), affinity);
  /external/webkit/WebCore/inspector/
JavaScriptDebugServer.cpp 232 JSValue exception;
233 JSValue result = m_currentCallFrame->evaluate(info->condition(), exception);
234 if (exception) {
543 void JavaScriptDebugServer::exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber, bool hasHandler) function in class:WebCore::JavaScriptDebugServer
  /external/webkit/WebCore/workers/
WorkerContext.cpp 214 // If the fetching attempt failed, throw a NETWORK_ERR exception and abort all these steps.
225 ScriptValue exception; local
226 m_script->evaluate(ScriptSourceCode(scriptLoader.script(), *it), &exception); local
227 if (!exception.hasNoValue()) {
228 m_script->setException(exception);

Completed in 1000 milliseconds

1 2 3 4 5 67 8 91011