Lines Matching refs:tChild
334 miOverlayTreePtr pTree = NULL, tLast, tChild;
410 tChild = pTree->parent->lastChild;
414 if(tChild->pWin->viewable) {
415 if (RegionBroken(&tChild->pWin->winSize))
416 SetWinSize (tChild->pWin);
417 if (RegionBroken(&tChild->pWin->borderSize))
418 SetBorderSize (tChild->pWin);
420 if(RegionContainsRect(&(tChild->pWin->borderSize), box))
422 MARK_UNDERLAY(tChild->pWin);
427 if(tChild->lastChild) {
428 tChild = tChild->lastChild;
432 while(!tChild->prevSib && (tChild != tLast))
433 tChild = tChild->parent;
435 if(tChild == tLast) break;
437 tChild = tChild->prevSib;
464 miOverlayTreePtr tChild;
523 tChild = tParent;
525 if (tChild->pWin->viewable) {
526 if (tChild->visibility != VisibilityFullyObscured) {
527 RegionTranslate(&tChild->borderClip, dx, dy);
528 RegionTranslate(&tChild->clipList, dx, dy);
530 tChild->pWin->drawable.serialNumber =
533 (* pScreen->ClipNotify) (tChild->pWin, dx, dy);
535 if (tChild->valdata) {
536 RegionNull(&tChild->valdata->borderExposed);
537 if (HasParentRelativeBorder(tChild->pWin)){
538 RegionSubtract(&tChild->valdata->borderExposed,
539 &tChild->borderClip,
540 &tChild->pWin->winSize);
542 RegionNull(&tChild->valdata->exposed);
544 if (tChild->firstChild) {
545 tChild = tChild->firstChild;
549 while (!tChild->nextSib && (tChild != tParent))
550 tChild = tChild->parent;
551 if (tChild == tParent)
553 tChild = tChild->nextSib;
594 if ((tChild = tParent->firstChild) && pParent->mapped) {
598 for (; tChild; tChild = tChild->nextSib) {
599 if (tChild->pWin->viewable)
600 RegionAppend(&childUnion, &tChild->pWin->borderSize);
605 for (tChild = tParent->firstChild;
606 tChild;
607 tChild = tChild->nextSib)
609 if (tChild->pWin->viewable) {
610 if (tChild->valdata) {
612 &tChild->pWin->borderSize);
613 miOverlayComputeClips (tChild->pWin, &childUniverse,
618 &tChild->pWin->borderSize);
736 miOverlayTreePtr tParent, tChild, tWin;
757 tChild = MIOVERLAY_GET_WINDOW_TREE(pChild);
759 tChild = tParent->firstChild;
769 for (tWin = tParent->firstChild; tWin != tChild; tWin = tWin->nextSib) {
776 for(tWin = tChild; tWin; tWin = tWin->nextSib) {
786 for(tWin = tChild; tWin; tWin = tWin->nextSib) {
1116 miOverlayTreePtr tChild, pTree;
1179 if((tChild = MIOVERLAY_GET_WINDOW_TREE(pChild))) {
1181 gravitate2[g], &tChild->borderClip);
1826 miOverlayTreePtr parent, prevSib, tChild;
1829 prevSib = tChild = NULL;
1843 prevSib = tChild = DoLeaf(pChild, parent, prevSib);
1847 parent = tChild;
1858 prevSib = tChild = MIOVERLAY_GET_WINDOW_TREE(pChild);
1859 parent = tChild->parent;