Home
last modified time | relevance | path

Searched refs:asFunction (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/JavaScriptCore/debugger/
DDebuggerCallFrame.cpp50 return &asFunction(function)->name(m_callFrame); in functionName()
62 return asFunction(function)->calculatedDisplayName(m_callFrame); in calculatedFunctionName()
DDebugger.cpp70 JSFunction* function = asFunction(cell); in operator ()()
/external/webkit/Source/JavaScriptCore/runtime/
DJSFunction.h110 JSFunction* asFunction(JSValue);
112 inline JSFunction* asFunction(JSValue value) in asFunction() function
DArguments.h131 function = asFunction(callFrame->callee()); in getArgumentsData()
192 ASSERT(!asFunction(callFrame->callee())->jsExecutable()->parameterCount()); in Arguments()
211 d->callee.set(callFrame->globalData(), this, asFunction(callFrame->callee())); in Arguments()
DJSFunction.cpp162 JSFunction* thisObj = asFunction(slotBase); in argumentsGetter()
169 JSFunction* thisObj = asFunction(slotBase); in callerGetter()
176 JSFunction* thisObj = asFunction(slotBase); in lengthGetter()
DArrayPrototype.cpp668 JSFunction* f = asFunction(function); in arrayProtoFuncFilter()
726 JSFunction* f = asFunction(function); in arrayProtoFuncMap()
789 JSFunction* f = asFunction(function); in arrayProtoFuncEvery()
845 JSFunction* f = asFunction(function); in arrayProtoFuncForEach()
897 JSFunction* f = asFunction(function); in arrayProtoFuncSome()
974 CachedCall cachedCall(exec, asFunction(function), 4); in arrayProtoFuncReduce()
1049 CachedCall cachedCall(exec, asFunction(function), 4); in arrayProtoFuncReduceRight()
DFunctionPrototype.cpp89 JSFunction* function = asFunction(thisValue); in functionProtoFuncToString()
DJSGlobalData.cpp85 JSFunction* function = asFunction(cell); in operator ()()
DJSArray.cpp1089 … tree.abstractor().m_cachedCall = adoptPtr(new CachedCall(exec, asFunction(compareFunction), 2)); in sort()
DStringPrototype.cpp330 JSFunction* func = asFunction(replacement); in stringProtoFuncReplace()
/external/webkit/Source/WebCore/bindings/js/
DScriptCallStackFactory.cpp70 functionName = asFunction(function)->name(exec); in createScriptCallStack()
/external/guava/guava-tests/test/com/google/common/collect/
DInternersTest.java93 Interners.asFunction(Interners.<String>newStrongInterner()); in testAsFunction_simplistic()
/external/guava/guava/src/com/google/common/collect/
DInterners.java111 public static <E> Function<E, E> asFunction(Interner<E> interner) {
/external/webkit/Source/JavaScriptCore/profiler/
DProfiler.cpp167 JSFunction* function = asFunction(functionValue); in createCallIdentifier()
/external/webkit/Source/JavaScriptCore/jit/
DJITStubs.cpp1263 JSFunction* constructor = asFunction(callFrame->callee()); in DEFINE_STUB_FUNCTION()
1935 JSFunction* function = asFunction(stackFrame.callFrame->callee()); in DEFINE_STUB_FUNCTION()
1953 …ASSERT(asFunction(stackFrame.callFrame->callee())->getConstructData(constructData) == ConstructTyp… in DEFINE_STUB_FUNCTION()
1956 JSFunction* function = asFunction(stackFrame.callFrame->callee()); in DEFINE_STUB_FUNCTION()
1973 JSFunction* callee = asFunction(callFrame->callee()); in DEFINE_STUB_FUNCTION()
2032 JSFunction* callee = asFunction(callFrame->callee()); in DEFINE_STUB_FUNCTION()
2091 JSFunction* callee = asFunction(callFrame->callee()); in DEFINE_STUB_FUNCTION()
2125 JSFunction* callee = asFunction(callFrame->callee()); in DEFINE_STUB_FUNCTION()
2583 int32_t expectedParams = asFunction(callFrame->callee())->jsExecutable()->parameterCount(); in DEFINE_STUB_FUNCTION()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp3891 …ock, vPC + OPCODE_LENGTH(op_call), callDataScopeChain, previousCallFrame, argCount, asFunction(v)); in privateExecute()
3946 ASSERT(!asFunction(callFrame->callee())->isHostFunction()); in privateExecute()
3947 … int32_t expectedParams = asFunction(callFrame->callee())->jsExecutable()->parameterCount(); in privateExecute()
4050 … + OPCODE_LENGTH(op_call_varargs), callDataScopeChain, previousCallFrame, argCount, asFunction(v)); in privateExecute()
4262 JSFunction* constructor = asFunction(callFrame->callee()); in privateExecute()
4391 …vPC + OPCODE_LENGTH(op_construct), callDataScopeChain, previousCallFrame, argCount, asFunction(v)); in privateExecute()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-166521 (JSC::asFunction):
14808 (JSC::asFunction):
27630 (JSC::Machine::cti_op_call_profiler): Use asFunction.
28054 asArray, asActivation, asFunction. Changed code that creates call frames
28066 (JSC::Machine::cti_op_call_JSFunction): Use asFunction.
28070 (JSC::Machine::cti_op_construct_JSConstruct): Use asFunction and asObject.
28126 (JSC::call): Use asObject and asFunction.
28180 (JSC::functionProtoFuncToString): Use asFunction.
28246 (JSC::JSFunction::argumentsGetter): Use asFunction.
28252 (JSC::asFunction): Added.
DChangeLog-2010-05-242719 Don't call asFunction if callee is not a FunctionType to prevent assertion failure
21621 (JSC::DebuggerCallFrame::functionName): Call asFunction instead
21676 (JSC::PropertySlot::functionGetter): Use asFunction instead