HomeSort by relevance Sort by last modified time
    Searched refs: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);
  /hardware/ril/mock-ril/src/cpp/
mock_ril.cpp 230 v8::Handle<v8::Value> functionValue = context_->Global()->Get(name);
232 v8::Handle<v8::Function>::Cast(functionValue);
277 v8::Handle<v8::Value> functionValue = context->Global()->Get(name);
279 v8::Handle<v8::Function>::Cast(functionValue);
worker_v8.cpp 110 WorkerV8(v8::Handle<v8::Object> self, v8::Handle<v8::Value> functionValue) {
113 handler_ = new Handler(this, functionValue);
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.h 83 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
104 NativeFunction functionValue;

Completed in 71 milliseconds