/third_party/skia/third_party/externals/tint/src/writer/ |
D | text_generator.cc | 70 current_indent += 2; in IncrementIndent() 74 current_indent = std::max(2u, current_indent) - 2u; in DecrementIndent() 78 lines.emplace_back(Line{current_indent, line}); in Append() 98 lines.emplace_back(Line{current_indent + line.indent, line.content}); in Append()
|
D | text_generator.h | 84 uint32_t current_indent = 0; member
|
/third_party/json/include/nlohmann/detail/output/ |
D | serializer.hpp | 111 const unsigned int current_indent = 0) in dump() argument 128 const auto new_indent = current_indent + indent_step; in dump() 156 o->write_characters(indent_string.c_str(), current_indent); in dump() 170 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 180 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 201 const auto new_indent = current_indent + indent_step; in dump() 222 o->write_characters(indent_string.c_str(), current_indent); in dump() 233 dump(*i, false, ensure_ascii, indent_step, current_indent); in dump() 239 … dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); in dump() 262 const auto new_indent = current_indent + indent_step; in dump() [all …]
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
D | gl_marshal.py | 52 current_indent = 0 variable 57 print(' '*current_indent + str) 64 global current_indent 65 current_indent += delta 67 current_indent -= delta
|
/third_party/python/Lib/ |
D | optparse.py | 222 self.current_indent = 0 247 self.current_indent += self.indent_increment 251 self.current_indent -= self.indent_increment 252 assert self.current_indent >= 0, "Indent decreased below 0." 266 text_width = max(self.width - self.current_indent, 11) 267 indent = " "*self.current_indent 313 opt_width = self.help_position - self.current_indent - 2 315 opts = "%*s%s\n" % (self.current_indent, "", opts) 318 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts) 337 max_len = max(max_len, len(strings) + self.current_indent) [all …]
|
D | argparse.py | 224 current_indent = self.formatter._current_indent 225 heading = '%*s%s:\n' % (current_indent, '', self.heading)
|
/third_party/mesa3d/src/microsoft/compiler/ |
D | dxil_dump.c | 40 int current_indent; member 47 d->current_indent = 0; in dxil_dump_create() 69 ++d->current_indent; in dxil_dump_indention_inc() 75 --d->current_indent; in dxil_dump_indention_dec() 76 assert(d->current_indent >= 0); in dxil_dump_indention_dec() 82 for (int i = 0; i < 2 * d->current_indent; ++i) in dxil_dump_indent()
|
/third_party/PyYAML/examples/pygments-lexer/ |
D | yaml.py | 98 current_indent = max(context.indent, 0) 100 context.block_scalar_indent = current_indent + increment
|
/third_party/skia/third_party/externals/tint/src/writer/wgsl/ |
D | generator_impl.cc | 1030 init_buf.lines[i].indent += current_buffer_->current_indent; in EmitForLoop() 1055 cont_buf.lines[i].indent += current_buffer_->current_indent; in EmitForLoop()
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 16145 const unsigned int current_indent = 0) in dump() argument 16162 const auto new_indent = current_indent + indent_step; in dump() 16190 o->write_characters(indent_string.c_str(), current_indent); in dump() 16204 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 16214 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 16235 const auto new_indent = current_indent + indent_step; in dump() 16256 o->write_characters(indent_string.c_str(), current_indent); in dump() 16267 dump(*i, false, ensure_ascii, indent_step, current_indent); in dump() 16273 … dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); in dump() 16296 const auto new_indent = current_indent + indent_step; in dump() [all …]
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 17995 const unsigned int current_indent = 0) in dump() argument 18012 const auto new_indent = current_indent + indent_step; in dump() 18040 o->write_characters(indent_string.c_str(), current_indent); in dump() 18054 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 18064 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 18085 const auto new_indent = current_indent + indent_step; in dump() 18106 o->write_characters(indent_string.c_str(), current_indent); in dump() 18117 dump(*i, false, ensure_ascii, indent_step, current_indent); in dump() 18123 … dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); in dump() 18146 const auto new_indent = current_indent + indent_step; in dump() [all …]
|