HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 551 - 575 of 8688) sorted by null

<<21222324252627282930>>

  /frameworks/base/docs/html/sdk/api_diff/24/changes/
java.util.logging.Handler.html 90 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
100 Change in exceptions thrown from <code>java.io.UnsupportedEncodingException</code> to (<code>java.lang.SecurityException, java.io.UnsupportedEncodingException</code>).<br>
110 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
120 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
130 Change in exceptions thrown from no exceptions to <code>java.lang.SecurityException</code>.<br>
  /cts/tests/tests/security/jni/
android_security_cts_EncryptionTest.cpp 56 * Exceptions: none
78 * Exceptions: none
101 * Exceptions: none
123 * Exceptions: none
149 * Exceptions: InvalidKeyException if EVP_DecryptInit fails, OutOfMemoryError
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 111 Exceptions.LIST_Error, "const-object");
262 Exceptions.LIST_Error_ArithmeticException, "div-int");
267 Exceptions.LIST_Error_ArithmeticException, "div-long");
281 Exceptions.LIST_Error_ArithmeticException, "rem-int");
286 Exceptions.LIST_Error_ArithmeticException, "rem-long");
423 Exceptions.LIST_Error_ArithmeticException, "div-const-int");
428 Exceptions.LIST_Error_ArithmeticException, "div-const-long");
442 Exceptions.LIST_Error_ArithmeticException, "rem-const-int");
447 Exceptions.LIST_Error_ArithmeticException, "rem-const-long");
630 Exceptions.LIST_Error_NullPointerException, "array-length")
    [all...]
ThrowingInsn.java 25 * the list of exceptions handled by this instruction, with the
30 /** {@code non-null;} list of exceptions caught */
60 * @param catches {@code non-null;} list of exceptions caught
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 111 Exceptions.LIST_Error, "const-object");
262 Exceptions.LIST_Error_ArithmeticException, "div-int");
267 Exceptions.LIST_Error_ArithmeticException, "div-long");
281 Exceptions.LIST_Error_ArithmeticException, "rem-int");
286 Exceptions.LIST_Error_ArithmeticException, "rem-long");
423 Exceptions.LIST_Error_ArithmeticException, "div-const-int");
428 Exceptions.LIST_Error_ArithmeticException, "div-const-long");
442 Exceptions.LIST_Error_ArithmeticException, "rem-const-int");
447 Exceptions.LIST_Error_ArithmeticException, "rem-const-long");
630 Exceptions.LIST_Error_NullPointerException, "array-length")
    [all...]
ThrowingInsn.java 25 * the list of exceptions handled by this instruction, with the
30 /** {@code non-null;} list of exceptions caught */
60 * @param catches {@code non-null;} list of exceptions caught
  /external/chromium-trace/catapult/catapult_base/catapult_base/
binary_manager_unittest.py 10 from dependency_manager import exceptions namespace
198 with self.assertRaises(exceptions.NoPathFoundError):
200 with self.assertRaises(exceptions.NoPathFoundError):
202 with self.assertRaises(exceptions.NoPathFoundError):
204 with self.assertRaises(exceptions.NoPathFoundError):
  /external/chromium-trace/catapult/firefighter/base/
bigquery.py 17 from base import exceptions namespace
94 raise exceptions.QueryError(response['insertErrors'])
137 raise exceptions.QueryError(response['errors'])
164 raise exceptions.QueryError(response['status']['errors'])
173 raise exceptions.TimeoutError()
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_websocket.py 11 from telemetry.core import exceptions namespace
14 class WebSocketDisconnected(exceptions.Error):
85 exceptions.WebSocketDisconnected: The socket was disconnected.
105 exceptions.WebSocketDisconnected: The socket was disconnected.
132 exceptions.WebSocketDisconnected: The socket was disconnected.
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rops.java 111 Exceptions.LIST_Error, "const-object");
262 Exceptions.LIST_Error_ArithmeticException, "div-int");
267 Exceptions.LIST_Error_ArithmeticException, "div-long");
281 Exceptions.LIST_Error_ArithmeticException, "rem-int");
286 Exceptions.LIST_Error_ArithmeticException, "rem-long");
423 Exceptions.LIST_Error_ArithmeticException, "div-const-int");
428 Exceptions.LIST_Error_ArithmeticException, "div-const-long");
442 Exceptions.LIST_Error_ArithmeticException, "rem-const-int");
447 Exceptions.LIST_Error_ArithmeticException, "rem-const-long");
630 Exceptions.LIST_Error_NullPointerException, "array-length")
    [all...]
  /external/guava/guava/src/com/google/common/io/
