Lines Matching defs:row
192 // row of characters assuming they start on the i'th character--the width and
359 // the text in each row is.
365 float baseline_y_delta; // position of baseline relative to previous row's baseline
366 float ymin,ymax; // height of row above and below baseline
433 // search characters in row for one that straddles 'x'
510 int first_char, length; // first char of row, and length
511 int prev_first; // first char of previous row
514 // find the x/y location of a character, and remember info about the previous row in
860 StbTexteditRow row;
878 // now find character position down a row
884 STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor);
885 x = row.x0;
886 for (i=0; i < row.num_chars; ++i) {
911 StbTexteditRow row;
929 // can only go up if there's a previous row
931 // now find character position up a row
935 STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor);
936 x = row.x0;
937 for (i=0; i < row.num_chars; ++i) {