Home
last modified time | relevance | path

Searched refs:HistoryBuf (Results 1 – 10 of 10) sorted by relevance

/dports/x11/kitty/kitty-0.23.1/kitty/
H A Dhistory.c18 add_segment(HistoryBuf *self) { in add_segment()
75 free_pagerhist(HistoryBuf *self) { in free_pagerhist()
100 static HistoryBuf*
106 HistoryBuf *self = (HistoryBuf *)type->tp_alloc(type, 0); in create_historybuf()
128 dealloc(HistoryBuf* self) { in dealloc()
275 __str__(HistoryBuf *self) { in __str__()
438 HistoryBuf *self;
518 INIT_TYPE(HistoryBuf) in INIT_TYPE() argument
525 #define BufType HistoryBuf
540 historybuf_rewrap(HistoryBuf *self, HistoryBuf *other, ANSIBuf *as_ansi_buf) { in historybuf_rewrap()
[all …]
H A Dlineops.h98 void linebuf_rewrap(LineBuf *self, LineBuf *other, index_type *, index_type *, HistoryBuf *, index_…
104 void historybuf_add_line(HistoryBuf *self, const Line *line, ANSIBuf*);
105 bool historybuf_pop_line(HistoryBuf *, Line *);
106 void historybuf_rewrap(HistoryBuf *self, HistoryBuf *other, ANSIBuf*);
107 void historybuf_init_line(HistoryBuf *self, index_type num, Line *l);
108 CPUCell* historybuf_cpu_cells(HistoryBuf *self, index_type num);
109 void historybuf_mark_line_clean(HistoryBuf *self, index_type y);
110 void historybuf_mark_line_dirty(HistoryBuf *self, index_type y);
111 void historybuf_refresh_sprite_positions(HistoryBuf *self);
112 void historybuf_clear(HistoryBuf *self);
H A Ddata-types.h222 } HistoryBuf; typedef
296 HistoryBuf* alloc_historybuf(unsigned int, unsigned int, unsigned int);
H A Drewrap.h58 rewrap_inner(BufType *src, BufType *dest, const index_type src_limit, HistoryBuf UNUSED *historybuf… in rewrap_inner()
H A Dscreen.h105 HistoryBuf *historybuf;
H A Dline-buf.c547 …x_type *num_content_lines_before, index_type *num_content_lines_after, HistoryBuf *historybuf, ind… in linebuf_rewrap()
589 HistoryBuf *historybuf; in rewrap()
H A Dfast_data_types.pyi910 class HistoryBuf:
948 historybuf: HistoryBuf
H A Dscreen.c198 static HistoryBuf*
199 realloc_hb(HistoryBuf *old, unsigned int lines, unsigned int columns, ANSIBuf *as_ansi_buf) { in realloc_hb()
200 HistoryBuf *ans = alloc_historybuf(lines, columns, 0); in realloc_hb()
217 …d int lines, unsigned int columns, index_type *nclb, index_type *ncla, HistoryBuf *hb, CursorTrack… in realloc_lb()
299HistoryBuf *nh = realloc_hb(self->historybuf, self->historybuf->ynum, columns, &self->as_ansi_buf); in screen_resize()
/dports/x11/kitty/kitty-0.23.1/kitty_tests/
H A Ddatatypes.py10 REVERSE, ColorProfile, Cursor as C, HistoryBuf, LineBuf,
296 hb = HistoryBuf(lb2.ynum, lb2.xnum)
431 hb = HistoryBuf(5, 5)
443 hb = large_hb = HistoryBuf(3000, 5)
455 hb2 = HistoryBuf(hb.ynum, hb.xnum)
459 hb2 = HistoryBuf(8, 5)
466 hb2 = HistoryBuf(3, 5)
472 hb2 = HistoryBuf(hb.ynum, hb.xnum * 2)
474 hb3 = HistoryBuf(hb.ynum, hb.xnum)
479 hb2 = HistoryBuf(hb.ynum, hb.xnum)
[all …]
H A D__init__.py12 Cursor, HistoryBuf, LineBuf, Screen, set_options
102 ans = HistoryBuf(ynum, xnum)