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

12345678910

/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp24 void Matcher::print(raw_ostream &OS, unsigned indent) const {
25 printImpl(OS, indent);
27 return Next->print(OS, indent);
99 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
100 OS.indent(indent) << "Scope\n";
103 OS.indent(indent+1) << "NULL POINTER\n";
105 getChild(i)->print(OS, indent+2);
109 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) cons
[all...]
/freebsd-9.3-release/contrib/binutils/gas/
H A Ddebug.c52 dmp_frag (fp, indent)
54 char *indent;
58 printf ("%sFRAGMENT @ 0x%x\n", indent, fp);
62 printf ("%srs_align(%d)\n", indent, fp->fr_offset);
65 printf ("%srs_fill(%d)\n", indent, fp->fr_offset);
66 printf ("%s", indent);
68 printf ("%s\t repeated %d times,", indent, fp->fr_offset);
72 printf ("%srs_org(%d+sym @0x%x)\n", indent,
74 printf ("%sfill with ", indent);
79 printf ("%smachine_dep\n", indent);
[all...]
/freebsd-9.3-release/usr.bin/indent/
H A DMakefile3 PROG= indent
4 SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dtasn_prn.c71 static int asn1_item_print_nm(BIO *out, void *fld, int indent,
74 int ASN1_item_print(BIO *out, void *fld, int indent, const ASN1_ITEM *it) argument
76 return asn1_item_print_nm(out, fld, indent, it, it->sname);
79 static int asn1_item_print_nm(BIO *out, void *fld, int indent, argument
87 BIO_printf(out, "%*s%s ABSENT\n", indent, "", name);
94 return ASN1_template_print(out, fld, indent, it->templates);
95 return asn1_primitive_print(out, fld, it->utype, indent, name);
100 return asn1_primitive_print(out, fld, str->type, indent, name);
103 BIO_printf(out, "%*s%s:EXTERNAL TYPE %s %s\n", indent, "", name,
107 BIO_printf(out, "%*s%s:COMPATIBLE TYPE %s %s\n", indent, "", nam
138 ASN1_template_print(BIO *out, void *fld, int indent, const ASN1_TEMPLATE *tt) argument
171 asn1_primitive_print(BIO *out, void *fld, long utype, int indent, const char *name) argument
[all...]
H A Dt_x509a.c70 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
78 BIO_printf(out, "%*sTrusted Uses:\n%*s", indent, "", indent + 2, "");
90 BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
93 BIO_printf(out, "%*sRejected Uses:\n%*s", indent, "", indent + 2, "");
105 BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
107 BIO_printf(out, "%*sAlias: %s\n", indent, "", aux->alias->data);
109 BIO_printf(out, "%*sKey Id: ", indent, "");
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_indent.sh3 # Try to find a GNU indent. There could be a BSD indent in front of a
4 # GNU gindent so when indent is found, keep looking.
7 indent=
19 elif test ! -n "${indent}" -a -x ${path}/indent
21 indent=${path}/indent
27 indent=${gindent}
28 elif test -n "${indent}"
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dptree.c33 cxx_print_decl (FILE *file, tree node, int indent) argument
39 indent_to (file, indent + 3);
48 indent_to (file, indent + 3);
64 cxx_print_type (FILE *file, tree node, int indent) argument
71 indent_to (file, indent + 3);
81 print_node (file, "throws", TYPE_RAISES_EXCEPTIONS (node), indent + 4);
94 indent + 4);
99 indent_to (file, indent + 3);
152 cxx_print_identifier (FILE *file, tree node, int indent) argument
154 if (indent
169 cxx_print_xnode(FILE *file, tree node, int indent) argument
[all...]
/freebsd-9.3-release/sys/kern/
H A Duipc_debug.c226 db_print_indent(int indent) argument
230 for (i = 0; i < indent; i++)
235 db_print_domain(struct domain *d, const char *domain_name, int indent) argument
238 db_print_indent(indent);
241 indent += 2;
243 db_print_indent(indent);
247 db_print_indent(indent);
252 db_print_indent(indent);
256 db_print_indent(indent);
261 db_print_indent(indent);
303 db_print_protosw(struct protosw *pr, const char *prname, int indent) argument
383 db_print_sockbuf(struct sockbuf *sb, const char *sockbufname, int indent) argument
423 db_print_socket(struct socket *so, const char *socketname, int indent) argument
[all...]
/freebsd-9.3-release/crypto/openssl/util/
H A Dsu-filter.pl8 my $indent = 0;
45 $out .= displayData($indent, 0, \@strucdata);
46 $out .= "\n$indent};\n";
52 $indent = $1;
176 my $indent = shift;
189 $item =~ s/\n/\n$indent/g;
191 $out .= $item."\n".$indent;
193 $out .= "\n".$indent.$item."\n".$indent;
195 $currline = $indent;
[all...]
/freebsd-9.3-release/contrib/gperf/src/
H A Doutput.cc187 Output_Enum (const char *indent) argument
188 : _indentation (indent) {}
933 const char * const indent = option[GLOBAL] ? "" : " "; local
937 indent, const_readonly_array,
940 indent);
966 printf ("\n%s ", indent);
974 printf("\n%s ", indent);
984 printf("\n%s ", indent);
990 printf ("\n%s };\n", indent);
1003 const char * const indent local
1101 output_keyword_entry(KeywordExt *temp, int stringpool_index, const char *indent) argument
1124 output_keyword_blank_entries(int count, const char *indent) argument
1174 const char *indent = option[GLOBAL] ? "" : " "; local
1344 const char *indent = option[GLOBAL] ? "" : " "; local
1432 output_switch_case(KeywordExt_List *list, int indent, int *jumps_away) argument
1492 output_switches(KeywordExt_List *list, int num_switches, int size, int min_hash_value, int max_hash_value, int indent) argument
1618 int indent = 8; local
1692 int indent = 8; local
1797 int indent = 8; local
[all...]
/freebsd-9.3-release/usr.sbin/devinfo/
H A Ddevinfo.c54 int indent; member in struct:indent_arg
79 * If the given indent is 0, return an indicator that a matching
91 if (ia->indent == 0)
93 for (i = 0; i < ia->indent; i++)
108 int indent, i; local
110 indent = ia->indent;
113 ia->indent = 0;
118 for (i = 0; i < indent; i++)
123 ia->indent
138 int i, indent; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_prn.c69 unsigned long flag, int indent, int supported);
73 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, argument
81 BIO_printf(out, "%*s", indent, "");
87 BIO_printf(out, "%*s", indent, "");
119 int indent)
129 return unknown_ext_print(out, ext, flag, indent, 0);
139 return unknown_ext_print(out, ext, flag, indent, 1);
147 BIO_printf(out, "%*s%s", indent, "", value);
156 BIO_printf(out, "%*s%s", indent, "", tmp);
166 X509V3_EXT_val_prn(out, nval, indent,
118 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
185 X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) argument
220 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
249 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) argument
[all...]
H A Dv3_pku.c68 int indent);
90 int indent)
92 BIO_printf(out, "%*s", indent, "");
/freebsd-9.3-release/contrib/gcc/
H A Dprint-tree.c73 print_node_brief (FILE *file, const char *prefix, tree node, int indent) argument
84 if (indent > 0)
160 /* Since this is the long way, indent to desired column. */
172 print_node (FILE *file, const char *prefix, tree node, int indent)
193 if (indent > 24)
195 print_node_brief (file, prefix, node, indent);
199 if (indent > 8 && (class == tcc_type || class == tcc_declaration))
201 print_node_brief (file, prefix, node, indent);
208 print_node_brief (file, prefix, node, indent);
218 print_node_brief (file, prefix, node, indent);
171 print_node(FILE *file, const char *prefix, tree node, int indent) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DPlistReporter.cpp40 static raw_ostream& Indent(raw_ostream& o, const unsigned indent) { argument
41 for (unsigned i = 0; i < indent; ++i) o << ' ';
48 unsigned indent, bool extend = false) {
56 Indent(o, indent) << "<dict>\n";
57 Indent(o, indent) << " <key>line</key><integer>"
59 Indent(o, indent) << " <key>col</key><integer>"
61 Indent(o, indent) << " <key>file</key><integer>"
63 Indent(o, indent) << "</dict>\n";
69 unsigned indent) {
70 Indent(o, indent) << "<arra
45 EmitLocation(raw_ostream& o, const SourceManager &SM, const LangOptions &LangOpts, SourceLocation L, const FIDMap &FM, unsigned indent, bool extend = false) argument
66 EmitRange(raw_ostream& o, const SourceManager &SM, const LangOptions &LangOpts, CharSourceRange R, const FIDMap &FM, unsigned indent) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Db_dump.c78 void *u, const char *s, int len, int indent)
93 if (indent < 0)
94 indent = 0;
95 if (indent) {
96 if (indent > 128)
97 indent = 128;
98 memset(str, ' ', indent);
100 str[indent] = '\0';
102 dump_width = DUMP_WIDTH_LESS_INDENT(indent);
165 int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent) argument
77 BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const char *s, int len, int indent) argument
181 BIO_dump_indent(BIO *bp, const char *s, int len, int indent) argument
[all...]
/freebsd-9.3-release/contrib/ofed/libsdp/config/
H A Dlibsdp_indent40 # This is the indent format used for libsdp:
49 # -cbi0 Case break indent 0
50 # -ci3 Continue indent 3 spaces
51 # -cli0 Case label indent 0 spaces
54 # -i3 Substitute indent with 3 spaces
70 eval indent -bad -bap -nbbb -nbbo -bl -bli0 -bls -cbi0 -ci3 -cli0 -ncs \
/freebsd-9.3-release/usr.sbin/lpr/filters/
H A Dlpf.c68 int indent; /* indentation length */ variable
108 indent = atoi(&cp[2]);
123 col = indent;
142 if (--col < indent)
143 col = indent;
147 col = indent;
151 col = ((col - indent) | 07) + indent + 1;
/freebsd-9.3-release/usr.sbin/mtree/
H A Dcreate.c88 int indent = 0; local
107 indent = p->fts_level * 4;
119 statf(indent, p);
123 (void)printf("%*s# %s\n", indent, "", p->fts_path);
124 (void)printf("%*s..\n", indent, "");
135 statf(indent, p);
146 statf(int indent, FTSENT *p) argument
162 offset = printf("%*s%s", indent, "", escaped_name);
164 offset = printf("%*s %s", indent, "", escaped_name);
168 if (offset > (INDENTNAMELEN + indent))
415 output(int indent, int *offset, const char *fmt, ...) argument
[all...]
/freebsd-9.3-release/usr.bin/rpcgen/
H A Drpc_cout.c170 print_ifopen(int indent, const char *name) argument
172 tabify(fout, indent);
183 print_ifsizeof(int indent, const char *prefix, const char *type) argument
185 if (indent) {
187 tabify(fout, indent);
203 print_ifclose(int indent, int brace) argument
206 tabify(fout, indent);
213 print_ifstat(int indent, const char *prefix, const char *type, relation rel, argument
224 print_ifopen(indent, "pointer");
236 print_ifopen(indent, al
389 int indent = 1; local
619 print_stat(int indent, declaration *dec) argument
639 emit_inline(int indent, declaration *decl, int flag) argument
667 emit_single_in_line(int indent, declaration *decl, int flag, relation rel) argument
[all...]
/freebsd-9.3-release/contrib/bind9/doc/misc/
H A Dformat-options.pl33 my $indent = $1;
46 $line = $indent." ".$2;
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-rpki-rtr.c133 indent_string (u_int indent) argument
144 if (sizeof(buf) < ((indent/8) + (indent %8) + 2)) {
154 while (indent >= 8) {
157 indent -= 8;
160 while (indent > 0) {
163 indent--;
178 rpki_rtr_pdu_print (const u_char *tptr, u_int indent) argument
205 indent_string(indent+2),
223 indent_string(indent
[all...]
/freebsd-9.3-release/contrib/cvs/doc/
H A Dmkman.pl114 my $indent = 0;
152 $indent += 2;
161 $indent -= 2;
162 print qq{\n.PD\n.IP "" $indent\n};
173 $_ = qq{.IP "" $indent\n} . $_;
207 # first-line indent commands at all.
236 $indent += 2;
243 $table_header = qq{.IP "$bullet" $indent\n};
248 my $hi = $indent - 2;
250 $table_footer = qq{\n.IP "" $indent};
[all...]
/freebsd-9.3-release/sbin/growfs/
H A Ddebug.c60 static unsigned int indent = 0; variable
108 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)mem, comment);
109 indent++;
118 indent--;
136 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)sb, comment);
137 indent++;
341 indent--;
359 fprintf(dbg_log, "# %d@%lx: %s\n", indent, (unsigned long)cgr, comment);
360 indent++;
394 indent
[all...]
/freebsd-9.3-release/contrib/ntp/libjsmn/example/
H A Djsondump.c12 static int dump(const char *js, jsmntok_t *t, size_t count, int indent) { argument
27 for (k = 0; k < indent; k++) printf(" ");
28 j += dump(js, t+1+j, count-j, indent+1);
30 j += dump(js, t+1+j, count-j, indent+1);
38 for (k = 0; k < indent-1; k++) printf(" ");
40 j += dump(js, t+1+j, count-j, indent+1);

Completed in 604 milliseconds

12345678910