Lines Matching refs:end
398 GtkTextIter start, end; in text_insert_help() local
405 gtk_text_buffer_get_bounds(buffer, &start, &end); in text_insert_help()
406 gtk_text_buffer_delete(buffer, &start, &end); in text_insert_help()
409 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help()
410 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help()
413 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help()
414 gtk_text_buffer_insert_with_tags(buffer, &end, str_get(&help), -1, tag2, in text_insert_help()
423 GtkTextIter start, end; in text_insert_msg() local
427 gtk_text_buffer_get_bounds(buffer, &start, &end); in text_insert_msg()
428 gtk_text_buffer_delete(buffer, &start, &end); in text_insert_msg()
431 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_msg()
432 gtk_text_buffer_insert_with_tags(buffer, &end, title, -1, tag1, in text_insert_msg()
435 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_msg()
436 gtk_text_buffer_insert_with_tags(buffer, &end, msg, -1, tag2, in text_insert_msg()