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

/external/v8/src/
H A Dd8-readline.cc47 class ReadLineEditor: public LineEditor {
49 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
H A Dd8.h207 class LineEditor { class in namespace:v8
210 LineEditor(Type type, const char* name);
211 virtual ~LineEditor() { }
219 static LineEditor* Get();
223 LineEditor* next_;
224 static LineEditor* first_;
H A Dd8.cc49 LineEditor *LineEditor::first_ = NULL;
52 LineEditor::LineEditor(Type type, const char* name) function in class:v8::LineEditor
60 LineEditor* LineEditor::Get() {
61 LineEditor* current = first_;
62 LineEditor* best = current;
72 class DumbLineEditor: public LineEditor {
74 DumbLineEditor() : LineEditor(LineEdito
[all...]

Completed in 876 milliseconds