Lines Matching refs:ptp
2750 tabpage_T *ptp = NULL; in win_close_othertab() local
2772 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next) in win_close_othertab()
2774 if (ptp == NULL || tp == curtab) in win_close_othertab()
2790 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp; in win_close_othertab()
2791 ptp = ptp->tp_next) in win_close_othertab()
2793 if (ptp == NULL) in win_close_othertab()
2798 ptp->tp_next = tp->tp_next; in win_close_othertab()
4097 tabpage_T *ptp; in close_tabpage() local
4102 ptp = first_tabpage; in close_tabpage()
4106 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tab; in close_tabpage()
4107 ptp = ptp->tp_next) in close_tabpage()
4109 assert(ptp != NULL); in close_tabpage()
4110 ptp->tp_next = tab->tp_next; in close_tabpage()
4113 goto_tabpage_tp(ptp, FALSE, FALSE); in close_tabpage()