Searched refs:maxStackSize (Results 1 – 3 of 3) sorted by relevance
/external/proguard/src/proguard/classfile/attribute/visitor/ |
D | StackSizeComputer.java | 57 private int maxStackSize; field in StackSizeComputer 90 return maxStackSize; in getMaxStackSize() 150 maxStackSize = 0; in visitCodeAttribute0() 303 if (maxStackSize < stackSize) in evaluateInstructionBlock() 305 maxStackSize = stackSize; in evaluateInstructionBlock() 345 if (maxStackSize < stackSize) in evaluateInstructionBlock() 347 maxStackSize = stackSize; in evaluateInstructionBlock()
|
/external/v8/src/inspector/ |
D | v8-stack-trace-impl.cc | 26 int maxStackSize) { in toFramesVector() argument 28 int frameCount = std::min(v8StackTrace->GetFrameCount(), maxStackSize); in toFramesVector() 183 v8::Local<v8::StackTrace> v8StackTrace, int maxStackSize) { in create() argument 191 frames = toFramesVector(debugger, v8StackTrace, maxStackSize); in create() 207 V8Debugger* debugger, int contextGroupId, int maxStackSize) { in capture() argument 213 v8StackTrace = v8::StackTrace::CurrentStackTrace(isolate, maxStackSize, in capture() 217 maxStackSize); in capture() 346 int maxStackSize) { in capture() argument 355 isolate, maxStackSize, stackTraceOptions); in capture() 356 frames = toFramesVector(debugger, v8StackTrace, maxStackSize); in capture()
|
D | v8-stack-trace-impl.h | 57 int maxStackSize); 60 int maxStackSize); 115 int maxStackSize);
|