Searched refs:hadException (Results 1 - 25 of 113) sorted by relevance

12345

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSNotAnObject.cpp44 ASSERT_UNUSED(exec, exec->hadException());
51 ASSERT_UNUSED(exec, exec->hadException());
57 ASSERT_UNUSED(exec, exec->hadException());
63 ASSERT_UNUSED(exec, exec->hadException());
68 ASSERT_UNUSED(exec, exec->hadException());
73 ASSERT_UNUSED(exec, exec->hadException());
79 ASSERT_UNUSED(exec, exec->hadException());
85 ASSERT_UNUSED(exec, exec->hadException());
H A DArrayPrototype.cpp223 if (exec->hadException())
226 if (exec->hadException())
267 if (exec->hadException())
274 if (exec->hadException())
285 if (exec->hadException())
307 if (exec->hadException())
322 if (exec->hadException())
331 if (exec->hadException())
342 if (exec->hadException())
346 if (exec->hadException())
[all...]
H A DJSPromiseConstructor.cpp139 if (exec->hadException()) {
189 if (exec->hadException())
200 if (exec->hadException())
219 if (exec->hadException())
230 if (exec->hadException())
249 if (exec->hadException())
260 if (exec->hadException())
280 if (exec->hadException())
287 if (exec->hadException())
301 if (exec->hadException())
[all...]
H A DErrorPrototype.cpp89 if (exec->hadException())
98 if (exec->hadException())
104 if (exec->hadException())
115 if (exec->hadException())
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScriptModule.cpp69 bool hadException = false; local
70 Deprecated::ScriptValue resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
71 ASSERT(!hadException);
72 if (hadException || resultValue.hasNoValue() || !resultValue.isObject()) {
77 resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
78 if (hadException || (returnsObject() && (resultValue.hasNoValue() || !resultValue.isObject()))) {
H A DInjectedScriptBase.cpp78 Deprecated::ScriptValue InjectedScriptBase::callFunctionWithEvalEnabled(Deprecated::ScriptFunctionCall& function, bool& hadException) const
92 Deprecated::ScriptValue resultValue = function.call(hadException);
110 bool hadException = false; local
111 Deprecated::ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
113 ASSERT(!hadException);
114 if (!hadException) {
H A DInjectedScript.cpp151 bool hadException = false; local
152 Deprecated::ScriptValue callFramesValue = callFunctionWithEvalEnabled(function, hadException);
153 ASSERT(!hadException);
170 bool hadException = false; local
171 Deprecated::ScriptValue r = callFunctionWithEvalEnabled(wrapFunction, hadException);
172 if (hadException)
190 bool hadException = false; local
191 Deprecated::ScriptValue r = callFunctionWithEvalEnabled(wrapFunction, hadException);
192 if (hadException)
205 bool hadException local
235 bool hadException = false; local
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSSQLTransactionSyncCustom.cpp53 if (exec->hadException())
66 if (exec->hadException())
69 if (exec->hadException())
74 if (exec->hadException())
84 if (exec->hadException())
H A DJSIDBDatabaseCustom.cpp53 if (exec->hadException())
64 if (exec->hadException())
69 if (exec->hadException())
74 if (exec->hadException())
H A DJSIDBObjectStoreCustom.cpp56 if (exec->hadException())
60 if (exec->hadException())
71 if (exec->hadException())
75 if (exec->hadException())
H A DJSSQLTransactionCustom.cpp54 if (exec->hadException())
67 if (exec->hadException())
70 if (exec->hadException())
75 if (exec->hadException())
85 if (exec->hadException())
H A DJSDeviceMotionEventCustom.cpp51 if (exec->hadException())
55 if (exec->hadException())
59 if (exec->hadException())
63 if (exec->hadException())
67 if (exec->hadException())
71 if (exec->hadException())
89 if (exec->hadException())
93 if (exec->hadException())
97 if (exec->hadException())
101 if (exec->hadException())
[all...]
H A DJSGeolocationCustom.cpp104 if (exec->hadException())
109 if (exec->hadException())
113 if (exec->hadException())
126 if (exec->hadException())
131 if (exec->hadException())
135 if (exec->hadException())
H A DJSSubtleCryptoCustom.cpp66 ASSERT(exec->hadException());
79 if (exec->hadException())
109 if (exec->hadException())
138 ASSERT(exec->hadException());
144 ASSERT(exec->hadException());
160 ASSERT(exec->hadException());
190 ASSERT(exec->hadException());
196 ASSERT(exec->hadException());
212 ASSERT(exec->hadException());
241 ASSERT(exec->hadException());
[all...]
H A DJSAudioTrackCustom.cpp47 if (exec->hadException())
60 if (exec->hadException())
H A DJSTextTrackCustom.cpp49 if (exec->hadException())
63 if (exec->hadException())
H A DJSVideoTrackCustom.cpp48 if (exec->hadException())
62 if (exec->hadException())
H A DJSNodeFilterCondition.cpp67 if (exec->hadException())
71 if (exec->hadException())
75 if (exec->hadException())
H A DJSBlobCustom.cpp76 if (exec->hadException())
97 if (exec->hadException())
107 if (exec->hadException())
117 if (exec->hadException())
128 if (exec->hadException())
H A DJSLocationCustom.cpp138 if (exec->hadException())
146 if (exec->hadException())
156 if (exec->hadException())
164 if (exec->hadException())
172 if (exec->hadException())
180 if (exec->hadException())
188 if (exec->hadException())
196 if (exec->hadException())
204 if (exec->hadException())
219 if (exec->hadException())
[all...]
H A DJSHistoryCustom.cpp129 if (exec->hadException())
133 if (exec->hadException())
139 if (exec->hadException())
155 if (exec->hadException())
159 if (exec->hadException())
165 if (exec->hadException())
H A DJSWorkerGlobalScopeCustom.cpp78 if (exec->hadException())
91 if (exec->hadException())
102 if (exec->hadException())
H A DJSMessagePortCustom.cpp73 if (exec->hadException())
78 if (exec->hadException())
/macosx-10.10/JavaScriptCore-7600.1.17/bindings/
H A DScriptFunctionCall.cpp118 Deprecated::ScriptValue ScriptFunctionCall::call(bool& hadException) argument
125 if (m_exec->hadException()) {
126 hadException = true;
143 hadException = true;
152 bool hadException = false; local
153 return call(hadException);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DTreeWalker.cpp65 if (state && state->hadException())
77 if (state && state->hadException())
110 if (state && state->hadException())
147 if (state && state->hadException())
169 if (state && state->hadException())
184 if (state && state->hadException())
206 if (state && state->hadException())
220 if (state && state->hadException())
227 if (state && state->hadException())
244 if (state && state->hadException())
[all...]

Completed in 166 milliseconds

12345