/third_party/json/include/nlohmann/detail/output/ |
D | serializer.hpp | 99 const unsigned int indent_step, in dump() argument 117 const auto new_indent = current_indent + indent_step; in dump() 131 dump(i->second, true, ensure_ascii, indent_step, new_indent); in dump() 142 dump(i->second, true, ensure_ascii, indent_step, new_indent); in dump() 159 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 169 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 190 const auto new_indent = current_indent + indent_step; in dump() 201 dump(*i, true, ensure_ascii, indent_step, new_indent); in dump() 208 dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); in dump() 222 dump(*i, false, ensure_ascii, indent_step, current_indent); in dump() [all …]
|
/third_party/flatbuffers/src/ |
D | idl_gen_json_schema.cpp | 161 return parser_.opts.indent_step >= 0 ? "\n" : ""; in NewLine() 165 const auto num_spaces = indent * std::max(parser_.opts.indent_step, 0); in Indent()
|
D | idl_gen_text.cpp | 35 if (opts.indent_step >= 0) text += '\n'; in AddNewLine() 40 int Indent() const { return std::max(opts.indent_step, 0); } in Indent()
|
/third_party/flatbuffers/tests/fuzzer/ |
D | flatbuffers_scalar_fuzzer.cc | 275 opts.indent_step = -1; in LLVMFuzzerTestOneInput()
|
/third_party/flatbuffers/tests/ |
D | test.cpp | 1571 parser.opts.indent_step = 0; in FuzzTest2() 1723 parser.opts.indent_step = -1; in TestValue() 2161 opt.indent_step = -1; in GenerateTableTextTest() 2264 parser.opts.indent_step = -1; in UnicodeTest() 2284 parser.opts.indent_step = -1; in UnicodeTestAllowNonUTF8() 2307 parser.opts.indent_step = -1; in UnicodeTestGenerateTextFailsOnNonUTF8() 2494 parser.opts.indent_step = -1; in UnknownFieldsTest()
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 550 int indent_step; member 644 indent_step(2), in IDLOptions()
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
D | es31cArrayOfArraysTests.cpp | 8284 static const char* indent_step = " "; in test_shader_compilation() local 8350 indent += indent_step; in test_shader_compilation() 8417 invalid_shader_source += indent_step; in test_shader_compilation() 8429 valid_shader_source += indent_step; in test_shader_compilation() 8555 static const char* indent_step = " "; in execute() local 8594 indent += indent_step; in execute() 8702 valid_shader_source += indent_step; in execute()
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 15536 const unsigned int indent_step, in dump() argument 15554 const auto new_indent = current_indent + indent_step; in dump() 15568 dump(i->second, true, ensure_ascii, indent_step, new_indent); in dump() 15579 dump(i->second, true, ensure_ascii, indent_step, new_indent); in dump() 15596 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 15606 dump(i->second, false, ensure_ascii, indent_step, current_indent); in dump() 15627 const auto new_indent = current_indent + indent_step; in dump() 15638 dump(*i, true, ensure_ascii, indent_step, new_indent); in dump() 15645 dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); in dump() 15659 dump(*i, false, ensure_ascii, indent_step, current_indent); in dump() [all …]
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_demo.cpp | 4309 float indent_step = (float)((int)TEXT_BASE_WIDTH / 2); local 4312 …ImGui::Indent(indent_step); // Add some indentation to demonstrate usage of per-column IndentEnabl… 4320 ImGui::Unindent(indent_step * 8.0f);
|