Searched refs:last_space (Results 1 – 6 of 6) sorted by relevance
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | format_decision_state.py | 292 column = self.column - self.stack[-1].last_space 495 self.stack[-1].last_space = self.column 597 new_indent = style.Get('CONTINUATION_INDENT_WIDTH') + last.last_space 599 self.stack.append(_ParenState(new_indent, self.stack[-1].last_space)) 605 self.stack[-2].last_space = self.stack[-1].last_space 773 def __init__(self, indent, last_space): argument 775 self.last_space = last_space 781 state = _ParenState(self.indent, self.last_space) 789 self.indent, self.last_space, self.closing_scope_indent) 798 return hash((self.indent, self.last_space, self.closing_scope_indent,
|
/third_party/boost/boost/compute/ |
D | function.hpp | 274 size_t last_space = 0; in parse_argument_names() local 280 last_space = i; in parse_argument_names() 284 arguments + last_space + 1, i - last_space - 1 in parse_argument_names() 297 arguments + last_space + 1, std::strlen(arguments) - last_space - 2 in parse_argument_names()
|
/third_party/boost/libs/compute/include/boost/compute/ |
D | function.hpp | 274 size_t last_space = 0; in parse_argument_names() local 280 last_space = i; in parse_argument_names() 284 arguments + last_space + 1, i - last_space - 1 in parse_argument_names() 297 arguments + last_space + 1, std::strlen(arguments) - last_space - 2 in parse_argument_names()
|
/third_party/grpc/tools/buildgen/plugins/ |
D | list_api.py | 35 last_space = type_and_name.rfind(' ') 37 type_end = max(last_space, last_star)
|
/third_party/gettext/gettext-tools/src/ |
D | msginit.c | 899 const char *last_space; in project_id() local 901 last_space = strrchr (old_field, ' '); in project_id() 902 if (last_space != NULL) in project_id() 904 while (last_space > old_field && last_space[-1] == ' ') in project_id() 905 last_space--; in project_id() 906 if (last_space > old_field) in project_id() 908 size_t package_len = last_space - old_field; in project_id()
|
/third_party/boost/libs/program_options/src/ |
D | options_description.cpp | 517 string::const_iterator last_space = in format_paragraph() local 523 if (last_space != line_begin) in format_paragraph() 527 if (static_cast<unsigned>(std::distance(last_space, line_end)) < in format_paragraph() 530 line_end = last_space; in format_paragraph()
|