Searched refs:exception (Results 226 - 250 of 673) sorted by relevance

1234567891011>>

/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...]
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-receiver.js35 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);
H A Ddebug-stepin-function-call.js32 var exception = null;
53 exception = e;
151 assertNull(exception);
160 assertNull(exception);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DStreamGobbler.java100 exception = e;
115 private IOException exception = null; field in class:StreamGobbler
143 if (exception != null)
144 throw exception;
223 if (exception != null)
224 throw exception;
/external/webkit/Source/JavaScriptCore/API/
H A DJSValueRef.h140 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
141 @result true if the two values are equal, false if they are not equal or an exception is thrown.
143 JS_EXPORT bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception);
161 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
164 JS_EXPORT bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception);
229 @param exception
[all...]
H A DJSCallbackConstructor.cpp70 JSValueRef exception = 0; local
74 result = callback(ctx, constructorRef, argumentCount, arguments.data(), &exception);
76 if (exception)
77 throwError(exec, toJS(exec, exception));
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNodeList.c33 static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) argument
56 UNUSED_PARAM(exception);
68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) argument
72 double index = JSValueToNumber(context, JSValueMakeString(context, propertyName), exception);
H A Dminidom.c37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
59 JSValueRef exception; local
60 JSValueRef result = JSEvaluateScript(context, script, NULL, NULL, 1, &exception);
64 printf("FAIL: Test script threw exception:\n");
65 JSStringRef exceptionIString = JSValueToStringCopy(context, exception, NULL);
82 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
88 JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
/external/webkit/Source/JavaScriptCore/parser/
H A DParser.h53 PassRefPtr<ParsedNode> parse(JSGlobalObject* lexicalGlobalObject, Debugger*, ExecState*, const SourceCode& source, FunctionParameters*, JSParserStrictness strictness, JSObject** exception);
80 PassRefPtr<ParsedNode> Parser::parse(JSGlobalObject* lexicalGlobalObject, Debugger* debugger, ExecState* debuggerExecState, const SourceCode& source, FunctionParameters* parameters, JSParserStrictness strictness, JSObject** exception) argument
83 ASSERT(exception && !*exception);
111 *exception = createStackOverflowError(lexicalGlobalObject);
113 *exception = addErrorInfo(&lexicalGlobalObject->globalData(), createSyntaxError(lexicalGlobalObject, errMsg), errLine, source);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebSerializedJSValue.mm43 - (id)initWithValue:(JSValueRef)value context:(JSContextRef)sourceContext exception:(JSValueRef*)exception
59 _private->value = SerializedScriptValue::create(sourceContext, value, exception);
H A DWebDelegateImplementationCaching.mm90 } @catch(id exception) {
91 ReportDiscardedDelegateException(selector, exception);
104 } @catch(id exception) {
105 ReportDiscardedDelegateException(selector, exception);
118 } @catch(id exception) {
119 ReportDiscardedDelegateException(selector, exception);
132 } @catch(id exception) {
133 ReportDiscardedDelegateException(selector, exception);
146 } @catch(id exception) {
147 ReportDiscardedDelegateException(selector, exception);
[all...]
/external/stlport/stlport/stl/
H A D_stdexcept_base.h49 * the static C++ native runtime. In this case the std::exception base class is no more
57 # pragma warning (disable: 4275) // Non dll interface class 'exception' used as base
64 using _STLP_VENDOR_EXCEPT_STD::exception;
67 # define _STLP_EXCEPTION_BASE exception
H A D_typeinfo.h41 class bad_cast : public exception {};
74 struct bad_cast : exception {};
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebSerializedJSValue.idl38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_mock.py37 def __init__(self, output='', exit_code=0, exception=None,
42 self._exception = exception
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DJSWrapper.h49 inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception) argument
52 JSObjectSetProperty(context, object, propertyNameString.get(), JSWrapper::wrap(context, value), attributes, exception);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java1 package org.bouncycastle.jce.exception;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DAnnotatedException.java3 import org.bouncycastle.jce.exception.ExtException;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptfunction.cpp33 static JSValueRef qt_NativeFunction_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
43 Q_UNUSED(exception);
93 static JSValueRef qt_NativeFunctionWithArg_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
103 Q_UNUSED(exception);
/external/webkit/Source/WebCore/bindings/js/
H A DJSJavaScriptCallFrameCustom.cpp41 JSValue exception; local
42 JSValue result = impl()->evaluate(exec->argument(0).toString(exec), exception);
44 if (exception)
45 throwError(exec, exception);
/external/webkit/Tools/DumpRenderTree/
H A DAccessibilityTextMarker.cpp41 static JSValueRef isMarkerEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
46 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
93 static JSValueRef isMarkerRangeEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
98 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DGCController.h39 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
/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/clang/test/Analysis/
H A Dsystem-header-simulator-cxx.h49 class exception { class in namespace:std
51 exception() throw();
52 virtual ~exception() throw();

Completed in 4169 milliseconds

1234567891011>>