Lines Matching defs:stackCount
266 int16_t stackCount = 0;
275 if (view->IsViewGroup() && stackCount < COMPONENT_NESTING_DEPTH) {
276 g_viewStack[stackCount++] = view;
283 if (--stackCount >= 0) {
284 view = g_viewStack[stackCount]->GetNextRenderSibling();
286 } while (stackCount >= 0);
338 int16_t stackCount = 0;
347 if (stackCount >= VIEW_STACK_DEPTH) {
350 g_viewStack[stackCount] = curview;
351 flags[stackCount++] = false;
356 curview = g_viewStack[--stackCount];
362 if (!flags[stackCount]) { // Back from sibling
376 flags[stackCount++] = true;
385 } while (stackCount > 0);
494 int16_t stackCount = 0;
496 while (stackCount >= 0) {
500 if (curView->IsViewGroup() && stackCount < COMPONENT_NESTING_DEPTH) {
501 g_viewStack[stackCount++] = curView;
508 if (--stackCount >= 0) {
509 curView = (g_viewStack[stackCount])->GetNextRenderSibling();
633 int16_t stackCount = 0;
685 if ((curView->IsViewGroup()) && (stackCount < COMPONENT_NESTING_DEPTH)) {
690 g_viewStack[stackCount] = curView;
691 g_maskStack[stackCount] = mask;
692 stackCount++;
721 if (--stackCount >= 0) {
723 mask = g_maskStack[stackCount];
730 if (enableAnimator && transViewGroup == g_viewStack[stackCount]) {
742 curView = g_viewStack[stackCount]->GetNextRenderSibling();
746 stackCount = 0;
759 int16_t stackCount = 0;
763 while (stackCount >= 0) {
770 if (currentView->IsViewGroup() && stackCount < COMPONENT_NESTING_DEPTH) {
771 g_viewStack[stackCount++] = currentView;
778 if (--stackCount >= 0) {
779 currentView = (g_viewStack[stackCount])->GetNextRenderSibling();