/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFVerifier.cpp | 240 Die.dump(OS, /*indent*/ 1); in verifyDebugInfoCallSite() 1480 raw_ostream &DWARFVerifier::dump(const DWARFDie &Die, unsigned indent) const { in dump() 1481 Die.dump(OS, indent, DumpOpts); in dump()
|
H A D | DWARFDebugFrame.cpp | 280 OS.indent(2 * IndentLevel);
|
/third_party/python/Parser/ |
H A D | tokenizer.c | 68 tok->indent = 0; in tok_new() 1480 if (col == tok->indstack[tok->indent]) { in tok_get() 1482 if (altcol != tok->altindstack[tok->indent]) { in tok_get() 1486 else if (col > tok->indstack[tok->indent]) { in tok_get() 1488 if (tok->indent+1 >= MAXINDENT) { in tok_get() 1493 if (altcol <= tok->altindstack[tok->indent]) { in tok_get() 1497 tok->indstack[++tok->indent] = col; in tok_get() 1498 tok->altindstack[tok->indent] = altcol; in tok_get() 1500 else /* col < tok->indstack[tok->indent] */ { in tok_get() 1502 while (tok->indent > in tok_get() [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | json_format_test.py | 1156 json_format.MessageToJson(message, indent=0)) 1245 indent=2, sort_keys=True))
|
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_add_handler.py | 424 return json.dumps(config_item, indent=4)
|
H A D | hdf_delete_handler.py | 196 json.dumps(write_data, indent=4))
|
H A D | hdf_linux_scann.py | 245 return json.dumps(result_dict, indent=4)
|
H A D | hdf_liteos_scann.py | 395 return json.dumps(return_dict, indent=4)
|
/third_party/node/deps/v8/tools/unittests/ |
H A D | run_tests_test.py | 284 pretty_json = json.dumps(json_output, indent=2, sort_keys=True)
|
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.h | 324 void Print(int indent) const;
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | pcy_tree.c | 32 int indent) in expected_print() 30 expected_print(BIO *channel, X509_POLICY_LEVEL *lev, X509_POLICY_NODE *node, int indent) expected_print() argument
|
/third_party/openssl/test/ |
H A D | endecoder_legacy_test.c | 69 int indent, ASN1_PCTX *pctx);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | ArchiveWriter.cpp | 121 OS.indent(Size - SizeSoFar); in printWithSpacePadding()
|
/third_party/openssl/crypto/x509/ |
H A D | pcy_tree.c | 32 int indent) in expected_print() 30 expected_print(BIO *channel, X509_POLICY_LEVEL *lev, X509_POLICY_NODE *node, int indent) expected_print() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopLoadElimination.cpp | 137 OS.indent(2) << *Cand.Load << "\n"; in operator <<()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | JSON.cpp | 642 OS.indent(Indent); in newline()
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 1132 self.indent = 0 1135 self.indent += 2 1138 self.indent -= 2 1144 indent = self._IndentString() 1145 print("\n".join("%s%s" % (indent, line) for line in lines)) 1148 return self.indent * " "
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 867 std::string glslResultBlock(const std::string& indent, const std::string& resultY, const std::string& resultZ = "") 871 << indent << " result.x += 1;\n" 872 << indent << "} else if (result.y == 0) {\n" 873 << indent << " result.y = " << resultY << ";\n"; 877 str << indent << " result.z = " << resultZ << ";\n"; 880 str << indent << "}\n";
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 866 std::string glslResultBlock(const std::string& indent, const std::string& resultY, const std::string& resultZ = "") 870 << indent << " result.x += 1;\n" 871 << indent << "} else if (result.y == 0) {\n" 872 << indent << " result.y = " << resultY << ";\n"; 876 str << indent << " result.z = " << resultZ << ";\n"; 879 str << indent << "}\n";
|
/third_party/PyYAML/yaml/ |
H A D | _yaml.pyx | 905 def __init__(self, stream, canonical=None, indent=None, width=None, 918 if indent is not None: 919 yaml_emitter_set_indent(&self.emitter, indent)
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 1299 int indent = 0; in print_name() local 1308 indent = 4; in print_name() 1318 X509_NAME_print_ex(out, nm, indent, lflags); in print_name()
|
/third_party/openssl/apps/lib/ |
H A D | apps.c | 1297 int indent = 0; in print_name() local 1306 indent = 4; in print_name() 1316 X509_NAME_print_ex(out, nm, indent, lflags); in print_name()
|
/third_party/python/Lib/test/ |
H A D | test_ast.py | 904 self.assertEqual(ast.dump(node, indent=3), """\ 915 self.assertEqual(ast.dump(node, annotate_fields=False, indent='\t'), """\ 926 self.assertEqual(ast.dump(node, include_attributes=True, indent=3), """\ 1231 with self.assertRaisesRegex(SyntaxError, "unexpected indent"): 1825 with self.subTest(ast.dump(pattern, indent=4)): 2047 It goes on starting from same indent."""
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 6197 // if string has a : in first line will set indent to follow it on 6199 void printHeaderString(std::string const& _string, std::size_t indent = 0); 8532 auto width = m_column.m_width - indent(); 8558 auto indent() const -> size_t { 8564 return std::string(indent(), ' ') + (m_suffix ? plain + "-" : plain); 8629 auto indent(size_t newIndent) -> Column& { 9573 TextFlow::Column( cols.left ).width( optWidth ).indent( 2 ) + 11273 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; 11275 Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::endl; 11279 Catch::cout() << Column( description ).indent( [all...] |
/third_party/mesa3d/src/amd/registers/ |
H A D | regdb.py | 791 result = json.dumps(obj, indent=1, sort_keys=True) 899 # kate: space-indent on; indent-width 4; replace-tabs on;
|