HomeSort by relevance Sort by last modified time
    Searched refs:maxStackSize (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
ScriptCallStackFactory.h 45 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed);
46 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState*, size_t maxStackSize);
ScriptCallStackFactory.cpp 56 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState* exec, size_t maxStackSize)
79 if (!function || frames.size() == maxStackSize)
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCallStackFactory.cpp 63 static void toScriptCallFramesVector(v8::Handle<v8::StackTrace> stackTrace, Vector<ScriptCallFrame>& scriptCallFrames, size_t maxStackSize, bool emptyStackIsAllowed)
67 if (frameCount > static_cast<int>(maxStackSize))
68 frameCount = maxStackSize;
81 static PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize, bool emptyStackIsAllowed)
86 toScriptCallFramesVector(stackTrace, scriptCallFrames, maxStackSize, 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)
100 v8::Handle<v8::StackTrace> stackTrace(v8::StackTrace::CurrentStackTrace(maxStackSize, stackTraceOptions));
101 return createScriptCallStack(stackTrace, maxStackSize, emptyStackIsAllowed)
    [all...]
ScriptCallStackFactory.h 49 PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace>, size_t maxStackSize);
50 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed = false);
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 55 private int maxStackSize;
88 return maxStackSize;
151 maxStackSize = 0;
304 if (maxStackSize < stackSize)
306 maxStackSize = stackSize;
346 if (maxStackSize < stackSize)
348 maxStackSize = stackSize;
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 784 size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1;
785 RefPtr<ScriptCallStack> callStack(createScriptCallStack(maxStackSize));
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp     [all...]
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 364 milliseconds