Searched refs:current_indent (Results 1 – 6 of 6) sorted by relevance
/external/google-fruit/extras/scripts/ |
D | analyze_template_instantiations_clang_diagnostics.py | 133 …def __call__(self, current_indent, current_line_length, inside_meta_type, last_token_was_type_wrap… argument 168 …def __call__(self, current_indent, current_line_length, inside_meta_type, last_token_was_type_wrap… argument 171 current_indent, 193 for node_factory, current_indent, inside_meta_type in node_factory_inside_meta_type_pairs: 194 …node = node_factory(current_indent, current_line_length, inside_meta_type, False, accept_single_li… 208 …t_token, intermediate_node_factories, right_token, rhs_node_factory, current_indent, current_line_… argument 224 (TerminalNodeFactory(left_token), current_indent, inside_meta_type), 225 *((intermediate_node_factory, current_indent, (inside_meta_type or entering_meta_type)) 227 (TerminalNodeFactory(right_token), current_indent, inside_meta_type), 228 (rhs_node_factory, current_indent, inside_meta_type), [all …]
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_marshal.py | 40 current_indent = 0 variable 45 print ' '*current_indent + str 52 global current_indent 53 current_indent += delta 55 current_indent -= delta
|
/external/python/cpython3/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 | 225 current_indent = self.formatter._current_indent 226 heading = '%*s%s:\n' % (current_indent, '', self.heading)
|
/external/python/cpython2/Lib/ |
D | optparse.py | 216 self.current_indent = 0 241 self.current_indent += self.indent_increment 245 self.current_indent -= self.indent_increment 246 assert self.current_indent >= 0, "Indent decreased below 0." 260 text_width = max(self.width - self.current_indent, 11) 261 indent = " "*self.current_indent 307 opt_width = self.help_position - self.current_indent - 2 309 opts = "%*s%s\n" % (self.current_indent, "", opts) 312 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts) 331 max_len = max(max_len, len(strings) + self.current_indent) [all …]
|
D | argparse.py | 222 current_indent = self.formatter._current_indent 223 heading = '%*s%s:\n' % (current_indent, '', self.heading)
|