Lines Matching refs:param2
646 static enum edit_key_code esc_seq_to_key1(int param1, int param2, char last) in esc_seq_to_key1() argument
650 if (param1 < 0 && param2 < 0) in esc_seq_to_key1()
653 if (param1 == 1 && param2 == 2) in esc_seq_to_key1()
656 if (param1 == 1 && param2 == 3) in esc_seq_to_key1()
659 if (param1 == 1 && param2 == 4) in esc_seq_to_key1()
662 if (param1 == 1 && param2 == 5) in esc_seq_to_key1()
665 if (param2 < 0) { in esc_seq_to_key1()
700 static enum edit_key_code esc_seq_to_key2(int param1, int param2, char last) in esc_seq_to_key2() argument
704 if (param1 >= 0 || param2 >= 0) in esc_seq_to_key2()
729 int param1 = -1, param2 = -1; in esc_seq_to_key() local
740 param2 = atoi(pos + 1); in esc_seq_to_key()
744 ret = esc_seq_to_key1(param1, param2, last); in esc_seq_to_key()
746 ret = esc_seq_to_key2(param1, param2, last); in esc_seq_to_key()