Lines Matching refs:tChild
332 miOverlayTreePtr pTree = NULL, tLast, tChild;
411 tChild = pTree->parent->lastChild;
415 if (tChild->pWin->viewable) {
416 if (RegionBroken(&tChild->pWin->winSize))
417 SetWinSize(tChild->pWin);
418 if (RegionBroken(&tChild->pWin->borderSize))
419 SetBorderSize(tChild->pWin);
421 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)
438 tChild = tChild->prevSib;
462 miOverlayTreePtr tChild;
521 tChild = tParent;
523 if (tChild->pWin->viewable) {
524 if (tChild->visibility != VisibilityFullyObscured) {
525 RegionTranslate(&tChild->borderClip, dx, dy);
526 RegionTranslate(&tChild->clipList, dx, dy);
528 tChild->pWin->drawable.serialNumber =
531 (*pScreen->ClipNotify) (tChild->pWin, dx, dy);
533 if (tChild->valdata) {
534 RegionNull(&tChild->valdata->borderExposed);
535 if (HasParentRelativeBorder(tChild->pWin)) {
536 RegionSubtract(&tChild->valdata->borderExposed,
537 &tChild->borderClip,
538 &tChild->pWin->winSize);
540 RegionNull(&tChild->valdata->exposed);
542 if (tChild->firstChild) {
543 tChild = tChild->firstChild;
547 while (!tChild->nextSib && (tChild != tParent))
548 tChild = tChild->parent;
549 if (tChild == tParent)
551 tChild = tChild->nextSib;
593 if ((tChild = tParent->firstChild) && pParent->mapped) {
597 for (; tChild; tChild = tChild->nextSib) {
598 if (tChild->pWin->viewable)
599 RegionAppend(&childUnion, &tChild->pWin->borderSize);
604 for (tChild = tParent->firstChild; tChild; tChild = tChild->nextSib) {
605 if (tChild->pWin->viewable) {
606 if (tChild->valdata) {
608 &tChild->pWin->borderSize);
609 miOverlayComputeClips(tChild->pWin, &childUniverse,
614 &tChild->pWin->borderSize);
727 miOverlayTreePtr tParent, tChild, tWin;
749 tChild = MIOVERLAY_GET_WINDOW_TREE(pChild);
751 tChild = tParent->firstChild;
758 for (tWin = tParent->firstChild; tWin != tChild; tWin = tWin->nextSib) {
765 for (tWin = tChild; tWin; tWin = tWin->nextSib) {
775 for (tWin = tChild; tWin; tWin = tWin->nextSib) {
1068 miOverlayTreePtr tChild, pTree;
1129 if ((tChild = MIOVERLAY_GET_WINDOW_TREE(pChild))) {
1131 gravitate2[g], &tChild->borderClip);
1744 miOverlayTreePtr parent, prevSib, tChild;
1747 prevSib = tChild = NULL;
1761 prevSib = tChild = DoLeaf(pChild, parent, prevSib);
1765 parent = tChild;
1777 prevSib = tChild = MIOVERLAY_GET_WINDOW_TREE(pChild);
1778 parent = tChild->parent;