Lines Matching defs:indent_correction
155 int indent_correction) {
156 if (indent_correction == 0)
158 if (indent_correction < 0)
159 return line.substr(-indent_correction);
160 return EditLineStringType(indent_correction, EditLineCharType(' ')) + line;
650 int indent_correction = m_fix_indentation_callback(this, lines, 0);
651 new_line_fragment = FixIndentation(new_line_fragment, indent_correction);
864 int indent_correction =
868 if (indent_correction == 0)
873 if (indent_correction > 0) {
874 currentLine = currentLine.insert(0, indent_correction, ' ');
876 currentLine = currentLine.erase(0, -indent_correction);
894 m_revert_cursor_index = cursor_position + indent_correction;