Lines Matching defs:rep
80 static int do_append(LWCHAR ch, constant char *rep, POSITION pos);
700 #define STORE_CHAR(ch,a,rep,pos) \
702 if (store_char((ch),(a),(rep),(pos))) return (1); \
705 static int store_char(LWCHAR ch, int a, constant char *rep, POSITION pos)
780 if (rep == NULL)
783 rep = &cs;
787 replen = (size_t) utf_len(rep[0]); /*{{type-issue}}*/
806 add_linebuf(*rep++, a, 0);
1011 static int store_control_char(LWCHAR ch, constant char *rep, POSITION pos)
1016 STORE_CHAR(ch, AT_NORMAL, rep, pos);
1025 static int store_ansi(LWCHAR ch, constant char *rep, POSITION pos)
1030 STORE_CHAR(ch, AT_ANSI, rep, pos);
1036 STORE_CHAR(ch, AT_ANSI, rep, pos);
1066 static int store_bs(LWCHAR ch, constant char *rep, POSITION pos)
1069 return store_control_char(ch, rep, pos);
1081 static int do_append(LWCHAR ch, constant char *rep, POSITION pos)
1095 return store_ansi(ch, rep, pos);
1098 return store_bs(ch, rep, pos);
1143 rep = &linebuf.buf[linebuf.end];
1165 return store_control_char(ch, rep, pos);
1171 return store_control_char(ch, rep, pos);
1177 STORE_CHAR(ch, a, rep, pos);