Searched refs:last_space (Results 1 – 3 of 3) sorted by relevance
85 size_t last_space = line.find_last_of(' '); in contributors_map_from_churn_output() local89 istringstream(line.substr(last_space+1)) >> number; in contributors_map_from_churn_output()92 line.erase(last_space); in contributors_map_from_churn_output()112 size_t last_space = name.find_last_of(' '); in lastname() local113 if(last_space >= name.length()-1) return name; in lastname()114 else return name.substr(last_space+1); in lastname()
359 column = self.column - self.stack[-1].last_space570 self.stack[-1].last_space = self.column629 new_indent = style.Get('CONTINUATION_INDENT_WIDTH') + last.last_space631 self.stack.append(_ParenState(new_indent, self.stack[-1].last_space))638 self.stack[-2].last_space = self.stack[-2].indent640 self.stack[-2].last_space = self.stack[-1].last_space985 def __init__(self, indent, last_space): argument987 self.last_space = last_space993 state = _ParenState(self.indent, self.last_space)1001 self.indent, self.last_space, self.closing_scope_indent)[all …]
35 last_space = type_and_name.rfind(' ')37 type_end = max(last_space, last_star)