Lines Matching refs:ReadLineEditor
49 class ReadLineEditor: public LineEditor { class
51 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { } in ReadLineEditor() function in v8::ReadLineEditor
67 static ReadLineEditor read_line_editor;
68 char ReadLineEditor::kWordBreakCharacters[] = {' ', '\t', '\n', '"',
73 const char* ReadLineEditor::kHistoryFileName = ".d8_history";
74 const int ReadLineEditor::kMaxHistoryEntries = 1000;
77 bool ReadLineEditor::Open() { in Open()
88 bool ReadLineEditor::Close() { in Close()
93 Handle<String> ReadLineEditor::Prompt(const char* prompt) { in Prompt()
108 void ReadLineEditor::AddHistory(const char* str) { in AddHistory()
125 char** ReadLineEditor::AttemptedCompletion(const char* text, in AttemptedCompletion()
134 char* ReadLineEditor::CompletionGenerator(const char* text, int state) { in CompletionGenerator()