Searched refs:indent (Results 1 - 16 of 16) sorted by relevance

/inkscape/packaging/wix/
H A Dfiles.py11 def indent(level): function
30 wxs.write(indent(level)+ "<Component Id='component" + _id + "' Guid='" + str(uuid.uuid4()) + "' DiskId='1' Win64='$(var.Win64)'>\n")
34 wxs.write(indent(level + 1)+ "<File Id='file" + _id + "' Name='" + file + "' DiskId='1' Source='" + file_key + "' KeyPath='yes' />\n")
35 wxs.write(indent(level)+ "</Component>\n")
43 wxs.write(indent(level) + "<Directory Id='" + directory_ids[directory_key] + "' Name='" + dir + "'>\n")
45 wxs.write(indent(level) + "</Directory>\n")
55 wxs.write(indent(level) + "<ComponentGroup Id='" + name + "'>\n")
57 wxs.write(indent(level + 1) + "<ComponentRef Id='" + file_ids[component] + "' />\n")
58 wxs.write(indent(level) + "</ComponentGroup>\n")
65 wxs.write(indent(
[all...]
/inkscape/src/extension/param/
H A Ddescription.cpp53 const char * indent = xml->attribute("indent"); local
54 if (indent != NULL) {
55 _indent = atoi(indent) * 12;
H A Dstring.cpp88 const char * indent = xml->attribute("indent"); local
89 if (indent != NULL) {
90 _indent = atoi(indent) * 12;
H A Dbool.cpp42 const char * indent = xml->attribute("indent"); local
43 if (indent != NULL) {
44 _indent = atoi(indent) * 12;
161 indent-tabs-mode:nil
H A Denum.cpp104 const char *indent = xml->attribute("indent"); local
105 if (indent != NULL) {
106 _indent = atoi(indent) * 12;
291 indent-tabs-mode:nil
H A Dfloat.cpp72 const char * indent = xml->attribute("indent"); local
73 if (indent != NULL) {
74 _indent = atoi(indent) * 12;
H A Dint.cpp65 const char * indent = xml->attribute("indent"); local
66 if (indent != NULL) {
67 _indent = atoi(indent) * 12;
211 indent-tabs-mode:nil
H A Dradiobutton.cpp121 const char *indent = xml ? xml->attribute("indent") : NULL; local
122 if (indent != NULL) {
123 _indent = atoi(indent) * 12;
379 indent-tabs-mode:nil
/inkscape/src/xml/
H A Drepr-io.cpp58 int inlineattrs, int indent,
66 int inlineattrs, int indent,
641 int indent = prefs->getInt("/options/svgoutput/indent", 2); local
656 sp_repr_write_stream_root_element(repr, *out, TRUE, default_ns, inlineattrs, indent,
659 sp_repr_write_stream(repr, *out, 0, TRUE, GQuark(0), inlineattrs, indent,
778 static void repr_write_comment( Writer &out, const gchar * val, bool addWhitespace, gint indentLevel, int indent )
783 if (addWhitespace && indent) {
785 for (gint j = 0; j < indent; j++) {
872 int inlineattrs, int indent,
870 sp_repr_write_stream_root_element(Node *repr, Writer &out, bool add_whitespace, gchar const *default_ns, int inlineattrs, int indent, gchar const *const old_href_base, gchar const *const new_href_base) argument
923 sp_repr_write_stream( Node *repr, Writer &out, gint indent_level, bool add_whitespace, Glib::QueryQuark elide_prefix, int inlineattrs, int indent, gchar const *const old_href_base, gchar const *const new_href_base) argument
966 sp_repr_write_stream_element( Node * repr, Writer & out, gint indent_level, bool add_whitespace, Glib::QueryQuark elide_prefix, List<AttributeRecord const> attributes, int inlineattrs, int indent, gchar const *old_href_base, gchar const *new_href_base ) argument
[all...]
H A Drepr.h58 int inlineattrs, int indent,
168 indent-tabs-mode:nil
/inkscape/src/libcroco/
H A Dcr-style.c1 /* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
2661 gint indent = a_nb_indent + INTERNAL_INDENT; local
2683 cr_utils_dump_n_chars2 (' ', str, indent);
2699 cr_utils_dump_n_chars2 (' ', str, indent);
2714 cr_utils_dump_n_chars2 (' ', str, indent);
2726 cr_utils_dump_n_chars2 (' ', str, indent);
2731 cr_utils_dump_n_chars2 (' ', str, indent);
2736 cr_utils_dump_n_chars2 (' ', str, indent);
2741 cr_utils_dump_n_chars2 (' ', str, indent);
2746 cr_utils_dump_n_chars2 (' ', str, indent);
[all...]
/inkscape/src/trace/
H A Dquantize.cpp196 static void ocnodePrint(Ocnode *node, int indent)
211 for (int k = 0; k < indent; k++) printf(" ");//indentation
213 ocnodePrint(node->child[i], indent+2);
/inkscape/src/ui/widget/
H A Dpreferences-widget.h290 void add_line(bool indent, Glib::ustring const &label, Gtk::Widget& widget, Glib::ustring const &suffix, Glib::ustring const &tip, bool expand = true, Gtk::Widget *other_widget = NULL);
307 indent-tabs-mode:nil
H A Dpreferences-widget.cpp71 * \param[in] indent Whether the widget should be indented by one column
79 void DialogPage::add_line(bool indent, argument
118 // Pack the label into an alignment container so that we can indent it
122 if (indent)
138 if (indent)
992 indent-tabs-mode:nil
/inkscape/src/
H A Dsp-flowtext.cpp196 gchar const *val = sp_repr_css_property(opts, "par-indent", NULL);
342 // emulate par-indent with the first char's kern
351 double indent = ft->par_indent; local
352 if (indent != 0) {
355 sl.value = sl.computed = indent;
730 indent-tabs-mode:nil
/inkscape/
H A Dbuildtool.cpp866 void writeIndentedRecursive(FILE *f, int indent);
1066 void Element::writeIndentedRecursive(FILE *f, int indent) argument
1072 for (i=0;i<indent;i++)
1092 for (int i=0;i<indent;i++)
1098 children[i]->writeIndentedRecursive(f, indent+2);
1101 for (int i=0; i<indent; i++)

Completed in 906 milliseconds