Searched refs:toRef (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSCTestRunnerUtils.cpp39 return toRef(exec, numberOfDFGCompiles(toJS(exec, theFunctionValueRef)));
46 return toRef(exec, setNeverInline(toJS(exec, theFunctionValueRef)));
H A DAPICallbackFunction.h47 JSContextRef execRef = toRef(exec);
48 JSObjectRef functionRef = toRef(exec->callee());
49 JSObjectRef thisObjRef = toRef(jsCast<JSObject*>(exec->thisValue().toThis(exec, NotStrictMode)));
55 arguments.uncheckedAppend(toRef(exec, exec->uncheckedArgument(i)));
77 JSContextRef ctx = toRef(exec);
78 JSObjectRef constructorRef = toRef(constructor);
86 arguments.uncheckedAppend(toRef(exec, exec->uncheckedArgument(i)));
H A DAPICast.h125 inline JSValueRef toRef(JSC::ExecState* exec, JSC::JSValue v) function
140 inline JSObjectRef toRef(JSC::JSObject* o) function
145 inline JSObjectRef toRef(const JSC::JSObject* o) function
150 inline JSContextRef toRef(JSC::ExecState* e) function
161 inline JSPropertyNameAccumulatorRef toRef(JSC::PropertyNameArray* l) function
166 inline JSContextGroupRef toRef(JSC::VM* g) function
H A DJSValueRef.cpp213 *exception = toRef(exec, exceptionValue);
255 *exception = toRef(exec, exceptionValue);
273 return toRef(exec, jsUndefined());
285 return toRef(exec, jsNull());
297 return toRef(exec, jsBoolean(value));
309 return toRef(exec, jsNumber(purifyNaN(value)));
321 return toRef(exec, jsString(exec, string->string()));
336 return toRef(exec, parser.tryLiteralParse());
339 return toRef(exec, parser.tryLiteralParse());
357 *exception = toRef(exe
[all...]
H A DJSCallbackObjectFunctions.h108 initialize(toRef(exec), toRef(this));
134 JSContextRef ctx = toRef(exec);
135 JSObjectRef thisRef = toRef(thisObject);
201 JSContextRef ctx = toRef(exec);
202 JSObjectRef thisRef = toRef(thisObject);
225 JSContextRef ctx = toRef(exec);
226 JSObjectRef thisRef = toRef(thisObject);
228 JSValueRef valueRef = toRef(exec, value);
284 JSContextRef ctx = toRef(exe
[all...]
H A DJSObjectRef.cpp95 return toRef(constructEmptyObject(exec));
101 return toRef(object);
112 return toRef(JSCallbackFunction::create(exec->vm(), exec->lexicalGlobalObject(), callAsFunction, name ? name->string() : ASCIILiteral("anonymous")));
130 return toRef(constructor);
154 *exception = toRef(exec, exceptionValue);
161 return toRef(result);
186 *exception = toRef(exec, exceptionValue);
194 return toRef(result);
214 *exception = toRef(exec, exceptionValue);
222 return toRef(resul
[all...]
H A DJSBase.cpp70 *exception = toRef(exec, evaluationException);
83 return toRef(exec, returnValue);
86 return toRef(exec, jsUndefined());
107 *exception = toRef(exec, syntaxException);
H A DJSWeakObjectMapRefPrivate.cpp77 return toRef(jsCast<JSObject*>(map->map().get(key)));
H A DJSContextRef.cpp64 return toRef(VM::createContextGroup().leakRef());
84 JSContextRef contextRef = toRef(exec);
123 return JSGlobalContextCreateInGroup(toRef(&VM::sharedInstance()), globalObjectClass);
185 return toRef(jsCast<JSObject*>(exec->lexicalGlobalObject()->methodTable()->toThis(exec->lexicalGlobalObject(), exec, NotStrictMode)));
195 return toRef(&exec->vm());
H A DJSScriptRef.cpp147 *exception = toRef(exec, internalException);
151 return toRef(exec, result);
H A DJSCallbackObject.cpp67 JSObjectRef thisRef = toRef(static_cast<JSObject*>(handle.get().asCell()));
H A DJSWrapperMap.mm121 return toRef(object);
478 prototype = [JSValue valueWithJSValueRef:toRef(m_prototype.get()) inContext:m_context];
483 constructor = [JSValue valueWithJSValueRef:toRef(m_constructor.get()) inContext:m_context];
501 JSObjectSetPrototype([m_context JSGlobalContextRef], toRef(m_prototype.get()), toRef(superClassPrototype));
534 JSObjectSetPrototype([m_context JSGlobalContextRef], wrapper, toRef(prototype));
546 return [JSValue valueWithJSValueRef:toRef(m_constructor.get()) inContext:m_context];
600 return [JSValue valueWithJSValueRef:toRef(jsWrapper) inContext:m_context];
H A DJSContext.mm126 return [JSValue valueWithJSValueRef:toRef(m_exception.get()) inContext:self];
261 m_virtualMachine = [[JSVirtualMachine virtualMachineWithContextGroupRef:toRef(&globalObject->vm())] retain];
326 JSVirtualMachine *virtualMachine = [JSVirtualMachine virtualMachineWithContextGroupRef:toRef(&toJS(globalContext)->vm())];
H A DJSVirtualMachine.mm268 JSVirtualMachine *virtualMachine = [JSVMWrapperCache wrapperForJSContextGroupRef:toRef(&vm)];
291 JSVirtualMachine *virtualMachine = [JSVMWrapperCache wrapperForJSContextGroupRef:toRef(&vm)];
H A DObjCCallbackFunction.mm131 *exception = toRef(JSC::createTypeError(toJS(contextRef), ASCIILiteral("Argument does not match Objective-C Class")));
498 *exception = toRef(JSC::createTypeError(toJS(contextRef), ASCIILiteral("Objective-C blocks called as constructors must return an object.")));
564 *exception = toRef(JSC::createTypeError(toJS(contextRef), ASCIILiteral("self type check failed for Objective-C instance method")));
574 *exception = toRef(JSC::createTypeError(toJS(contextRef), ASCIILiteral("self type check failed for Objective-C instance method")));
677 return toRef(JSC::ObjCCallbackFunction::create(exec->vm(), exec->lexicalGlobalObject(), impl->name(), impl.release()));
H A DJSManagedValue.mm282 return [JSValue valueWithJSValueRef:toRef(exec, value) inContext:context];
H A DJSValue.mm801 *exception = toRef(exceptionObject);
823 *exception = toRef(exceptionObject);
/macosx-10.10/JavaScriptCore-7600.1.17/bindings/
H A DScriptValue.cpp70 return JSValueIsEqual(toRef(scriptState), toRef(scriptState, jsValue()), toRef(scriptState, anotherValue.jsValue()), nullptr);
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DScriptControllerMac.mm106 m_windowScriptObject = [WebScriptObject scriptObjectForJSObject:toRef(windowShell(pluginWorld())) originRootObject:root rootObject:root];
H A DSerializedScriptValue.cpp2658 *exception = toRef(exec, exec->exception());
2688 *exception = toRef(exec, exec->exception());
2693 return toRef(exec, value);
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDUserLib.h479 @param toRef A member from the logical volume group (can be same as fromRef)
483 bool AppleLVMMigrateVolume(AppleLVMVolumeRef volRef, AppleRAIDMemberRef toRef, CFStringRef volumeLocation);
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DSerializedPlatformRepresentationMac.mm156 return [JSValue valueWithJSValueRef:toRef(exec, array) inContext:context];
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebFrame.cpp670 return toRef(exec, toJS(exec, globalObject, nodeHandle->coreNode()));
682 return toRef(exec, toJS(exec, globalObject, rangeHandle->coreRange()));
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DWebScriptObject.mm532 return toRef([self _imp]);
553 return [WebScriptObject scriptObjectForJSObject:toRef(object) originRootObject:originRootObject rootObject:rootObject];
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp1259 JSContextRef context = toRef(coreFrame->script().globalObject(world)->globalExec());
1260 JSObjectRef windowObject = toRef(coreFrame->script().globalObject(world));

Completed in 135 milliseconds

12