Lines Matching refs:temp
91 FLOAT_ELT *temp = float_stack; in count_floats_of_type_in_chapter() local
93 while (temp && strncmp (temp->number, chapter, l) == 0) in count_floats_of_type_in_chapter()
95 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type)) in count_floats_of_type_in_chapter()
97 temp = temp->next; in count_floats_of_type_in_chapter()
142 FLOAT_ELT *temp = float_stack; in get_float_ref() local
144 while (temp) in get_float_ref()
146 if (STREQ (id, temp->id)) in get_float_ref()
148 char *s = xmalloc (strlen (temp->type) + strlen (temp->number) + 2); in get_float_ref()
149 sprintf (s, "%s %s", temp->type, temp->number); in get_float_ref()
152 temp = temp->next; in get_float_ref()
162 FLOAT_ELT *temp; in float_type_exists() local
164 for (temp = float_stack; temp; temp = temp->next) in float_type_exists()
165 if (STREQ (temp->type, check_type) && temp->id && *temp->id) in float_type_exists()
208 FLOAT_ELT *temp = (FLOAT_ELT *) reverse_list in cm_listoffloats() local
210 FLOAT_ELT *new_start = temp; in cm_listoffloats()
220 while (temp) in cm_listoffloats()
222 if (strlen (temp->id) > 0 && STREQ (float_type, temp->type)) in cm_listoffloats()
233 add_anchor_name (temp->id, 1); in cm_listoffloats()
239 if (strlen (temp->id) > 0) in cm_listoffloats()
244 add_word (temp->number); in cm_listoffloats()
247 if (strlen (temp->title) > 0) in cm_listoffloats()
250 || strlen (temp->id) > 0) in cm_listoffloats()
253 execute_string ("%s", temp->title); in cm_listoffloats()
264 char *title = expansion (temp->title, 0); in cm_listoffloats()
290 + strlen (temp->number) + strlen (title) in cm_listoffloats()
293 sprintf (raw_entry, "%s %s", float_type, temp->number); in cm_listoffloats()
305 && strlen (temp->shorttitle) > 0) in cm_listoffloats()
306 title = expansion (temp->shorttitle, 0); in cm_listoffloats()
378 if (strlen (temp->section) > 0) in cm_listoffloats()
381 insert_string (temp->section); in cm_listoffloats()
388 insert_string (expansion (temp->section_name, 0)); in cm_listoffloats()
393 insert_string (temp->id); in cm_listoffloats()
401 temp = temp->next; in cm_listoffloats()
413 temp = new_start; in cm_listoffloats()
414 float_stack = (FLOAT_ELT *) reverse_list ((GENERIC_LIST *) temp); in cm_listoffloats()