Lines Matching refs:itr
720 input_set_state(struct window_pane *wp, const struct input_transition *itr) in input_set_state() argument
728 if (itr->state == &input_state_ground) in input_set_state()
731 ictx->state = itr->state; in input_set_state()
741 const struct input_transition *itr; in input_parse() local
773 itr = ictx->state->transitions; in input_parse()
774 while (itr->first != -1 && itr->last != -1) { in input_parse()
775 if (ictx->ch >= itr->first && ictx->ch <= itr->last) in input_parse()
777 itr++; in input_parse()
779 if (itr->first == -1 || itr->last == -1) { in input_parse()
788 if (itr->handler != NULL && itr->handler(ictx) != 0) in input_parse()
792 if (itr->state != NULL) in input_parse()
793 input_set_state(wp, itr); in input_parse()