HomeSort by relevance Sort by last modified time
    Searched full:exception (Results 401 - 425 of 25972) sorted by null

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 63 //throw security exception if the calling thread is not allowed to access the
127 /** Exception. */
128 private Exception exception; field in class:ObjectFactory.ConfigurationError
136 * exception.
138 ConfigurationError(String msg, Exception x) {
140 this.exception = x;
141 } // <init>(String,Exception)
147 /** Returns the exception associated to this error. */
148 Exception getException()
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
content_settings_exception_area_browsertest.js 6 * TestFixture for content settings exception area WebUI testing.
16 * Browse to the content settings exception area.
28 // Test opening the content settings exception area has correct location.
  /external/chromium_org/v8/test/mjsunit/
property-load-across-eval.js 48 var exception = false;
52 exception = true;
54 assertTrue(exception);
56 exception = false;
60 exception = true;
62 assertTrue(exception);
70 var exception = false;
74 exception = true;
76 assertTrue(exception);
78 exception = false
    [all...]
  /external/clang/test/CXX/except/except.handle/
p16.cpp 3 // The object declared in an exception-declaration or, if the
4 // exception-declaration does not specify a name, a temporary (12.2)
5 // is copy-initialized (8.5) from the exception object.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
RunnableEx.java 14 * Analog of {@link Runnable} where method <code>run</code> can throw {@link Exception}.
21 * Executes operation that can cause {@link Exception}.
23 void run() throws Exception;
RunnableObjectEx.java 14 * Analog of {@link Runnable} where method <code>run</code> can throw {@link Exception}.
21 * Executes operation that can cause {@link Exception}.
25 T runObject() throws Exception;
  /external/javassist/src/main/javassist/tools/web/
BadHttpRequest.java 21 public class BadHttpRequest extends Exception {
22 private Exception e;
26 public BadHttpRequest(Exception _e) { e = _e; }
  /external/junit/src/junit/extensions/
TestSetup.java 21 public void protect() throws Exception {
33 protected void setUp() throws Exception {
40 protected void tearDown() throws Exception {
  /external/junit/src/junit/framework/
TestFailure.java 9 * the caught exception.
18 * Constructs a TestFailure with the given test and exception.
31 * Gets the thrown exception.
  /external/mockito/src/org/mockito/internal/runners/util/
RunnerProvider.java 29 public RunnerImpl newInstance(String runnerClassName, Class<?> constructorParam) throws Exception {
34 } catch (Exception e) {
42 } catch (Exception e) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
RobolectricPackageManagerTest.java 33 public void setUp() throws Exception {
38 public void tearDown() throws Exception {
42 public void getApplicationInfo__ThisApplication() throws Exception {
49 public void getApplicationInfo__OtherApplication() throws Exception {
64 public void queryIntentActivities__EmptyResult() throws Exception {
74 public void queryIntentActivities__Match() throws Exception {
90 public void resolveActivity__Match() throws Exception {
100 public void resolveActivity__NoMatch() throws Exception {
107 public void resolveService__Match() throws Exception {
119 public void resolveService__NoMatch() throws Exception {
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AccountManagerTest.java 44 public void testGetAuthTokenByFeatures_isCancelled() throws Exception {
54 public void testGetAuthTokenByFeatures_isDoneWithCancel() throws Exception {
64 public void testGetAuthTokenByFeatures_isDoneWithGetResult() throws Exception {
74 public void testInvalidateAuthToken() throws Exception {
80 public void testGetAuthTokenByFeatures_getResult() throws Exception {
91 public void testGetAuthToken_getResult() throws Exception {
101 public void testAccountManagerIsSingleton() throws Exception {
109 public void testGetAccounts() throws Exception {
119 public void testGetAccountsByType() throws Exception {
131 public void testPeek() throws Exception {
    [all...]
CameraParametersTest.java 27 public void setUp() throws Exception {
33 public void testPictureSize() throws Exception {
45 public void testPreviewFpsRange() throws Exception {
57 public void testPreviewFrameRate() throws Exception {
64 public void testPreviewSize() throws Exception {
76 public void testPreviewFormat() throws Exception {
83 public void testGetSupportedPreviewFormats() throws Exception {
91 public void testGetSupportedPictureFormats() throws Exception {
99 public void testGetSupportedPictureSizes() throws Exception {
108 public void testGetSupportedPreviewSizes() throws Exception {
    [all...]
  /external/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
  /external/v8/test/mjsunit/
property-load-across-eval.js 48 var exception = false;
52 exception = true;
54 assertTrue(exception);
56 exception = false;
60 exception = true;
62 assertTrue(exception);
70 var exception = false;
74 exception = true;
76 assertTrue(exception);
78 exception = false
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestLoadException.java 17 * Encapsulates a concrete load exception such as
18 * a SAX exception
23 extends Exception {
  /libcore/luni/src/main/java/java/security/
PrivilegedActionException.java 23 public class PrivilegedActionException extends Exception {
27 public PrivilegedActionException(Exception ex) {
31 public Exception getException() {
  /libcore/luni/src/test/java/libcore/sqlite/
OldExceptionTest.java 20 import SQLite.Exception;
26 @Override public void setUp() throws java.lang.Exception {
34 } catch (Exception e) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionTest.java 10 protected void setUp() throws Exception {
44 fail("exception expected");
46 // expected exception
  /ndk/sources/cxx-stl/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
  /ndk/tests/device/issue20176-__gnu_Unwind_Find_exidx/jni/
issue20176-__gnu_Unwind_Find_exidx.cpp 2 #include <exception>
25 throw std::exception();
26 } catch (const std::exception &e)
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepException.java 19 public class SnepException extends Exception {
25 public SnepException(Exception cause) {
29 public SnepException(String message, Exception cause) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
EvenMoreAsserts.java 39 public static <T extends Exception> void assertThrows(Class<T> exception, Runnable r) {
40 assertThrows(null, exception, r);
43 public static <T extends Exception> void assertThrows(String message, Class<T> exception,
50 } catch (Exception caught) {
51 if (!exception.isInstance(caught)) {
52 Assert.fail(appendUserMessage("Exception " + exception + " expected but " +
58 "Exception " + exception + " expected but no exception was thrown."
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
exception.h 25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)

Completed in 625 milliseconds

<<11121314151617181920>>