Searched defs:exception (Results 76 - 100 of 263) sorted by relevance

1234567891011

/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java121 * @param exception log this cause
124 public void debug(Object message, Throwable exception) { argument
125 log(Level.FINE, String.valueOf(message), exception);
144 * @param exception log this cause
147 public void error(Object message, Throwable exception) { argument
148 log(Level.SEVERE, String.valueOf(message), exception);
167 * @param exception log this cause
170 public void fatal(Object message, Throwable exception) { argument
171 log(Level.SEVERE, String.valueOf(message), exception);
201 * @param exception lo
204 info(Object message, Throwable exception) argument
275 trace(Object message, Throwable exception) argument
298 warn(Object message, Throwable exception) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorImpl.java48 // The platform related exception
54 // The location of the exception
83 * @param exception
86 Exception exception) {
90 fException = exception;
97 * @param exception
102 Exception exception, Object relatedData, DOMLocatorImpl location) {
106 fException = exception;
141 * The related platform dependent exception if any.
85 DOMErrorImpl(short severity, String message, String type, Exception exception) argument
101 DOMErrorImpl(short severity, String message, String type, Exception exception, Object relatedData, DOMLocatorImpl location) argument
/external/chromium_org/components/breakpad/app/
H A Dhard_error_handler_win.cc31 // We assume that exception codes are NT_STATUS codes.
100 long exception = ex_info->ExceptionRecord->ExceptionCode; local
101 if (exception == kExceptionModuleNotFound) {
104 } else if (exception == kExceptionEntryPtNotFound) {
107 } else if (FacilityFromException(exception) == FACILITY_GRAPHICS_KERNEL) {
109 RaiseHardErrorMsg(exception, std::string(), std::string());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8ThrowException.cpp54 // FIXME: Handle other WebIDL exception types.
59 v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate); local
61 if (exception.IsEmpty())
67 ASSERT(exception->IsObject());
68 exception->ToObject()->SetAccessor(v8AtomicString(isolate, "stack"), domExceptionStackGetter, domExceptionStackSetter, error);
70 return exception;
76 v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, creationContext, isolate); local
77 if (exception.IsEmpty())
80 return V8ThrowException::throwError(exception, isolate);
104 v8::Handle<v8::Value> exception local
117 v8::Handle<v8::Value> exception = V8ThrowException::createTypeError(message, isolate); local
121 throwError(v8::Handle<v8::Value> exception, v8::Isolate* isolate) argument
[all...]
H A DWorkerScriptController.h67 ScriptValue exception; member in struct:WebCore::WorkerGlobalScopeExecutionState
82 // exception raised during JS execution, if the worker thread happens to run JS.
89 // Called on Worker thread when JS exits with termination exception caused by forbidExecution() request,
/external/chromium_org/tools/grit/grit/
H A Dclique_unittest.py18 from grit import exception namespace
54 self.fail('Should have gotten exception')
127 self.assertRaises(exception.SectionNotFound, resources.RunGatherers)
/external/chromium_org/tools/grit/grit/gather/
H A Dchrome_scaled_image.py12 from grit import exception namespace
97 raise exception.MissingMandatoryAttribute(
119 raise exception.FileNotFound(
H A Dchrome_scaled_image_unittest.py14 from grit import exception namespace
138 self.assertRaises(exception.FileNotFound,
165 self.assertRaises(exception.FileNotFound, _RunBuildTest, *args)
168 self.assertRaises(exception.FileNotFound,
H A Drc.py12 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/
H A Dmisc_unittest.py18 import grit.exception namespace
29 self.fail('Expected parsing exception because of duplicate names.')
30 except grit.exception.Parsing:
288 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
300 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
313 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
322 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
336 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
349 self.assertRaises(grit.exception.UnexpectedChild, grd_reader.Parse, xml)
362 self.assertRaises(grit.exception
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Darray-reduce.js414 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
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Ddebug-blockscopes.js41 var exception; variable
56 exception = e;
69 exception = null;
77 assertNull(exception, test_name);
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java9 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
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 a
70 * base exception clas
[all...]
H A DAbstractRuntimeException.java9 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
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 a
70 * base exception clas
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DAppTask.java54 private ExecutionException exception; field in class:AppTask
91 if (exception != null) {
92 throw exception;
106 if (exception != null) {
107 throw exception;
130 return finished || cancelled || (exception != null);
158 exception = new ExecutionException(e);
/external/v8/test/mjsunit/
H A Darray-reduce.js414 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
[all...]
/external/v8/test/mjsunit/harmony/
H A Ddebug-blockscopes.js41 var exception; variable
56 exception = e;
69 exception = null;
77 assertNull(exception, test_name);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3recognizersharedstate.h59 /** If set to ANTLR3_TRUE then the recognizer has an exception
68 pANTLR3_EXCEPTION exception; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DObjectFactory.java99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
255 * @exception ObjectFactory.ConfigurationError
337 // Ignore the exception.
363 // Ignore the exception.
480 //throw security exception if the calling thread is not allowed to access the
600 // Ignore the exception.
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DObjectFactory.java99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
255 * @exception ObjectFactory.ConfigurationError
337 // Ignore the exception.
363 // Ignore the exception.
480 //throw security exception if the calling thread is not allowed to access the
600 // Ignore the exception.
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DObjectFactory.java98 * @exception ObjectFactory.ConfigurationError
125 * @exception ObjectFactory.ConfigurationError
172 * @exception ObjectFactory.ConfigurationError
200 * @exception ObjectFactory.ConfigurationError
254 * @exception ObjectFactory.ConfigurationError
336 // Ignore the exception.
362 // Ignore the exception.
479 //throw security exception if the calling thread is not allowed to access the
599 // Ignore the exception.
634 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectFactory.java99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
255 * @exception ObjectFactory.ConfigurationError
337 // Ignore the exception.
363 // Ignore the exception.
480 //throw security exception if the calling thread is not allowed to access the
600 // Ignore the exception.
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DObjectFactory.java99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
255 * @exception ObjectFactory.ConfigurationError
337 // Ignore the exception.
363 // Ignore the exception.
480 //throw security exception if the calling thread is not allowed to access the
600 // Ignore the exception.
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
[all...]
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc44 bool exception; member in struct:__anon3252::Rule
67 " int type; // 1: exception, 2: wildcard\n"
75 if (i->second.exception) {
124 rule->exception = true;
197 rule.exception = false;
200 // Check the existing rules to make sure we don't have an exception and
207 // case there's an exception or wild card that either exists or might be
231 rule.exception = false;
/external/chromium_org/content/renderer/pepper/
H A Dnpapi_glue.h78 // 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 paramete
111 PP_Var* exception() { return &exception_; } function in class:content::PPResultAndExceptionToNPResult
[all...]

Completed in 526 milliseconds

1234567891011