HomeSort by relevance Sort by last modified time
    Searched refs:READLINE (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
d8-readline.cc 30 #include <readline/readline.h> // NOLINT
31 #include <readline/history.h> // NOLINT
33 // The readline includes leaves RETURN defined which breaks V8 compilation.
40 // implementations of readline. This smooths out one known incompatibility.
51 ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
97 result = readline(prompt);
d8.h 121 enum Type { DUMB = 0, READLINE = 1 };
312 static Handle<Value> ReadLine(const Arguments& args) {
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 44 #if HAVE(READLINE)
45 #include <readline/history.h>
46 #include <readline/readline.h>
161 putDirectFunction(globalExec(), new (globalExec()) JSFunction(globalExec(), this, functionStructure(), 0, Identifier(globalExec(), "readline"), functionReadline));
434 #if HAVE(READLINE) && !RUNNING_FROM_XCODE
435 char* line = readline(interactivePrompt);

Completed in 1267 milliseconds