OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constructFunction
(Results
1 - 5
of
5
) 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/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
87
Function *
constructFunction
(const Values &inputs,
240
///
constructFunction
- make a function based on inputs and outputs, as follows:
243
Function *CodeExtractor::
constructFunction
(const Values &inputs,
707
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 1453 milliseconds