| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| ScriptState.h | 51 void setException(v8::Local<v8::Value> exception) 53 m_exception.set(m_isolate, exception); 55 v8::Local<v8::Value> exception() { return m_exception.newLocal(m_isolate); } function in class:WebCore::ScriptState
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
| networktransaction_unittest.py | 37 exception = Exception("Test exception") variable in class:NetworkTransactionTest 44 raise self.exception 53 except Exception, e: 55 self.assertEqual(e, self.exception)
|
| /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.''' 86 raise exception.GotPathExpectedFilenameOnly() 118 raise exception.MissingElement("root tag must be <grit-part>") 120 raise exception.UnexpectedAttribute( 171 grit.exception.Parsing 186 print "parse exception: run GRIT with the -x flag to debug .grd problems" 190 raise exception.MissingElement("root tag must be <grit>")
|
| grd_reader_unittest.py | 16 from grit import exception namespace 271 (exception.UnexpectedContent, u'<part file="x">fnord</part>'), 272 (exception.UnexpectedChild, 280 (exception.UnexpectedAttribute, u'<grit-part file="xyz"></grit-part>'), 281 (exception.MissingElement, u'<output filename="x" type="y" />'),
|
| 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/chromium_org/v8/test/mjsunit/ |
| 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.
|
| array-reduce.js | 414 var exception = false; variable 418 exception = true; 424 assertTrue(exception); 426 exception = false; 430 exception = true; 436 assertTrue(exception); 438 exception = false; 442 exception = true; 448 assertTrue(exception); 450 exception = false [all...] |
| /external/droiddriver/src/com/google/android/droiddriver/scroll/ |
| SentinelScroller.java | 88 ElementNotFoundException exception = new ElementNotFoundException(childFinder); local 93 Logs.logfmt(Log.WARN, exception, "Scrolled %s %d times; sentinelStrategy=%s", parentFinder, 96 throw exception;
|
| /external/smack/src/org/jivesoftware/smack/util/dns/ |
| HostAddress.java | 21 private Exception exception; field in class:HostAddress 66 public void setException(Exception e) { 67 this.exception = e; 101 if (exception == null) { 105 error = exception.getMessage(); 107 return toString() + " Exception: " + error;
|
| /external/v8/test/mjsunit/ |
| 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.
|
| /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
| Log.java | 54 public void exception(Throwable t, String format, Object... args) { method in class:Log
|
| /dalvik/vm/mterp/c/ |
| gotoTargets.cpp | 594 * Jump here when the code throws an exception. 601 Object* exception; local 607 * We save off the exception and clear the exception status. While 608 * processing the exception we might need to load some Throwable 613 exception = dvmGetException(self); 614 dvmAddTrackedAlloc(exception, self); 617 ALOGV("Handling exception %s at %s:%d", 618 exception->clazz->descriptor, curMethod->name, 622 * Report the exception throw to any "subMode" watchers [all...] |
| /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...] |
| /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/content/renderer/pepper/ |
| npapi_glue.h | 78 // Convenience object for converting a PPAPI call that can throw an exception 82 // Normal usage is that you will pass the result of exception() to the 83 // PPAPI function as the exception output parameter. Then you will either 87 // Both SetResult and CheckExceptionForNoResult will throw an exception to 88 // the JavaScript library if the plugin reported an exception. SetResult 93 // The object_var parameter is the object to associate any exception with. 99 // call CheckExceptionForNoResult to do the exception checking with no result 105 // Returns true if an exception has been set. 108 // Returns a pointer to the exception. You would pass this to the PPAPI 109 // function as the exception parameter. If it is set to non-void, this objec 111 PP_Var* exception() { return &exception_; } function in class:content::PPResultAndExceptionToNPResult [all...] |
| /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))
|
| /external/chromium_org/tools/grit/grit/node/ |
| misc_unittest.py | 18 import grit.exception namespace 29 self.fail('Expected parsing exception because of duplicate names.') 30 except grit.exception.Parsing: 282 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 294 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 307 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 316 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 330 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 343 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml) 356 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml [all...] |
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| debug-blockscopes.js | 41 var exception; variable 56 exception = e; 69 exception = null; 77 assertNull(exception, test_name);
|
| /external/emma/core/java12/com/vladium/util/exception/ |
| AbstractException.java | 9 package com.vladium.util.exception; 20 * This checked exception class is designed as a base/expansion point for the 30 * <LI> exception chaining in J2SE versions prior to 1.4 39 * <CODE>com.vladium.exception.exceptions</CODE> resource bundle 40 * or your project/exception class-specific resource bundle [see 53 * catch (Exception e) 58 * where <CODE>com.vladium.util.exception.exceptions</CODE> contains: 63 * To log exception data use {@link #getMessage} or <CODE>printStackTrace</CODE> 66 * <A NAME="details"> It is also possible to use project- or exception 68 * codes in <CODE>com.vladium.exception.exceptions</CODE>. To do so, create [all...] |
| AbstractRuntimeException.java | 9 package com.vladium.util.exception; 20 * This unchecked exception class is designed as a base/expansion point for the 30 * <LI> exception chaining in J2SE versions prior to 1.4 39 * <CODE>com.vladium.exception.exceptions</CODE> resource bundle 40 * or your project/exception class-specific resource bundle [see 53 * catch (Exception e) 58 * where <CODE>com.vladium.util.exception.exceptions</CODE> contains: 63 * To log exception data use {@link #getMessage} or <CODE>printStackTrace</CODE> 66 * <A NAME="details"> It is also possible to use project- or exception 68 * codes in <CODE>com.vladium.exception.exceptions</CODE>. To do so, create [all...] |