Searched refs:numrows (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/third_party/uapp/kilo/
H A Dkilo.c121 int numrows; /* Number of rows */ member in struct:editorConfig
536 if (row->hl_oc != oc && row->idx+1 < E.numrows)
607 if (at > E.numrows) return;
608 E.row = realloc(E.row,sizeof(erow)*(E.numrows+1));
609 if (at != E.numrows) {
610 memmove(E.row+at+1,E.row+at,sizeof(E.row[0])*(E.numrows-at));
611 for (int j = at+1; j <= E.numrows; j++) E.row[j].idx++;
622 E.numrows++;
638 if (at >= E.numrows) return;
641 memmove(E.row+at,E.row+at+1,sizeof(E.row[0])*(E.numrows
[all...]

Completed in 79 milliseconds