Lines Matching defs:table
574 XawIcTableList table;
576 table = (XawIcTableList) XtMalloc(sizeof(XawIcTablePart));
577 if (table == NULL) return(NULL);
578 table->widget = w;
579 table->xic = NULL;
580 table->flg = table->prev_flg = 0;
581 table->font_set = NULL;
582 table->foreground = table->background = 0xffffffff;
583 table->bg_pixmap = 0;
584 table->cursor_position = 0xffff;
585 table->line_spacing = 0;
586 table->ic_focused = FALSE;
587 table->openic_error = FALSE;
588 return(table);
595 XawIcTableList table;
597 if ((table = CreateIcTable(w, ve)) == NULL) return(FALSE);
598 table->next = ve->ic.ic_table;
599 ve->ic.ic_table = table;