• Home
  • Raw
  • Download

Lines Matching refs:exception

117 …terNames[], JSStringRef body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception)  in JSObjectMakeFunction()  argument
132 if (exception) in JSObjectMakeFunction()
133 *exception = toRef(exec, exec->exception()); in JSObjectMakeFunction()
140 …Array(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectMakeArray() argument
157 if (exception) in JSObjectMakeArray()
158 *exception = toRef(exec, exec->exception()); in JSObjectMakeArray()
166 …eDate(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectMakeDate() argument
178 if (exception) in JSObjectMakeDate()
179 *exception = toRef(exec, exec->exception()); in JSObjectMakeDate()
187 …Error(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectMakeError() argument
199 if (exception) in JSObjectMakeError()
200 *exception = toRef(exec, exec->exception()); in JSObjectMakeError()
208 …egExp(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectMakeRegExp() argument
220 if (exception) in JSObjectMakeRegExp()
221 *exception = toRef(exec, exec->exception()); in JSObjectMakeRegExp()
262 …tGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) in JSObjectGetProperty() argument
272 if (exception) in JSObjectGetProperty()
273 *exception = toRef(exec, exec->exception()); in JSObjectGetProperty()
279 …JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception) in JSObjectSetProperty() argument
297 if (exception) in JSObjectSetProperty()
298 *exception = toRef(exec, exec->exception()); in JSObjectSetProperty()
303 …ropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception) in JSObjectGetPropertyAtIndex() argument
313 if (exception) in JSObjectGetPropertyAtIndex()
314 *exception = toRef(exec, exec->exception()); in JSObjectGetPropertyAtIndex()
321 …ontextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef value, JSValueRef* exception) in JSObjectSetPropertyAtIndex() argument
332 if (exception) in JSObjectSetPropertyAtIndex()
333 *exception = toRef(exec, exec->exception()); in JSObjectSetPropertyAtIndex()
338 …leteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) in JSObjectDeleteProperty() argument
348 if (exception) in JSObjectDeleteProperty()
349 *exception = toRef(exec, exec->exception()); in JSObjectDeleteProperty()
388 … JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectCallAsFunction() argument
411 if (exception) in JSObjectCallAsFunction()
412 *exception = toRef(exec, exec->exception()); in JSObjectCallAsFunction()
426 …ctx, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) in JSObjectCallAsConstructor() argument
444 if (exception) in JSObjectCallAsConstructor()
445 *exception = toRef(exec, exec->exception()); in JSObjectCallAsConstructor()