Closeables.java 68 * @param swallowIOException if true, don't propagate IO exceptions thrown by the {@code close}
96 * <a href="http://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html">
99 * may swallow IO exceptions that really should be thrown and handled. See
120 * <p>While it's not safe in the general case to ignore exceptions that are thrown when closing
142 * <p>While it's not safe in the general case to ignore exceptions that are thrown when closing
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateClassAdapter.java 88 String signature, String[] exceptions) {
98 return super.visitMethod(access, name, desc, signature, exceptions);
112 MethodVisitor mwDelegate = super.visitMethod(access, name, desc, signature, exceptions);
135 desc, signature, exceptions);
137 desc, signature, exceptions);
  /libcore/ojluni/src/main/java/java/lang/
RuntimeException.java 30 * exceptions that can be thrown during the normal operation of the
34 * exceptions</em>. Unchecked exceptions do <em>not</em> need to be
40 * @jls 11.2 Compile-Time Checking of Exceptions
86 * <tt>cause</tt>). This constructor is useful for runtime exceptions
Throwable.java 33 * exceptions in the Java language. Only objects that are instances of this
39 * For the purposes of compile-time checking of exceptions, {@code
42 * regarded as checked exceptions.
59 * exceptions, each caused by another.
72 * changing its API (in particular, the set of exceptions thrown by its
86 * capable of throwing such exceptions.)
112 * @jls 11.2 Compile-Time Checking of Exceptions
210 * The list of suppressed exceptions, as returned by {@link
397 * exceptions to {@code Throwable}. Note that it is <i>not</i>
579 * <i>suppressed exceptions</i> (in conjunction with the {@cod
    [all...]
  /prebuilts/tools/common/m2/repository/tightvnc/
tightvnc.jar 
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.internal.backends.chrome_inspector.devtools_client_backend.html 28 <a href="telemetry.core.exceptions.html">telemetry.core.exceptions</a><br>
53 <dt><font face="helvetica, arial"><a href="telemetry.core.exceptions.html#Error">telemetry.core.exceptions.Error</a>(<a href="exceptions.html#Exception">exceptions.Exception</a>)
206 <font color="#000000" face="helvetica, arial"><a name="TabNotFoundError">class <strong>TabNotFoundError</strong></a>(<a href="telemetry.core.exceptions.html#Error">telemetry.core.exceptions.Error</a>)</font></td></tr>
211 <dd><a href="telemetry.core.exceptions.html#Error">telemetry.core.exceptions.Error</a></dd
    [all...]
telemetry.internal.util.exception_formatter.html 13 <p><tt>Print&nbsp;prettier&nbsp;and&nbsp;more&nbsp;detailed&nbsp;exceptions.</tt></p>
21 <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.core.exceptions.html">telemetry.core.exceptions</a><br>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer.py 18 from apitools.base.py import exceptions namespace
110 raise exceptions.InvalidDataError(
151 raise exceptions.TransferInvalidError(
156 raise exceptions.TransferInvalidError(
210 raise exceptions.InvalidUserInputError(
228 raise exceptions.InvalidDataError(
295 raise exceptions.UserError('Must provide client or http.')
306 raise exceptions.HttpError.FromResponse(response)
321 raise exceptions.TransferInvalidError(
324 raise exceptions.TransferInvalidError
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 39 /** {@code non-null;} list of exceptions caught and their handler targets */
52 * @param catches {@code non-null;} list of exceptions caught and their
138 * Gets the list of exceptions caught and their handler targets.
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 39 /** {@code non-null;} list of exceptions caught and their handler targets */
52 * @param catches {@code non-null;} list of exceptions caught and their
138 * Gets the list of exceptions caught and their handler targets.
  /external/autotest/client/cros/multimedia/
facade_resource.py 7 import exceptions namespace
17 (chrome.Error, exceptions.IndexError, exceptions.Exception),
  /external/autotest/client/site_tests/login_MultiUserPolicy/
login_MultiUserPolicy.py 68 except dbus.exceptions.DBusException, e:
77 except dbus.exceptions.DBusException, e:
94 except dbus.exceptions.DBusException, e:
  /external/autotest/site_utils/
stable_version_utils.py 9 import django.core.exceptions namespace
56 except django.core.exceptions.ObjectDoesNotExist:
77 except django.core.exceptions.ObjectDoesNotExist:
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
oobe.py 8 from telemetry.core import exceptions namespace
27 except exceptions.EvaluateException:
42 raise exceptions.LoginException('%s js api missing' % api)
tab_list_backend.py 7 from telemetry.core import exceptions namespace
13 class TabUnexpectedResponseException(exceptions.DevtoolsTargetCrashException):
51 exceptions.TimeoutException

Completed in 1833 milliseconds

<<21222324252627282930>>