Searched defs:exception (Results 26 - 50 of 263) sorted by relevance

1234567891011

/external/v8/test/mjsunit/
H A Ddebug-clearbreakpointgroup.js34 var exception = false; variable
75 exception = e
105 "listener did not run to completion: " + exception);
117 assertFalse(exception, "exception in listener");
H A Ddebug-evaluate-locals-optimized-double.js33 var exception = false; variable
172 exception = e.toString() + e.stack;
232 assertFalse(exception, "exception in listener " + exception)
H A Ddebug-evaluate-locals-optimized.js33 var exception = false; variable
162 exception = e.toString() + e.stack;
211 assertFalse(exception, "exception in listener " + exception)
/external/v8/test/mjsunit/regress/
H A Dregress-1412.js53 var exception = false; variable
57 exception = true;
59 assertTrue(exception);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3exception.c3 * otherwise handling ANTLR3 standard exception structures.
42 * Creates a new ANTLR3 exception structure
44 * \param[in] exception
52 * ANTLR3_FREE() when the exception is destroyed.
55 * Pointer to newly initialized exception structure, or an ANTLR3_ERR_xx defined value
58 * An exception is 'thrown' by a recognizer when input is seen that is not predicted by
62 * the list and the one currently installed is pointed to by the newly installed exception.
65 * After an exception is created, you may add a pointer to your own structure and a pointer
66 * to a function to free this structure when the exception is destroyed.
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, voi argument
[all...]
/external/apache-http/src/org/apache/http/client/
H A DHttpRequestRetryHandler.java40 * recoverable exception during execution.
56 * @param exception the exception that occurred
64 boolean retryRequest(IOException exception, int executionCount, HttpContext context); argument
/external/chromium_org/ppapi/thunk/
H A Dppb_instance_private_thunk.cc38 struct PP_Var* exception) {
43 return enter.functions()->ExecuteScript(instance, script, exception);
36 ExecuteScript(PP_Instance instance, struct PP_Var script, struct PP_Var* exception) argument
/external/chromium_org/tools/grit/grit/node/
H A Dmapping.py11 from grit import exception namespace
59 raise exception.UnknownElement()
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-evaluate-locals-optimized-double.js35 var exception = false; variable
171 exception = e.toString() + e.stack;
235 assertFalse(exception, "exception in listener " + exception)
H A Ddebug-evaluate-locals-optimized.js35 var exception = false; variable
162 exception = e.toString() + e.stack;
216 assertFalse(exception, "exception in listener " + exception)
/external/clang/test/CodeGenCXX/
H A D2006-03-06-C++RecurseCrash.cpp3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptions.java9 package com.vladium.util.exception;
H A DIThrowableWrapper.java9 package com.vladium.util.exception;
18 * Any exception that wraps around another exception and wishes to be fully
39 * Every exception hierarchy implementing this interface must ensure that
48 * Every exception hierarchy implementing this interface must ensure that
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DFailure.java26 private final Throwable exception; field in class:Failure
30 this.exception = builder.exception;
37 public Throwable exception() { method in class:Failure
38 return exception;
43 private Throwable exception; field in class:Failure.Builder
50 public Builder exception(Throwable exception) { argument
51 this.exception = exception;
[all...]
/external/stlport/stlport/stl/
H A D_exception.h18 // The header <exception> contains low-level functions that interact
19 // with a compiler's exception-handling mechanism. It is assumed to
23 // On platforms where <exception> does not exist, this header defines
24 // an exception base class. This is *not* a substitute for everything
25 // in <exception>, but it suffices to support a bare minimum of STL
38 # define exception _STLP_NULLIFIED_BROKEN_EXCEPTION_CLASS macro
45 # undef exception macro
50 # include_next <exception.h>
52 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
56 # include_next <exception>
161 class _STLP_CLASS_DECLSPEC exception { class
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSyntaxMessage.java41 public RecognitionException exception; field in class:GrammarSyntaxMessage
46 RecognitionException exception)
48 this(msgID,grammar,offendingToken,null,exception);
55 RecognitionException exception)
59 this.exception = exception;
43 GrammarSyntaxMessage(int msgID, Grammar grammar, Token offendingToken, RecognitionException exception) argument
51 GrammarSyntaxMessage(int msgID, Grammar grammar, Token offendingToken, Object arg, RecognitionException exception) argument
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultHttpRequestRetryHandler.java79 final IOException exception,
82 if (exception == null) {
92 if (exception instanceof NoHttpResponseException) {
96 if (exception instanceof InterruptedIOException) {
100 if (exception instanceof UnknownHostException) {
104 if (exception instanceof SSLHandshakeException) {
105 // SSL handshake exception
78 retryRequest( final IOException exception, int executionCount, final HttpContext context) argument
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DObjectFactory.java63 //throw security exception if the calling thread is not allowed to access the
128 private Exception exception; field in class:ObjectFactory.ConfigurationError
136 * exception.
140 this.exception = x;
147 /** Returns the exception associated to this error. */
149 return exception;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDefaultErrorHandler.java47 * 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 argument
121 printLocation(pw, exception);
122 pw.println("Parser warning: " + exception.getMessage());
141 * @param exception The error information encapsulated in a
142 * SAX parse exception
146 error(SAXParseException exception) argument
173 fatalError(SAXParseException exception) argument
198 warning(TransformerException exception) argument
228 error(TransformerException exception) argument
263 fatalError(TransformerException exception) argument
278 ensureLocationSet(TransformerException exception) argument
310 printLocation(PrintStream pw, TransformerException exception) argument
315 printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception) argument
320 printLocation(PrintWriter pw, Throwable exception) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java1 package org.bouncycastle.jce.exception;
H A DExtCertPathValidatorException.java1 package org.bouncycastle.jce.exception;
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup_util.h19 bool exception; member in struct:net::tld_cleanup::Rule
/external/chromium_org/ppapi/cpp/private/
H A Dinstance_private.cc65 VarPrivate InstancePrivate::ExecuteScript(const Var& script, Var* exception) { argument
72 VarPrivate::OutException(exception).get()));
/external/chromium_org/tools/grit/grit/format/
H A Drc_header.py9 from grit import exception namespace
187 raise exception.IdRangeOverlap('ID %d was assigned to both %s and %s.'
H A Drc_header_unittest.py19 from grit import exception namespace
112 self.assertRaises(exception.IdRangeOverlap, self.FormatAll, grd)
131 self.assertRaises(exception.IdRangeOverlap, self.FormatAll, grd)

Completed in 574 milliseconds

1234567891011