Searched refs:stackTop (Results 1 – 10 of 10) sorted by relevance
/third_party/parse5/packages/parse5/lib/parser/ |
D | open-element-stack.js | 124 this.stackTop = -1; 137 for (let i = this.stackTop; i >= 0; i--) { 152 this.current = this.items[this.stackTop]; 160 this.items[++this.stackTop] = element; 169 this.stackTop--; 183 if (idx === this.stackTop) { 193 if (insertionIdx === ++this.stackTop) { 199 while (this.stackTop > -1) { 212 while (this.stackTop > -1) { 224 while (this.stackTop > -1) { [all …]
|
D | index.js | 506 return this.openElements.stackTop === 0 && this.fragmentContext 756 for (let i = this.openElements.stackTop, last = false; i >= 0; i--) { 842 for (let i = this.openElements.stackTop; i >= 0; i--) { 991 for (let i = p.openElements.stackTop; i >= 0; i--) { 1494 for (let i = p.openElements.stackTop; i >= 0; i--) { 2063 for (let i = p.openElements.stackTop; i > 0; i--) { 2764 const prevOpenElement = p.openElements.items[p.openElements.stackTop - 1]; 3021 for (let i = p.openElements.stackTop; i > 0; i--) {
|
/third_party/parse5/packages/parse5/test/ |
D | open-element-stack.test.js | 20 assert.strictEqual(stack.stackTop, -1); 25 assert.strictEqual(stack.stackTop, 0); 30 assert.strictEqual(stack.stackTop, 1); 42 assert.strictEqual(stack.stackTop, 0); 47 assert.strictEqual(stack.stackTop, -1); 60 assert.strictEqual(stack.stackTop, 1); 72 assert.strictEqual(stack.stackTop, 2); 76 assert.strictEqual(stack.stackTop, 3); 92 assert.strictEqual(stack.stackTop, -1); 99 assert.strictEqual(stack.stackTop, 0); [all …]
|
/third_party/parse5/packages/parse5/lib/extensions/location-info/ |
D | open-element-stack-mixin.js | 20 for (let i = this.stackTop; i > 0; i--) {
|
D | parser-mixin.js | 88 for (let i = this.openElements.stackTop; i >= 0; i--) { 110 for (let i = this.openElements.stackTop; i >= 0; i--) {
|
/third_party/cmsis/CMSIS/Core/Include/ |
D | cmsis_armclang.h | 149 __STATIC_FORCEINLINE void __TZ_set_STACKSEAL_S (uint32_t* stackTop) { in __TZ_set_STACKSEAL_S() argument 150 *((uint64_t *)stackTop) = __TZ_STACK_SEAL_VALUE; in __TZ_set_STACKSEAL_S()
|
D | cmsis_iccarm.h | 283 __STATIC_FORCEINLINE void __TZ_set_STACKSEAL_S (uint32_t* stackTop) { in __TZ_set_STACKSEAL_S() argument 284 *((uint64_t *)stackTop) = __TZ_STACK_SEAL_VALUE; in __TZ_set_STACKSEAL_S()
|
D | cmsis_armclang_ltm.h | 149 __STATIC_FORCEINLINE void __TZ_set_STACKSEAL_S (uint32_t* stackTop) { in __TZ_set_STACKSEAL_S() argument 150 *((uint64_t *)stackTop) = __TZ_STACK_SEAL_VALUE; in __TZ_set_STACKSEAL_S()
|
D | cmsis_gcc.h | 199 __STATIC_FORCEINLINE void __TZ_set_STACKSEAL_S (uint32_t* stackTop) { in __TZ_set_STACKSEAL_S() argument 200 *((uint64_t *)stackTop) = __TZ_STACK_SEAL_VALUE; in __TZ_set_STACKSEAL_S()
|
/third_party/expat/lib/ |
D | xmlparse.c | 7411 XML_Content *stackTop = stackBottom; /* i.e. stack is initially empty */ in build_model() local 7415 (--stackTop)->numchildren = 0; in build_model() 7419 const int src_node = (int)(stackTop++)->numchildren; in build_model() 7446 stackTop -= dest->numchildren; in build_model() 7449 (stackTop + i)->numchildren = (unsigned int)cn; in build_model()
|