Lines Matching defs:elt

666 xml_push_current_element (int elt)
668 element_stack[element_stack_index++] = elt;
672 xml_element_list[elt].name);
779 /* NOTE: We use `elt' rather than `element' in the argument list of
785 xml_insert_element_with_attribute (int elt, int arg, char *format, ...)
787 xml_insert_element_with_attribute (elt, arg, format, va_alist)
788 int elt;
804 (element_list->element_to_replace == elt) ) ||
807 (element_list->element_to_replace == elt) ) )
809 elt = element_list->element_replacing;
816 if (elt < 0)
832 if (xml_after_table_term && elt != TABLETERM && xml_table_level
839 else if (xml_after_def_term && elt != DEFINITIONTERM)
851 switch (elt)
867 if (docbook && elt == FLOAT)
870 xml_push_current_element (elt);
876 if (!strlen (xml_element_list[elt].name))
878 /*printf ("Warning: Inserting empty element %d\n", elt);*/
883 && xml_element_list[elt].contained_in_para)
886 if (arg == START && xml_in_para && !xml_element_list[elt].contained_in_para)
889 if (arg == END && xml_in_para && !xml_element_list[elt].contained_in_para)
894 && arg == START && elt != TABLEITEM && elt != TABLETERM
902 && !xml_element_list[elt].contained_in_para)
906 xml_push_current_element (elt);
912 && (xml_element_list[elt].keep_space || elt == GROUP)
918 if (arg == END && elt == ENTRY)
925 && xml_element_list[elt].contains_para)
930 if (arg == END && (elt == MENUENTRY || elt == ITEMIZE || elt == ENUMERATE
931 || elt == TABLEITEM || elt == TABLE
932 || elt == MULTITABLE || elt == TGROUP || elt == THEAD || elt == TBODY
933 || elt == ROW || elt == INFORMALFIGURE
934 || (!docbook && (elt == DEFINITION || elt == DEFINITIONTERM))))
940 insert_string (xml_element_list[elt].name);
942 /* printf ("%s ", xml_element_list[elt].name);*/
962 if (arg == START && xml_node_id && elt != NODENAME)
971 if (xml_element_list[elt].keep_space)
985 if (!xml_in_para && !xml_element_list[elt].contained_in_para
986 && xml_element_list[elt].contains_para && xml_indentation_increment > 0)
993 use `elt' rather than `element' here. */
995 xml_insert_element (int elt, int arg)
997 xml_insert_element_with_attribute (elt, arg, NULL);
1352 /* Starting generic docbook floats. Just starts elt with correct label
1355 xml_begin_docbook_float (int elt)
1359 xml_insert_element (elt, START); /* just insert the tag */
1365 if (elt == CARTOUCHE) /* no labels on <sidebar> */
1368 xml_insert_element (elt, START);
1370 xml_insert_element_with_attribute (elt, START,
1374 xml_insert_element_with_attribute (elt, START, "label=\"\"");
1376 xml_insert_element_with_attribute (elt, START,
1648 int elt = xml_in_para ? INLINEIMAGE : MEDIAOBJECT;
1657 xml_insert_element (elt, START);
1680 xml_insert_element (elt, END);
1684 if (elt == MEDIAOBJECT)