OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:functionvalue
(Results
1 - 3
of
3
) sorted by null
/external/webkit/JavaScriptCore/profiler/
Profiler.cpp
138
CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue
functionValue
, const UString& defaultSourceURL, int defaultLineNumber)
140
if (!
functionValue
)
142
if (!
functionValue
.isObject())
144
if (asObject(
functionValue
)->inherits(&JSFunction::info)) {
145
JSFunction* function = asFunction(
functionValue
);
149
if (asObject(
functionValue
)->inherits(&InternalFunction::info))
150
return CallIdentifier(static_cast<InternalFunction*>(asObject(
functionValue
))->name(exec), defaultSourceURL, defaultLineNumber);
151
return CallIdentifier(makeString("(", asObject(
functionValue
)->className(), " object)"), defaultSourceURL, defaultLineNumber);
/external/webkit/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp
87
JSValue
functionValue
= comp.value();
89
CallType callType =
functionValue
.getCallData(callData);
97
JSValue result = JSC::call(scriptState,
functionValue
, callType, callData, globalThisValue, args);
/external/webkit/JavaScriptCore/runtime/
Lookup.h
70
NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.
functionValue
; }
91
NativeFunction
functionValue
;
Completed in 101 milliseconds