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

  /external/webkit/Source/JavaScriptCore/runtime/
FunctionConstructor.h 39 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
40 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&);
FunctionConstructor.cpp 52 return JSValue::encode(constructFunction(exec, asInternalFunction(exec->callee())->globalObject(), args));
64 return JSValue::encode(constructFunction(exec, asInternalFunction(exec->callee())->globalObject(), args));
75 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber)
113 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args)
115 return constructFunction(exec, globalObject, args, Identifier(exec, "anonymous"), UString(), 1);
  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 111 Function *constructFunction(const ValueSet &inputs,
  /external/webkit/Source/WebCore/bindings/js/
JSLazyEventListener.cpp 100 JSObject* jsFunction = constructFunction(exec, exec->lexicalGlobalObject(), args, Identifier(exec, stringToUString(m_functionName)), stringToUString(m_sourceURL), m_lineNumber); // FIXME: is globalExec ok?
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 287 /// constructFunction - make a function based on inputs and outputs, as follows:
290 Function *CodeExtractor::constructFunction(const ValueSet &inputs,
731 Function *newFunction = constructFunction(inputs, outputs, header,
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 127 JSObject* result = constructFunction(exec, exec->lexicalGlobalObject(), args, nameID, sourceURL->ustring(), startingLineNumber);

Completed in 240 milliseconds