HomeSort by relevance Sort by last modified time
    Searched refs:hasInstance (Results 1 - 12 of 12) sorted by null

  /external/webkit/JavaScriptCore/API/tests/
testapi.js 236 EvilExceptionObject.hasInstance = function f() { return f(); };
239 EvilExceptionObject.hasInstance = function () { return true; };
testapi.c 358 JSStringRef hasInstanceName = JSStringCreateWithUTF8CString("hasInstance");
359 JSValueRef hasInstance = JSObjectGetProperty(context, constructor, hasInstanceName, exception);
361 if (!hasInstance)
363 JSObjectRef function = JSValueToObject(context, hasInstance, exception);
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObject.h 71 virtual bool hasInstance(ExecState* exec, JSValue value, JSValue proto);
JSClassRef.h 105 JSObjectHasInstanceCallback hasInstance;
JSClassRef.cpp 70 , hasInstance(definition->hasInstance)
JSCallbackObjectFunctions.h 338 bool JSCallbackObject<Base>::hasInstance(ExecState* exec, JSValue value, JSValue)
344 if (JSObjectHasInstanceCallback hasInstance = jsClass->hasInstance) {
350 result = hasInstance(execRef, thisRef, valueRef, &exception);
JSObjectRef.h 244 @abstract hasInstance The callback invoked when an object is used as the target of an 'instanceof' expression.
250 @discussion If you named your function HasInstance, you would declare it like this:
252 bool HasInstance(JSContextRef ctx, JSObjectRef constructor, JSValueRef possibleInstance, JSValueRef* exception);
258 Standard JavaScript practice calls for objects that implement the callAsConstructor callback to implement the hasInstance callback as well.
327 @field hasInstance The callback invoked when an object is used as the target of an 'instanceof' expression.
362 JSObjectHasInstanceCallback hasInstance;
    [all...]
JSValueRef.cpp 176 bool result = jsConstructor->hasInstance(exec, jsValue, jsConstructor->get(exec, exec->propertyNames().prototype)); // false if an exception is thrown
  /external/webkit/JavaScriptCore/runtime/
JSObject.cpp 389 bool JSObject::hasInstance(ExecState* exec, JSValue value, JSValue proto)
JSObject.h 123 virtual bool hasInstance(ExecState*, JSValue, JSValue prototypeProperty);
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 150 milliseconds