HomeSort by relevance Sort by last modified time
    Searched defs:callAsConstructor (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/API/
JSClassRef.h 104 JSObjectCallAsConstructorCallback callAsConstructor;
JSObjectRef.h 231 @discussion If you named your function CallAsConstructor, you would declare it like this:
233 JSObjectRef CallAsConstructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
258 Standard JavaScript practice calls for objects that implement the callAsConstructor callback to implement the hasInstance callback as well.
328 @field callAsConstructor The callback invoked when an object is used as a constructor in a 'new' expression.
361 JSObjectCallAsConstructorCallback callAsConstructor;
427 @param callAsConstructor A JSObjectCallAsConstructorCallback to invoke when your constructor is used in a 'new' expression. Pass NULL to use the default object constructor.
431 JS_EXPORT JSObjectRef JSObjectMakeConstructor(JSContextRef ctx, JSClassRef jsClass, JSObjectCallAsConstructorCallback callAsConstructor);
    [all...]

Completed in 27 milliseconds