| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
| etip.h | 96 # undef exception macro 97 # define exception math_exception macro 101 # undef exception macro 102 # define exception builtin_exception macro 110 # undef exception macro
|
| /art/test/401-optimizing-compiler/src/ |
| Main.java | 90 Exception exception = null; local 94 exception = e; 97 if (exception == null) {
|
| /external/chromium_org/remoting/webapp/ |
| typecheck.js | 9 * If the attribute is not an array, then an exception will be thrown unless 34 * If the attribute is not a boolean, then an exception will be thrown unless 59 * If the attribute is not a number, then an exception will be thrown unless 84 * If the attribute is not an object, then an exception will be thrown unless 109 * If the attribute is not a string, then an exception will be thrown unless 134 * exception will be thrown.
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| ExceptionState.cpp | 73 void ExceptionState::setException(v8::Handle<v8::Value> exception) 75 // FIXME: Assert that exception is not empty? 76 if (exception.IsEmpty()) { 81 m_exception.set(m_isolate, exception);
|
| /external/chromium_org/tools/grit/grit/gather/ |
| chrome_scaled_image.py | 12 from grit import exception namespace 97 raise exception.MissingMandatoryAttribute( 119 raise exception.FileNotFound(
|
| /external/chromium_org/v8/test/mjsunit/ |
| debug-backtrace-text.js | 63 exception = false; 100 exception = e 112 assertFalse(exception, "exception in listener") 122 assertFalse(exception, "exception in listener")
|
| debug-scripts-request.js | 35 exception = false; 97 exception = e 109 "listener did not run to completion, exception: " + exception); 110 assertFalse(exception, "exception in listener")
|
| debug-set-script-source.js | 34 var exception = null; variable 44 exception = e; 62 assertEquals("illegal access", exception);
|
| debug-stepnext-do-while.js | 32 var exception = null; 56 exception = e; 75 assertNull(exception);
|
| /external/deqp/framework/delibs/decpp/ |
| deUniquePtr.cpp | 26 #include <exception> 87 // Exception test. 95 throw std::exception(); 97 catch (const std::exception&)
|
| /external/droiddriver/src/com/google/android/droiddriver/scroll/ |
| StepBasedScroller.java | 100 ElementNotFoundException exception = new ElementNotFoundException(itemFinder); local 106 Logs.logfmt(Log.WARN, exception, "Scrolled %s %d times; ScrollStepStrategy=%s", 115 throw exception;
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| AbstractIteratorTest.java | 73 fail("no exception thrown"); 160 public void testSneakyThrow() throws Exception { 174 // The first time, the sneakily-thrown exception comes out 177 fail("No exception thrown"); 178 } catch (Exception e) { 187 fail("No exception thrown"); 193 final SomeUncheckedException exception = new SomeUncheckedException(); local 196 throw exception; 203 fail("No exception thrown"); 205 assertSame(exception, e) [all...] |
| /external/libcxx/src/ |
| exception.cpp | 1 //===------------------------ exception.cpp -------------------------------===// 12 #include "exception" 99 // handler should not throw exception 100 printf("terminate_handler unexpectedly threw an exception\n"); 128 exception::~exception() _NOEXCEPT 132 const char* exception::what() const _NOEXCEPT 134 return "std::exception";
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
| String2Test.java | 82 boolean exception = false; 86 exception = true; 88 assertTrue("Did not throw exception", exception); 106 public void test_Constructor$BIILjava_lang_String() throws Exception { 118 public void test_Constructor$BLjava_lang_String() throws Exception { 142 boolean exception = false; 146 exception = true; 148 assertTrue("Did not throw exception", exception); [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
| ServerSocketChannelTest.java | 52 protected void setUp() throws Exception { 58 protected void tearDown() throws Exception { 62 } catch (Exception e) { 70 } catch (Exception e) { 114 public void test_bind_null() throws Exception { 129 public void test_bind_failure() throws Exception { 145 public void test_bind_closed() throws Exception { 158 public void test_bind_explicitPort() throws Exception { 251 public void testSocket_Block_BeforeClose() throws Exception { 267 public void testSocket_NonBlock_BeforeClose() throws Exception { 526 IOException exception; field in class:ServerSocketChannelTest.WriteChannelThread 594 IOException exception; field in class:ServerSocketChannelTest.WriteSocketThread [all...] |
| /libcore/luni/src/main/native/ |
| java_lang_System.cpp | 41 static void System_log(JNIEnv* env, jclass, jchar type, jstring javaMessage, jthrowable exception) { 60 if (exception != NULL) { 61 jniLogException(env, priority, LOG_TAG, exception);
|
| /libcore/xml/src/main/java/org/xmlpull/v1/ |
| XmlPullParserFactory.java | 143 ArrayList<Exception> exceptions = null; 146 exceptions = new ArrayList<Exception>(); 167 ArrayList<Exception> exceptions = null; 170 exceptions = new ArrayList<Exception>(); 191 ArrayList<Exception> exceptions) { 195 XmlPullParserException exception = new XmlPullParserException(message); local 196 for (Exception ex : exceptions) { 197 exception.addSuppressed(ex); 200 return exception;
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
| exception.cpp | 1 //===------------------------ exception.cpp -------------------------------===// 12 #include "exception" 99 // handler should not throw exception 100 printf("terminate_handler unexpectedly threw an exception\n"); 128 exception::~exception() _NOEXCEPT 132 const char* exception::what() const _NOEXCEPT 134 return "std::exception";
|
| /packages/services/Telephony/src/com/android/phone/ |
| PhoneInterfaceManager.java | 227 if (ar.exception == null && ar.result != null) { 287 if (ar.exception == null && ar.result != null) { 293 } else if (ar.exception instanceof CommandException) { 295 ar.exception); 297 loge("iccTransmitApduLogicalChannel: Unknown exception"); 326 if (ar.exception == null && ar.result != null) { 332 } else if (ar.exception instanceof CommandException) { 334 ar.exception); 336 loge("iccTransmitApduBasicChannel: Unknown exception"); 365 if (ar.exception == null && ar.result != null) [all...] |
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-1130.js | 33 var exception = false; variable 37 exception = true; 40 assertTrue(exception);
|
| regress-1184.js | 28 // Test the case when finally clause throws another exception (stack overflow) 30 // catcher as it doesn't catch original exception any more. 41 // stack with catcher set while processing exception
|
| regress-119609.js | 32 var exception = false; variable 52 exception = e.toString() + e.stack; 71 assertFalse(exception);
|
| regress-131994.js | 35 var exception = false; variable 46 exception = e; 69 assertFalse(exception);
|
| regress-1412.js | 53 var exception = false; variable 57 exception = true; 59 assertTrue(exception);
|
| regress-1980.js | 32 var exception = false; 36 exception = true; 39 assertTrue(exception);
|