Lines Matching +defs:file +defs:start

101     "There is a .lldbinit file in the current directory which is not being "
104 "add the following to the lldbinit file in your home directory:\n"
422 AddAlias("file", cmd_obj_sp);
595 "breakpoint set --file '%1' --line %2 --column %3"},
597 "breakpoint set --file '%1' --line %2"},
627 "file\n\n"
642 "current file\n"
678 "file\n\n"
693 "current file\n"
867 "_regexp-list <file>:<line> // List around specific file/line\n"
868 "_regexp-list <line> // List current file around specified "
881 "source list --file '%1' --line %2") &&
924 "_regexp-jump <file>:<line>\n"
933 "thread jump --file %1 --line %2") &&
1525 size_t start = command_string.find_first_not_of(k_white_space);
1529 if (start != std::string::npos) {
1531 end = command_string.find_first_of(k_white_space, start);
1535 std::string(command_string.substr(start, end - start));
1556 // we are done. Otherwise, find the start of the next word.
1562 start = command_string.find_first_not_of(k_white_space, end);
1647 // actual commands can't start with '-' or '_'
1766 // don't treat the backtick as the start of an expression.
2352 // Does it start with '%'
2358 const char *start = cptr;
2365 position = atoi(start);
2412 void CommandInterpreter::SourceInitFile(FileSpec file,
2416 if (!FileSystem::Instance().Exists(file)) {
2421 // Use HandleCommand to 'source' the given file; this will do the actual
2430 HandleCommandsFromFile(file, options, result);
2470 /// We will first see if there is an application specific ".lldbinit" file
2472 /// If this file doesn't exist, we fall back to the REPL init file or the
2473 /// default home init file in "~/.lldbinit".
2735 "Error reading commands from file %s - file not found.\n",
2746 "error: an error occurred read file '{0}': {1}\n", cmd_file_path,
3147 // sourcing a commands file. We don't want blank lines to repeat the
3149 // alias, get an error and stop parsing the commands file).
3155 // When using a non-interactive file handle (like when sourcing commands
3156 // from a file) we need to echo the command out so we don't just see the
3280 // Can't have file name with colons on Windows
3309 return error_out("Unable to create file",
3312 FileUP file = std::move(opened_file.get());
3316 Status error = file->Write(m_transcript_stream.GetData(), byte_size);
3319 return error_out("Unable to write to destination file",
3332 error = file->GetFileSpec(const_cast<FileSpec &>(file_spec));
3444 // Always re-create the command interpreter when we run it in case any file