Lines Matching defs:text
91 char* text;
202 free(cs->text);
203 cs->text = NULL;
214 cs->text = malloc(cs->si.length * sizeof(*cs->text));
215 ASSERT_NOT_NULL(cs->text);
219 tty_out->handle, cs->text, cs->si.length, origin, &length));
233 start = cs->text + cs->si.width * (cursor_position.Y - 1);
237 end = cs->text + cs->si.length;
249 start = cs->text;
254 start = cs->text;
256 end = cs->text + cs->si.length;
265 ASSERT_LE(end - cs->text, cs->si.length);
273 const char* text) {
276 start = cs->text + cs->si.width * (cursor_position.Y - 1) +
278 size_t length = strlen(text);
279 size_t remain_length = cs->si.length - (cs->text - start);
281 memcpy(start, text, length);
306 ASSERT(actual->text);
308 ASSERT(expect->text);
320 if (*(actual->text + current) != *(expect->text + current)) {
327 *(expect->text + current),
328 *(actual->text + current));