Searched defs:emptyStackIsAllowed (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCallStackFactory.cpp63 static void toScriptCallFramesVector(v8::Handle<v8::StackTrace> stackTrace, Vector<ScriptCallFrame>& scriptCallFrames, size_t maxStackSize, bool emptyStackIsAllowed) argument
73 if (!frameCount && !emptyStackIsAllowed) {
81 static PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize, bool emptyStackIsAllowed) argument
86 toScriptCallFramesVector(stackTrace, scriptCallFrames, maxStackSize, emptyStackIsAllowed);
95 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed) argument
101 return createScriptCallStack(stackTrace, maxStackSize, emptyStackIsAllowed);

Completed in 90 milliseconds