Lines Matching +defs:file +defs:start
136 size_t start = 0;
137 while (start < input.length()) {
138 size_t end = input.find('\n', start);
140 result.push_back(input.substr(start));
143 result.push_back(input.substr(start, end - start));
144 start = end + 1;
173 bool IsInputPending(FILE *file) {
179 const int fd = fileno(file);
298 /// Path to the history file.
602 case lldb::eConnectionStatusEndOfFile: // End-of-file encountered
633 // Establish the new cursor position at the start of a line when inserting a
750 // Just delete the previous character normally when not at the start of a
927 /// Prints completions and their descriptions to the given file. Only the
928 /// completions in the interval [start, end) are printed.
1245 fputs("Could not load history file\n.", m_output_file);
1312 EditLineConstString("lldb-buffer-start"),
1313 EditLineConstString("Move to start of buffer"),
1435 el_set(m_editline, EL_BIND, ESCAPE "<", "lldb-buffer-start", NULL);
1500 // file automatically.
1620 // Print the initial input lines, then move the cursor back up to the start