Lines Matching refs:footnotes

98       ds_put_cstr (s, cell->footnotes[i]->marker);  in table_cell_format_footnote_markers()
104 const struct footnote **footnotes, size_t *allocated, size_t *n) in add_footnotes() argument
112 footnotes = xrealloc (footnotes, new_allocated * sizeof *footnotes); in add_footnotes()
114 footnotes[(*allocated)++] = NULL; in add_footnotes()
116 footnotes[f->idx] = f; in add_footnotes()
120 return footnotes; in add_footnotes()
127 const struct footnote **footnotes = NULL; in table_collect_footnotes() local
140 footnotes = add_footnotes (cell.footnotes, cell.n_footnotes, in table_collect_footnotes()
141 footnotes, &allocated, &n); in table_collect_footnotes()
147 footnotes = add_footnotes (title->footnotes, title->n_footnotes, in table_collect_footnotes()
148 footnotes, &allocated, &n); in table_collect_footnotes()
154 footnotes = add_footnotes (layers->layers[i].footnotes, in table_collect_footnotes()
156 footnotes, &allocated, &n); in table_collect_footnotes()
161 footnotes = add_footnotes (caption->footnotes, caption->n_footnotes, in table_collect_footnotes()
162 footnotes, &allocated, &n); in table_collect_footnotes()
166 if (footnotes[i]) in table_collect_footnotes()
167 footnotes[n_nonnull++] = footnotes[i]; in table_collect_footnotes()
169 *footnotesp = footnotes; in table_collect_footnotes()
692 cell->footnotes = pool_realloc ( in table_add_footnote()
693 table->container, cell->footnotes, in table_add_footnote()
694 (cell->n_footnotes + 1) * sizeof *cell->footnotes); in table_add_footnote()
696 cell->footnotes[cell->n_footnotes++] = f; in table_add_footnote()