Home
last modified time | relevance | path

Searched refs:indent (Results 351 - 375 of 1086) sorted by relevance

1...<<11121314151617181920>>...44

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
H A DIPDBSourceFile.cpp23 OS.indent(Indent); in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLoopAccessAnalysisPrinter.cpp21 OS.indent(2) << L.getHeader()->getName() << ":\n"; in run()
/third_party/selinux/libselinux/include/
H A DMakefile13 indent:
/third_party/libabigail/src/
H A Dabg-comparison.cc2638 /// @param indent the indentation string to use in the report.
2640 distinct_diff::report(ostream& out, const string& indent) const in report()
2642 context()->get_reporter()->report(*this, out, indent); in report()
3290 /// @param indent the prefix to use for the indentation of this
3293 var_diff::report(ostream& out, const string& indent) const in report()
3295 context()->get_reporter()->report(*this, out, indent); in report()
3421 /// @param indent the prefix to use for the indentation of this
3424 pointer_diff::report(ostream& out, const string& indent) const in report()
3426 context()->get_reporter()->report(*this, out, indent); in report()
3577 /// @param indent th
9895 emit_diff_stats(const diff_stats& s, ostream& out, const string& indent) emit_diff_stats() argument
9914 out << indent << "ELF SONAME changed\\n"; emit_diff_stats() local
9917 out << indent << "ELF architecture changed\\n"; emit_diff_stats() local
9944 out << indent << "Removed/Changed/Added functions summary: "; emit_diff_stats() local
9969 out << indent << "Removed/Changed/Added variables summary: "; emit_diff_stats() local
9999 out << indent << "Functions changes summary: "; emit_diff_stats() local
10025 out << indent << "Variables changes summary: "; emit_diff_stats() local
[all...]
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/hdi_operate/
H A Dhdi_add_handler.py81 json.dumps(file_json_type, indent=4))
186 return json.dumps(self.result_json, indent=4)
232 return json.dumps(self.result_json, indent=4)
433 content=json.dumps(file_info_json, indent=4))
438 return json.dumps(self.result_json, indent=4)
543 hdf_utils.write_file(out_config_path, json.dumps(read_file_json, indent=4))
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c41 /** Number of spaces to indent for IF/LOOP/etc */
53 int indent; member
560 ctx->indent -= info->pre_dedent; in iter_instruction()
561 for(i = 0; (int)i < ctx->indent; ++i) in iter_instruction()
563 ctx->indent += info->post_indent; in iter_instruction()
694 ctx.indent = 0; in tgsi_dump_instruction()
819 ctx.base.indent = 0; in tgsi_dump_instruction_str()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_lib.c533 int BIO_indent(BIO *b, int indent, int max) in BIO_indent() argument
535 if (indent < 0) in BIO_indent()
536 indent = 0; in BIO_indent()
537 if (indent > max) in BIO_indent()
538 indent = max; in BIO_indent()
539 while (indent--) in BIO_indent()
/third_party/openssl/crypto/bio/
H A Dbio_lib.c533 int BIO_indent(BIO *b, int indent, int max) in BIO_indent() argument
535 if (indent < 0) in BIO_indent()
536 indent = 0; in BIO_indent()
537 if (indent > max) in BIO_indent()
538 indent = max; in BIO_indent()
539 while (indent--) in BIO_indent()
/third_party/openssl/ohos_lite/include/openssl/
H A Dx509v3.h43 BIO *out, int indent);
639 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
642 int indent);
644 int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
648 unsigned long flag, int indent);
721 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
/third_party/python/Lib/
H A Dtraceback.py621 def indent(self): member in _ExceptionPrintContext
627 indent_str = self.indent()
632 yield textwrap.indent(text_gen, indent_str, lambda line: True)
635 yield textwrap.indent(text, indent_str, lambda line: True)
954 yield (_ctx.indent() +
967 yield (_ctx.indent() +
H A Doptparse.py172 the number of columns to indent per nesting level
246 def indent(self): member in HelpFormatter
267 indent = " "*self.current_indent
270 initial_indent=indent,
271 subsequent_indent=indent)
332 self.indent()
338 self.indent()
1100 formatter.indent()
1613 formatter.indent()
/kernel/linux/linux-6.6/include/drm/
H A Ddrm_gem_ttm_helper.h17 void drm_gem_ttm_print_info(struct drm_printer *p, unsigned int indent,
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/
H A Dintel_execlists_submission.h32 int indent),
/third_party/icu/tools/multi/proj/icu4cscan/
H A Dxmlout.h13 * Write indent at current level, increment level, and then return what the initial level was
15 int indent(const char *s, bool single = false);
17 * Decrement level, write indent of 'outer' level, and return what the new level is. Should match your earlier call to indent.
29 * Write some string without indent. */
/third_party/python/Include/internal/
H A Dpycore_traceback.h91 indent spaces followed by the margin (if it is not NULL). */
93 PyObject *tb, int indent, const char* margin,
/third_party/selinux/libsepol/
H A DMakefile23 indent:
/third_party/selinux/libsepol/utils/
H A DMakefile21 indent:
/third_party/node/deps/v8/src/compiler/
H A Dgraph-visualizer.cc884 void PrintIndent(std::ostream& os, int indent) { in PrintIndent() argument
886 for (int i = 0; i < indent; i++) { in PrintIndent()
891 void PrintScheduledNode(std::ostream& os, int indent, Node* n) { in PrintScheduledNode() argument
892 PrintIndent(os, indent); in PrintScheduledNode()
911 int indent = current->loop_depth(); in PrintScheduledGraph() local
927 PrintScheduledNode(os, indent, node); in PrintScheduledGraph()
933 PrintScheduledNode(os, indent, current->control_input()); in PrintScheduledGraph()
935 PrintIndent(os, indent); in PrintScheduledGraph()
/third_party/python/Lib/tkinter/
H A Dttk.py133 def _format_layoutlist(layout, indent=0, indent_size=2):
167 head = "%s%s%s" % (' ' * indent, elem, (" %s" % fopts) if fopts else '')
171 indent += indent_size
172 newscript, indent = _format_layoutlist(opts['children'], indent,
175 indent -= indent_size
176 script.append('%s}' % (' ' * indent))
180 return '\n'.join(script), indent
/kernel/linux/linux-5.10/tools/testing/kunit/
H A Dkunit_json.py55 json_obj = json.dumps(test_group, indent=4)
/third_party/gn/src/gn/
H A Dvisibility.h48 // Returns a string listing the visibility. |indent| number of spaces will
52 std::string Describe(int indent, bool include_brackets) const;
/third_party/PyYAML/tests/lib/
H A Dtest_mark.py19 snippet = mark.get_snippet(indent=2, max_length=79)
/third_party/node/deps/v8/third_party/inspector_protocol/
H A Dconvert_protocol_to_json.py36 json.dump(protocol, output_file, indent=4, separators=(',', ': '))
H A Dconcatenate_protocols.py37 indent=4, sort_keys=False, separators=(',', ': '))
/third_party/node/tools/inspector_protocol/
H A Dconvert_protocol_to_json.py29 json.dump(protocol, output_file, indent=4, separators=(',', ': '))

Completed in 26 milliseconds

1...<<11121314151617181920>>...44