| /external/chromium_org/v8/test/mjsunit/ | 
| debug-receiver.js | 35 var exception;  variable 42 // explictly caught here and checked later because exception in the
 52     exception = e;
 64   exception = null;
 72   assertNull(exception, test_name);
 
 | 
| debug-evaluate-bool-constructor.js | 33 var exception = false;  variable 62    exception = e
 79 assertFalse(exception, "exception in listener")
 
 | 
| debug-setbreakpoint.js | 34 var exception = false;  variable 132     exception = e
 179 assertTrue(listenerComplete, "listener did not run to completion: " + exception);
 201 // we get an exception.
 
 | 
| /external/chromium_org/v8/test/mjsunit/es6/debug-promises/ | 
| events.js | 10 var exception = null;  variable 51     exception = e;
 109       assertAsync(exception === null, "exception === null");
 
 | 
| /external/clang/test/CodeGenCXX/ | 
| weak-external.cpp | 37 class _LIBCPP_EXCEPTION_ABI exception  class in namespace:std 40     _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
 41     virtual ~exception() _NOEXCEPT;
 46     : public exception
 
 | 
| /external/doclava/src/com/google/doclava/ | 
| ThrowsTagInfo.java | 45   public ThrowsTagInfo(String name, String kind, String text, ClassInfo exception, 48     mException = exception;
 52   public ClassInfo exception() {  method in class:ThrowsTagInfo
 
 | 
| /development/ndk/sources/android/libportable/arch-x86/ | 
| fenv.c | 28     int exception = flags & FE_ALL_EXCEPT_PORTABLE;  local 30     // exception flags
 31     if (exception & FE_INVALID_PORTABLE)
 33     if (exception & FE_DIVBYZERO_PORTABLE)
 35     if (exception & FE_OVERFLOW_PORTABLE)
 37     if (exception & FE_UNDERFLOW_PORTABLE)
 39     if (exception & FE_INEXACT_PORTABLE)
 72     int exception = x86flags & FE_ALL_EXCEPT;  local
 74     // exception flags
 75     if (exception & FE_INVALID
 [all...]
 | 
| /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/apache-xml/src/main/java/org/apache/xml/utils/ | 
| DefaultErrorHandler.java | 47    * if this flag is set to true, we will rethrow the exception on 112    * @param exception The warning information encapsulated in a
 113    *                  SAX parse exception.
 114    * @throws SAXException Any SAX exception, possibly
 115    *            wrapping another exception.
 117   public void warning(SAXParseException exception) throws SAXException
 121     printLocation(pw, exception);
 122     pw.println("Parser warning: " + exception.getMessage());
 141    * @param exception The error information encapsulated in a
 142    *                  SAX parse exception
 [all...]
 | 
| /external/chromium_org/components/crash/app/ | 
| hard_error_handler_win.cc | 33 // We assume that exception codes are NT_STATUS codes. 102   long exception = ex_info->ExceptionRecord->ExceptionCode;  local
 103   if (exception == kExceptionModuleNotFound) {
 106   } else if (exception == kExceptionEntryPtNotFound) {
 109   } else if (FacilityFromException(exception) == FACILITY_GRAPHICS_KERNEL) {
 111     RaiseHardErrorMsg(exception, std::string(), std::string());
 
 | 
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ | 
| V8ThrowException.cpp | 66     v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate);  local 68     if (exception.IsEmpty())
 72     v8::Handle<v8::Value> error = v8::Exception::Error(v8String(isolate, domException->message()));
 74     ASSERT(exception->IsObject());
 75     exception->ToObject()->SetAccessor(v8AtomicString(isolate, "stack"), domExceptionStackGetter, domExceptionStackSetter, error);
 77     return exception;
 83     v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, creationContext, isolate);  local
 84     if (exception.IsEmpty())
 87     return V8ThrowException::throwException(exception, isolate);
 92     return v8::Exception::Error(v8String(isolate, message.isNull() ? "Error" : message))
 97  v8::Handle<v8::Value> exception = V8ThrowException::createGeneralError(message, isolate);  local
 108  v8::Handle<v8::Value> exception = V8ThrowException::createTypeError(message, isolate);  local
 119  v8::Handle<v8::Value> exception = V8ThrowException::createRangeError(message, isolate);  local
 130  v8::Handle<v8::Value> exception = V8ThrowException::createSyntaxError(message, isolate);  local
 141  v8::Handle<v8::Value> exception = V8ThrowException::createReferenceError(message, isolate);  local
 [all...]
 | 
| /external/chromium_org/tools/grit/grit/ | 
| grd_reader.py | 14 from grit import exception  namespace 21 class StopParsingException(Exception):
 22   '''An exception used to stop parsing.'''
 91         raise exception.GotPathExpectedFilenameOnly()
 123         raise exception.MissingElement("root tag must be <grit-part>")
 125         raise exception.UnexpectedAttribute(
 176     grit.exception.Parsing
 192       print "parse exception: run GRIT with the -x flag to debug .grd problems"
 196     raise exception.MissingElement("root tag must be <grit>")
 
 | 
| tclib_unittest.py | 19 from grit import exception  namespace 163       raise Exception("We shouldn't get here")
 164     except exception.InvalidPlaceholderName:
 165       pass  # Expect exception to be thrown because presentation contained space
 
 | 
| clique_unittest.py | 18 from grit import exception  namespace 54       self.fail('Should have gotten exception')
 127     self.assertRaises(exception.SectionNotFound, resources.RunGatherers)
 
 | 
| /external/okhttp/okio/src/test/java/okio/ | 
| MockSink.java | 46     IOException exception = callThrows.get(log.size() - 1);  local 47     if (exception != null) throw exception;
 
 | 
| /art/test/407-arrays/src/ | 
| Main.java | 99     ArrayIndexOutOfBoundsException exception = null;  local 103       exception = e;
 106     assertNotNull(exception);
 107     assertTrue(exception.toString().contains(Integer.toString(index)));
 109     exception = null;
 113       exception = e;
 116     assertNotNull(exception);
 117     assertTrue(exception.toString().contains(Integer.toString(index)));
 
 | 
| /development/ndk/sources/android/libportable/arch-mips/ | 
| fenv.c | 25     int exception = flags & FE_ALL_EXCEPT_PORTABLE;  local 27     // exception flags
 28     if (exception & FE_INVALID_PORTABLE)
 30     if (exception & FE_DIVBYZERO_PORTABLE)
 32     if (exception & FE_OVERFLOW_PORTABLE)
 34     if (exception & FE_UNDERFLOW_PORTABLE)
 36     if (exception & FE_INEXACT_PORTABLE)
 69     int exception = mipsflags & FE_ALL_EXCEPT;  local
 71     // exception flags
 72     if (exception & FE_INVALID
 [all...]
 | 
| /development/ndk/sources/android/libportable/arch-mips64/ | 
| fenv.c | 24   int exception = flags & FE_ALL_EXCEPT_PORTABLE;  local 26   // exception flags
 27   if (exception & FE_INVALID_PORTABLE)
 29   if (exception & FE_DIVBYZERO_PORTABLE)
 31   if (exception & FE_OVERFLOW_PORTABLE)
 33   if (exception & FE_UNDERFLOW_PORTABLE)
 35   if (exception & FE_INEXACT_PORTABLE)
 66   int exception = mips64flags & FE_ALL_EXCEPT;  local
 68   // exception flags
 69   if (exception & FE_INVALID
 [all...]
 | 
| /development/ndk/sources/android/libportable/arch-x86_64/ | 
| fenv.c | 36   int exception = flag & FE_ALL_EXCEPT_PORTABLE;  local 38   if (exception & FE_INVALID_PORTABLE)
 40   if (exception & FE_DIVBYZERO_PORTABLE)
 42   if (exception & FE_OVERFLOW_PORTABLE)
 44   if (exception & FE_UNDERFLOW_PORTABLE)
 46   if (exception & FE_INEXACT_PORTABLE)
 80   int exception = x86_64flag & FE_ALL_EXCEPT;  local
 82   if (exception & FE_INVALID)
 84   if (exception & FE_DIVBYZERO)
 86   if (exception & FE_OVERFLOW
 [all...]
 | 
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ | 
| ExceptionWithLocationTest.java | 28  * JDWP Unit test for caught EXCEPTION event with LocationOnly modifier. 33     // Cache exception class ID.
 37      * This testcase is for caught EXCEPTION event with LocationOnly
 41      * The test verifies that requested EXCEPTION event occurs in the
 47         runEventWithLocationTest(JDWPConstants.EventKind.EXCEPTION);
 81         TaggedObject exception = eventException.getException();  local
 82         assertEquals(JDWPConstants.Tag.OBJECT_TAG, exception.tag);
 84         long thrownExceptionClassId = getObjectReferenceType(exception.objectID);
 85         assertEquals("Received incorrect exception",
 
 | 
| /external/apache-xml/src/main/java/org/apache/xpath/ | 
| XPathException.java | 28  * This class implements an exception object that all 63   /** A nested exception.
 65   protected Exception m_exception;
 140    * the error originated from, and another exception
 141    * that caused this exception.
 144    * @param e The exception that caused this exception.
 146   public XPathException(String message, Node styleNode, Exception e)
 157    * an error message, and another exception
 158    * that caused this exception
 188  Throwable exception = m_exception;  local
 221  Throwable exception = m_exception;  local
 281  Throwable exception = m_exception;  local
 [all...]
 | 
| /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ | 
| ScreenOrientation.cpp | 155         RefPtrWillBeRawPtr<DOMException> exception = DOMException::create(InvalidStateError, "The object is no longer associated to a document.");  local 156         resolver->reject(exception);
 161         RefPtrWillBeRawPtr<DOMException> exception = DOMException::create(SecurityError, "The document is sandboxed and lacks the 'allow-orientation-lock' flag.");  local
 162         resolver->reject(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(
 
 | 
| chrome_scaled_image_unittest.py | 14 from grit import exception  namespace 138     self.assertRaises(exception.FileNotFound,
 165           self.assertRaises(exception.FileNotFound, _RunBuildTest, *args)
 168     self.assertRaises(exception.FileNotFound,
 
 | 
| rc.py | 12 from grit import exception  namespace 93       raise exception.SectionNotFound('%s in file %s' % (self.extkey, self.rc_file))
 309       raise exception.SectionNotFound('%s in file %s' % (self.extkey, self.rc_file))
 
 |