Home
last modified time | relevance | path

Searched refs:indent (Results 1 – 4 of 4) sorted by relevance

/bionic/tools/versioner/
Drun_tests.py15 def indent(text, spaces=4): function
34 print(indent(expected_output))
36 print(indent(output))
43 print(indent(expected_output))
45 print(indent(output))
50 print(indent(output))
/bionic/libc/kernel/tools/
Dcpp.py1026 def format_blocks(tokens, indent=0): argument
1039 indent += 2
1043 if indent >= 2:
1044 indent -= 2
1053 buf = ' ' * indent + '}'
1056 result.append(' ' * indent + '}')
1070 buf += ' ' * indent + str(t)
1079 return result, indent
1081 def write(self, out, indent): argument
1089 return indent
[all …]
/bionic/tools/versioner/src/
DDeclarationDatabase.h138 void dump(const std::string& base_path = "", FILE* out = stdout, unsigned indent = 0) const {
139 std::string indent_str(indent, ' ');
/bionic/benchmarks/linker_relocation/regen/
Ddump_relocs.py243 json.dump(elf_tree_to_json(root), f, sort_keys=True, indent=2)