OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:functionvalue
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/JavaScriptCore/profiler/
Profiler.cpp
160
CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue
functionValue
, const UString& defaultSourceURL, int defaultLineNumber)
162
if (!
functionValue
)
164
if (!
functionValue
.isObject())
166
if (asObject(
functionValue
)->inherits(&JSFunction::s_info)) {
167
JSFunction* function = asFunction(
functionValue
);
171
if (asObject(
functionValue
)->inherits(&JSFunction::s_info))
172
return CallIdentifier(static_cast<JSFunction*>(asObject(
functionValue
))->name(exec), defaultSourceURL, defaultLineNumber);
173
if (asObject(
functionValue
)->inherits(&InternalFunction::s_info))
174
return CallIdentifier(static_cast<InternalFunction*>(asObject(
functionValue
))->name(exec), defaultSourceURL, defaultLineNumber);
175
return CallIdentifier(makeUString("(", asObject(
functionValue
)->className(), " object)"), defaultSourceURL, defaultLineNumber)
[
all
...]
/external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptManager.cpp
60
JSValue
functionValue
= comp.value();
62
CallType callType = getCallData(
functionValue
, callData);
70
JSValue result = JSC::call(scriptState,
functionValue
, callType, callData, globalThisValue, args);
/external/webkit/Source/JavaScriptCore/runtime/
Lookup.h
83
NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.
functionValue
; }
104
NativeFunction
functionValue
;
/external/v8/src/mips/
constants-mips.h
662
inline int
FunctionValue
() const {
737
return
FunctionValue
();
/external/eigen/unsupported/test/mpreal/
mpreal.h
[
all
...]
Completed in 271 milliseconds