Lines Matching refs:stack
47 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(obj); in StackConstructor() local
48 stack->SetTop(-1); in StackConstructor()
70 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in IsEmpty() local
71 bool judge = stack->Empty(); in IsEmpty()
117 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Peek() local
118 JSTaggedValue jsValue = stack->Peek(); in Peek()
142 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Locate() local
143 int num = stack->Search(value); in Locate()
165 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Pop() local
166 JSTaggedValue jsValue = stack->Pop(); in Pop()
188 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(thisHandle); in ForEach() local
189 uint32_t len = stack->GetSize(); in ForEach()
206 JSTaggedValue kValue = stack->Get(k); in ForEach()