Lines Matching full:temp
89 FLOAT_ELT *temp = float_stack; in count_floats_of_type_in_chapter() local
91 while (temp && strncmp (temp->number, chapter, l) == 0) in count_floats_of_type_in_chapter()
93 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type)) in count_floats_of_type_in_chapter()
95 temp = temp->next; in count_floats_of_type_in_chapter()
140 FLOAT_ELT *temp = float_stack; in get_float_ref() local
142 while (temp) in get_float_ref()
144 if (STREQ (id, temp->id)) in get_float_ref()
146 char *s = xmalloc (strlen (temp->type) + strlen (temp->number) + 2); in get_float_ref()
147 sprintf (s, "%s %s", temp->type, temp->number); in get_float_ref()
150 temp = temp->next; in get_float_ref()
160 FLOAT_ELT *temp; in float_type_exists() local
162 for (temp = float_stack; temp; temp = temp->next) in float_type_exists()
163 if (STREQ (temp->type, check_type) && temp->id && *temp->id) in float_type_exists()
206 FLOAT_ELT *temp = (FLOAT_ELT *) reverse_list in cm_listoffloats() local
208 FLOAT_ELT *new_start = temp; in cm_listoffloats()
218 while (temp) in cm_listoffloats()
220 if (strlen (temp->id) > 0 && STREQ (float_type, temp->type)) in cm_listoffloats()
231 add_anchor_name (temp->id, 1); in cm_listoffloats()
237 if (strlen (temp->id) > 0) in cm_listoffloats()
242 add_word (temp->number); in cm_listoffloats()
245 if (strlen (temp->title) > 0) in cm_listoffloats()
248 || strlen (temp->id) > 0) in cm_listoffloats()
251 execute_string ("%s", temp->title); in cm_listoffloats()
262 char *title = expansion (temp->title, 0); in cm_listoffloats()
288 + strlen (temp->number) + strlen (title) in cm_listoffloats()
291 sprintf (raw_entry, "%s %s", float_type, temp->number); in cm_listoffloats()
303 && strlen (temp->shorttitle) > 0) in cm_listoffloats()
304 title = expansion (temp->shorttitle, 0); in cm_listoffloats()
376 if (strlen (temp->section) > 0) in cm_listoffloats()
379 insert_string (temp->section); in cm_listoffloats()
386 insert_string (expansion (temp->section_name, 0)); in cm_listoffloats()
391 insert_string (temp->id); in cm_listoffloats()
399 temp = temp->next; in cm_listoffloats()
411 temp = new_start; in cm_listoffloats()
412 float_stack = (FLOAT_ELT *) reverse_list ((GENERIC_LIST *) temp); in cm_listoffloats()