HomeSort by: relevance | last modified time | path
    Searched defs:indent (Results 1 - 25 of 157) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl3/gcc/dist/gcc/
graphviz.h 38 void indent () { m_indent++; } function in class:graphviz_out
gimple-range-trace.h 44 unsigned indent; member in class:range_tracer
  /src/external/gpl3/gcc.old/dist/gcc/
graphviz.h 38 void indent () { m_indent++; } function in class:graphviz_out
gimple-range-trace.h 44 unsigned indent; member in class:range_tracer
  /src/external/gpl3/gdb/dist/sim/ppc/
gen-semantics.c 46 int indent; local
50 indent = print_function_name(file,
55 lf_indent(file, +indent);
60 lf_indent(file, -indent);
  /src/external/gpl3/gdb.old/dist/sim/ppc/
gen-semantics.c 46 int indent; local
50 indent = print_function_name(file,
55 lf_indent(file, +indent);
60 lf_indent(file, -indent);
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
die.c 39 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
44 indent, "",
50 indent, "",
54 indent, "",
57 gdb_printf (f, "%*s attributes:\n", indent, "");
62 indent, "",
163 int indent = level * 4; local
170 dump_die_shallow (f, indent, die);
174 gdb_printf (f, "%*s Children:", indent, "");
  /src/external/gpl3/gdb.old/dist/sim/igen/
gen-engine.c 341 int indent; local
355 indent = print_function_name (file, "run", NULL, /* format name */
362 indent = 1;
365 indent += lf_printf (file, " (");
369 indent = 1;
372 lf_indent (file, +indent);
377 lf_indent (file, -indent);
gen-semantics.c 48 int indent; local
53 indent = print_function_name (file,
61 indent += lf_printf (file, " ");
62 lf_indent (file, +indent);
75 lf_indent (file, -indent);
266 /* NB: Do not indent the code. If the .igen source files cause a compiler
287 int indent = strlen (prefix);
291 lf_indent (file, +indent);
298 lf_indent (file, -indent);
286 int indent = strlen (prefix); local
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
die.c 39 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
44 indent, "",
50 indent, "",
54 indent, "",
57 gdb_printf (f, "%*s attributes:\n", indent, "");
62 indent, "",
166 int indent = level * 4; local
173 dump_die_shallow (f, indent, die);
177 gdb_printf (f, "%*s Children:", indent, "");
  /src/external/gpl3/gdb/dist/sim/igen/
gen-engine.c 341 int indent; local
355 indent = print_function_name (file, "run", NULL, /* format name */
362 indent = 1;
365 indent += lf_printf (file, " (");
369 indent = 1;
372 lf_indent (file, +indent);
377 lf_indent (file, -indent);
gen-semantics.c 48 int indent; local
53 indent = print_function_name (file,
61 indent += lf_printf (file, " ");
62 lf_indent (file, +indent);
75 lf_indent (file, -indent);
266 /* NB: Do not indent the code. If the .igen source files cause a compiler
287 int indent = strlen (prefix);
291 lf_indent (file, +indent);
298 lf_indent (file, -indent);
286 int indent = strlen (prefix); local
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
json_reporter.cc 75 std::string indent(4, ' ');
78 out << indent << FormatKV("date", walltime_value) << ",\n";
81 out << indent << FormatKV("executable", Context::executable_name) << ",\n";
85 out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus))
87 out << indent
91 out << indent << FormatKV("cpu_scaling_enabled", info.scaling_enabled)
94 out << indent << "\"caches\": [\n"; local
95 indent = std::string(6, ' ');
99 out << indent << "{\n"; local
108 out << indent << "}"; local
113 out << indent << "],\\n"; local
139 out << indent << "{\\n"; local
141 out << indent << '}'; local
    [all...]
  /src/external/mit/isl/dist/
isl_printer_private.h 33 int indent; member in struct:isl_printer
  /src/external/mit/libcbor/dist/src/
cbor.c 241 static void _cbor_nested_describe(cbor_item_t *item, FILE *out, int indent) {
245 fprintf(out, "%*s[CBOR_TYPE_UINT] ", indent, " ");
251 fprintf(out, "%*s[CBOR_TYPE_NEGINT] ", indent, " ");
257 fprintf(out, "%*s[CBOR_TYPE_BYTESTRING] ", indent, " ");
263 indent + 4);
270 fprintf(out, "%*s[CBOR_TYPE_STRING] ", indent, " ");
276 indent + 4);
283 fprintf(out, "%*s", indent + 4, " ");
291 fprintf(out, "%*s[CBOR_TYPE_ARRAY] ", indent, " ");
299 _cbor_nested_describe(cbor_array_handle(item)[i], out, indent + 4)
312 _cbor_nested_describe(cbor_map_handle(item)[i].value, out, indent + 4); local
319 _cbor_nested_describe(cbor_tag_item(item), out, indent + 4); local
    [all...]
  /src/usr.bin/sort/
init.c 164 errx(2, "cannot indent end of line");
166 col->indent = (int) strtol(pos, &npos, 10);
169 col->indent--;
170 if (col->indent < 0)
207 if (!cur_fld->tcol.indent) /* BT has no meaning at end of field */
213 /* indent if 0 -> end of field, i.e. okay */
214 && cur_fld->tcol.indent != 0
215 && cur_fld->tcol.indent < cur_fld->icol.indent))
289 int col, indent; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bio/
bf_prefix.c 47 unsigned int indent; /* Indentation amount, given by user */ member in struct:prefix_ctx_st
60 ctx->indent = 0;
94 && ctx->indent == 0) {
121 BIO_printf(BIO_next(b), "%*s", ctx->indent, "");
172 ctx->indent = (unsigned int)num;
177 ret = (long)ctx->indent;
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bf_prefix.c 47 unsigned int indent; /* Indentation amount, given by user */ member in struct:prefix_ctx_st
60 ctx->indent = 0;
94 && ctx->indent == 0) {
121 BIO_printf(BIO_next(b), "%*s", ctx->indent, "");
172 ctx->indent = (unsigned int)num;
177 ret = (long)ctx->indent;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
json_reporter.cc 75 std::string indent(4, ' ');
78 out << indent << FormatKV("date", walltime_value) << ",\n";
80 out << indent << FormatKV("host_name", context.sys_info.name) << ",\n";
88 out << indent << FormatKV("executable", executable_name) << ",\n";
92 out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus))
94 out << indent
98 out << indent << FormatKV("cpu_scaling_enabled", info.scaling_enabled)
101 out << indent << "\"caches\": [\n"; local
102 indent = std::string(6, ' ');
106 out << indent << "{\n" local
115 out << indent << "}"; local
120 out << indent << "],\\n"; local
121 out << indent << "\\"load_avg\\": ["; local
152 out << indent << "{\\n"; local
154 out << indent << '}'; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DiffConsumer.cpp 133 void DiffConsumer::indent() { function in class:DiffConsumer
134 unsigned N = Indent;
144 Indent += 2;
150 Indent -= 2;
155 indent();
161 indent();
193 indent();
  /src/external/apache2/llvm/dist/llvm/utils/yaml-bench/
YAMLBench.cpp 59 struct indent { struct
61 indent(unsigned d) : distance(d) {} function in struct:indent
64 static raw_ostream &operator <<(raw_ostream &os, const indent &in) {
85 , unsigned Indent = 0
90 outs() << indent(Indent);
102 ++Indent;
105 dumpNode(i, Indent);
108 --Indent;
109 outs() << indent(Indent) << "]"
    [all...]
  /src/external/bsd/mdocml/dist/
manconf.h 39 size_t indent; member in struct:manoutput
  /src/external/gpl3/binutils/dist/binutils/
coffdump.c 53 static int indent; local
61 indent += x;
74 for (i = 0; i < indent; i++)
77 indent += x;
82 indent += x;
84 for (i = 0; i < indent; i++)
  /src/external/gpl3/binutils.old/dist/binutils/
coffdump.c 53 static int indent; local
61 indent += x;
74 for (i = 0; i < indent; i++)
77 indent += x;
82 indent += x;
84 for (i = 0; i < indent; i++)
  /src/bin/ksh/
tree.c 15 #define INDENT 4
18 static void ptree ARGS((struct op *t, int indent, struct shf *f));
19 static void pioact ARGS((struct shf *f, int indent, struct ioword *iop));
22 static void vfptreef ARGS((struct shf *shf, int indent, const char *fmt, va_list va));
31 ptree(t, indent, shf)
33 int indent;
47 fptreef(shf, indent, "%S ", *w++);
49 fptreef(shf, indent, "#no-vars# ");
52 fptreef(shf, indent, "%S ", *w++);
54 fptreef(shf, indent, "#no-args# ")
444 ptree(va_arg(va, struct op *), indent, shf); local
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7