Searched refs:constructArray (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSClipboardCustom.cpp62 return constructArray(exec, 0, globalObject(), list);
H A DJSCanvasRenderingContext2DCustom.cpp103 return constructArray(exec, 0, globalObject(), list);
H A DJSJavaScriptCallFrameCustom.cpp93 return constructArray(exec, 0, globalObject(), list);
H A DJSWebGLRenderingContextCustom.cpp113 return constructArray(exec, 0, globalObject, list);
270 return constructArray(exec, 0, globalObject(), list);
389 return constructArray(exec, 0, globalObject(), list);
H A DJSDOMBinding.cpp142 return JSC::constructArray(exec, 0, globalObject, list);
H A DJSDOMBinding.h374 return JSC::constructArray(exec, 0, globalObject, list);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DArrayConstructor.cpp84 return constructArray(exec, profile, globalObject, &length, 1);
101 return constructArray(exec, 0, globalObject, args);
H A DJSGlobalObject.h495 inline JSArray* constructArray(ExecState* exec, ArrayAllocationProfile* profile, JSGlobalObject* globalObject, const ArgList& values) function in namespace:JSC
497 return ArrayAllocationProfile::updateLastAllocationFor(profile, constructArray(exec, globalObject->arrayStructureForProfileDuringAllocation(profile), values));
500 inline JSArray* constructArray(ExecState* exec, ArrayAllocationProfile* profile, const ArgList& values) function in namespace:JSC
502 return constructArray(exec, profile, exec->lexicalGlobalObject(), values);
505 inline JSArray* constructArray(ExecState* exec, ArrayAllocationProfile* profile, JSGlobalObject* globalObject, const JSValue* values, unsigned length) function in namespace:JSC
507 return ArrayAllocationProfile::updateLastAllocationFor(profile, constructArray(exec, globalObject->arrayStructureForProfileDuringAllocation(profile), values, length));
510 inline JSArray* constructArray(ExecState* exec, ArrayAllocationProfile* profile, const JSValue* values, unsigned length) function in namespace:JSC
512 return constructArray(exec, profile, exec->lexicalGlobalObject(), values, length);
H A DJSArray.h285 inline JSArray* constructArray(ExecState* exec, Structure* arrayStructure, const ArgList& values) function in namespace:JSC
301 inline JSArray* constructArray(ExecState* exec, Structure* arrayStructure, const JSValue* values, unsigned length) function in namespace:JSC
H A DStringPrototype.cpp868 return JSValue::encode(constructArray(exec, static_cast<ArrayAllocationProfile*>(0), list));
/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLLIntSlowPaths.cpp524 LLINT_RETURN(constructArray(exec, pc[4].u.arrayAllocationProfile, bitwise_cast<JSValue*>(&LLINT_OP(2)), pc[3].u.operand));
536 LLINT_RETURN(constructArray(exec, pc[4].u.arrayAllocationProfile, exec->codeBlock()->constantBuffer(pc[2].u.operand), pc[3].u.operand));
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSObjectRef.cpp170 result = constructArray(exec, static_cast<ArrayAllocationProfile*>(0), argList);
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGOperations.cpp1279 return bitwise_cast<char*>(constructArray(exec, arrayStructure, static_cast<JSValue*>(buffer), size));
1305 return bitwise_cast<char*>(constructArray(exec, arrayStructure, exec->codeBlock()->constantBuffer(start), size));
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITStubs.cpp2410 return constructArray(stackFrame.callFrame, stackFrame.args[2].arrayAllocationProfile(), reinterpret_cast<JSValue*>(&stackFrame.callFrame->registers()[stackFrame.args[0].int32()]), stackFrame.args[1].int32());
2424 return constructArray(stackFrame.callFrame, stackFrame.args[2].arrayAllocationProfile(), stackFrame.callFrame->codeBlock()->constantBuffer(stackFrame.args[0].int32()), stackFrame.args[1].int32());

Completed in 202 milliseconds