Home
last modified time | relevance | path

Searched refs:stackTop (Results 1 – 10 of 10) sorted by relevance

/third_party/parse5/packages/parse5/lib/parser/
Dopen-element-stack.js124 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 …]
Dindex.js506 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/
Dopen-element-stack.test.js20 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/
Dopen-element-stack-mixin.js20 for (let i = this.stackTop; i > 0; i--) {
Dparser-mixin.js88 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/
Dcmsis_armclang.h149 __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()
Dcmsis_iccarm.h283 __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()
Dcmsis_armclang_ltm.h149 __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()
Dcmsis_gcc.h199 __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/
Dxmlparse.c7411 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()