Searched refs:stackDepth (Results 1 – 8 of 8) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 76 int stackDepth = -stack[index]; in visitBytecode() local 81 stack[index] = stackDepth; in visitBytecode() 83 stackDepth = visitInst(op, ci, index, stackDepth); in visitBytecode() 84 if (stackDepth < 1) in visitBytecode() 87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) in visitBytecode() 94 --stackDepth; in visitBytecode() 99 int codeLength, int[] stack, int stackDepth, int[] jsrDepth) in processBranch() argument 105 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 112 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 116 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() [all …]
|
D | Bytecode.java | 123 private int stackDepth; field in Bytecode 143 stackDepth = 0; in Bytecode() 424 setStackDepth(stackDepth + diff); in growStack() 430 public int getStackDepth() { return stackDepth; } in getStackDepth() 440 stackDepth = depth; in setStackDepth() 441 if (stackDepth > maxStack) in setStackDepth() 442 maxStack = stackDepth; in setStackDepth()
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLElementStack.h | 83 unsigned stackDepth() const { return m_stackDepth; } in stackDepth() function
|
D | HTMLConstructionSite.h | 176 bool isEmpty() const { return !m_openElements.stackDepth(); } in isEmpty()
|
D | HTMLConstructionSite.cpp | 291 if (m_openElements.stackDepth() > maximumHTMLParserDOMTreeDepth && task.parent->parentNode()) in attachLater()
|
/external/deqp/framework/randomshaders/ |
D | rsgStatement.cpp | 40 int stackDepth = state.getStatementDepth(); in isCurrentTopStatementBlock() local 41 return dynamic_cast<const BlockStatement*>(state.getStatementStackEntry(stackDepth-1)) != DE_NULL; in isCurrentTopStatementBlock()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | SerializedScriptValue.cpp | 2573 if (stackDepth() != 1 || m_openCompositeReferenceStack.size()) in deserialize() 2595 if (stackDepth() < 1) in consumeTopOfStack() 2597 *object = element(stackDepth() - 1); in consumeTopOfStack() 2656 if (length > stackDepth()) in completeDenseArray() 2658 for (unsigned i = 0, stackPos = stackDepth() - length; i < length; i++, stackPos++) { in completeDenseArray() 2720 if (length > stackDepth()) in initializeObject() 2722 for (unsigned i = stackDepth() - length; i < stackDepth(); i += 2) { in initializeObject() 2750 unsigned stackDepth() const { return m_stack.size(); } in stackDepth() function in WebCore::__anona12e75660111::FINAL
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptCanvasModuleSource.js | 3370 var stackDepth = 1; 3374 ++stackDepth; 3376 --stackDepth; 3377 if (!stackDepth)
|