Home
last modified time | relevance | path

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

/external/eigen/scripts/
Deigen_gen_credits.cpp85 size_t last_space = line.find_last_of(' '); in contributors_map_from_churn_output() local
89 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() local
113 if(last_space >= name.length()-1) return name; in lastname()
114 else return name.substr(last_space+1); in lastname()
/external/yapf/yapf/yapflib/
Dformat_decision_state.py359 column = self.column - self.stack[-1].last_space
570 self.stack[-1].last_space = self.column
629 new_indent = style.Get('CONTINUATION_INDENT_WIDTH') + last.last_space
631 self.stack.append(_ParenState(new_indent, self.stack[-1].last_space))
638 self.stack[-2].last_space = self.stack[-2].indent
640 self.stack[-2].last_space = self.stack[-1].last_space
985 def __init__(self, indent, last_space): argument
987 self.last_space = last_space
993 state = _ParenState(self.indent, self.last_space)
1001 self.indent, self.last_space, self.closing_scope_indent)
[all …]
/external/grpc-grpc/tools/buildgen/plugins/
Dlist_api.py35 last_space = type_and_name.rfind(' ')
37 type_end = max(last_space, last_star)