Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DEditline.cpp159 int indent_correction) { in FixIndentation() argument
160 if (indent_correction == 0) in FixIndentation()
162 if (indent_correction < 0) in FixIndentation()
163 return line.substr(-indent_correction); in FixIndentation()
164 return EditLineStringType(indent_correction, EditLineCharType(' ')) + line; in FixIndentation()
644 int indent_correction = m_fix_indentation_callback( in BreakLineCommand() local
646 new_line_fragment = FixIndentation(new_line_fragment, indent_correction); in BreakLineCommand()
860 int indent_correction = m_fix_indentation_callback( in FixIndentationCommand() local
864 if (indent_correction == 0) in FixIndentationCommand()
869 if (indent_correction > 0) { in FixIndentationCommand()
[all …]