HomeSort by relevance Sort by last modified time
    Searched defs:createScriptCallStack (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
ScriptCallStackFactory.cpp 51 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t, bool)
56 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState* exec, size_t maxStackSize)
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCallStackFactory.cpp 81 static PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize, bool emptyStackIsAllowed)
90 PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize)
92 return createScriptCallStack(stackTrace, maxStackSize, true);
95 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed)
101 return createScriptCallStack(stackTrace, maxStackSize, emptyStackIsAllowed);

Completed in 77 milliseconds