Searched defs:LineEditor (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/LineEditor/
H A DLineEditor.cpp1 //===-- LineEditor.cpp - line editor --------------------------------------===//
10 #include "llvm/LineEditor/LineEditor.h"
22 std::string LineEditor::getDefaultHistoryPath(StringRef ProgName) {
31 LineEditor::CompleterConcept::~CompleterConcept() {}
32 LineEditor::ListCompleterConcept::~ListCompleterConcept() {}
34 std::string LineEditor::ListCompleterConcept::getCommonPrefix(
53 LineEditor::CompletionAction
54 LineEditor::ListCompleterConcept::complete(StringRef Buffer, size_t Pos) const {
82 LineEditor
193 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, function in class:LineEditor
281 LineEditor::LineEditor(StringRef ProgName, StringRef HistoryPath, FILE *In, function in class:LineEditor
[all...]
/external/llvm/include/llvm/LineEditor/
H A DLineEditor.h1 //===-- llvm/LineEditor/LineEditor.h - line editor --------------*- C++ -*-===//
22 class LineEditor { class in namespace:llvm
24 /// Create a LineEditor object.
33 LineEditor(StringRef ProgName, StringRef HistoryPath = "", FILE *In = stdin,
35 ~LineEditor();
80 /// Set the completer for this LineEditor. A completer is a function object
88 /// Set the completer for this LineEditor to the given list completer.
108 // Public so callbacks in LineEditor.cpp can use it.
/external/chromium_org/v8/src/
H A Dd8.h97 class LineEditor { class in namespace:v8
100 LineEditor(Type type, const char* name);
101 virtual ~LineEditor() { }
109 static LineEditor* Get() { return current_; }
113 static LineEditor* current_;
H A Dd8.cc116 LineEditor *LineEditor::current_ = NULL;
119 LineEditor::LineEditor(Type type, const char* name) function in class:v8::LineEditor
125 class DumbLineEditor: public LineEditor {
128 : LineEditor(LineEditor::DUMB, "dumb"), isolate_(isolate) { }
1013 LineEditor* line_editor = LineEditor::Get();
1162 LineEditor* consol
[all...]

Completed in 1262 milliseconds