Searched refs:indent_str (Results 1 – 9 of 9) sorted by relevance
/external/libwebm/ |
D | webm_info.cc | 186 fprintf(o, "%sEBMLVersion : %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 188 fprintf(o, "%sEBMLReadVersion : %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 190 fprintf(o, "%sEBMLMaxIDLength : %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 192 fprintf(o, "%sEBMLMaxSizeLength : %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 194 fprintf(o, "%sDoc Type : %s\n", indent->indent_str().c_str(), in OutputEBMLHeader() 196 fprintf(o, "%sDocTypeVersion : %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 198 fprintf(o, "%sDocTypeReadVersion: %lld\n", indent->indent_str().c_str(), in OutputEBMLHeader() 222 fprintf(o, "%sSeekHead:", indent->indent_str().c_str()); in OutputSeekHead() 238 fprintf(o, "%sEntry[%d]", indent->indent_str().c_str(), i); in OutputSeekHead() 246 std::string entry_indent = indent->indent_str(); in OutputSeekHead() [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/lite/ |
D | flatbuffer_to_string.cc | 66 std::string indent_str; member 71 : ToStringVisitor(delimiter), indent_str(indent), indent_level(0) {} in IndentedToStringVisitor() 74 for (int i = 0; i < indent_level; ++i) s.append(indent_str); in indent()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | emitter.h | 224 const char *indent_str; in emitter_indent() local 226 indent_str = "\t"; in emitter_indent() 229 indent_str = " "; in emitter_indent() 232 emitter_printf(emitter, "%s", indent_str); in emitter_indent()
|
/external/llvm-project/libcxx/utils/ |
D | generate_feature_test_macro_components.py | 834 indent_str = ' '*indent 837 result = [indent_str + add_divider(col_widths, 2)] 841 line = indent_str + ' '.join([pad_cell(row[i], col_widths[i]) for i in range(0, len(row))]) 846 separator = indent_str + add_divider(col_widths, 1 if is_cxx_header else header_flag)
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | cli_shared.py | 248 indent_str = " " * indent 255 lines = [RL(indent_str) + RL(command, font_attr) + ":", 256 indent_str + " " + description]
|
/external/tensorflow/tensorflow/python/tools/ |
D | saved_model_cli.py | 154 indent_str = ' ' * indent 156 print(indent_str + s) 228 indent_str = ' ' * indent 235 print(indent_str + s, end=end) 269 indent_str = ' ' * indent 271 print(indent_str + s)
|
/external/libwebm/common/ |
D | indent.h | 33 std::string indent_str() const { return indent_str_; } in indent_str() function
|
/external/tflite-support/tensorflow_lite_support/codegen/ |
D | utils.cc | 68 void CodeWriter::SetIndentString(const std::string& indent_str) { in SetIndentString() argument 69 indent_str_ = indent_str; in SetIndentString()
|
/external/llvm-project/lldb/examples/python/ |
D | crashlog.py | 140 indent_str = ' ' 141 join_str = '\n' + indent_str 142 … print('%s%s' % (indent_str, join_str.join(source_text.split('\n'))))
|