Searched refs:LineEditor (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dd8-readline.cc49 class ReadLineEditor: public LineEditor {
51 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
H A Dd8.h119 class LineEditor { class in namespace:v8
122 LineEditor(Type type, const char* name);
123 virtual ~LineEditor() { }
131 static LineEditor* Get();
135 LineEditor* next_;
136 static LineEditor* first_;
363 static LineEditor* console;
H A Dd8.cc69 LineEditor *LineEditor::first_ = NULL;
72 LineEditor::LineEditor(Type type, const char* name) function in class:v8::LineEditor
80 LineEditor* LineEditor::Get() {
81 LineEditor* current = first_;
82 LineEditor* best = current;
92 class DumbLineEditor: public LineEditor {
94 DumbLineEditor() : LineEditor(LineEdito
[all...]

Completed in 56 milliseconds