Lines Matching refs:box
268 int box::next_uid = 0;
270 box::box() : spacing_type(ORDINARY_TYPE), uid(next_uid++) in box() function in box
274 box::~box() in ~box()
278 void box::top_level() in top_level()
282 box *b = this; in top_level()
350 void box::extra_space() in extra_space()
377 int box::compute_metrics(int) in compute_metrics()
385 void box::compute_subscript_kern() in compute_subscript_kern()
390 void box::compute_skew() in compute_skew()
395 void box::output() in output()
399 void box::check_tabs(int) in check_tabs()
403 int box::is_char() in is_char()
408 int box::left_is_italic() in left_is_italic()
413 int box::right_is_italic() in right_is_italic()
418 void box::hint(unsigned) in hint()
422 void box::handle_char_type(int, int) in handle_char_type()
427 box_list::box_list(box *pp) in box_list()
429 p = new box*[10]; in box_list()
437 void box_list::append(box *pp) in append()
440 box **oldp = p; in append()
442 p = new box*[maxlen]; in append()
443 memcpy(p, oldp, sizeof(box*)*len); in append()
463 pointer_box::pointer_box(box *pp) : p(pp) in pointer_box()
522 int box::is_simple() in is_simple()