Home | History | Annotate | Download | only in samples

Lines Matching full:print

39  * The program reads input stream, processes it line by line and print
44 * input, process them and print to standard output until input closes.
59 * API of 2 global functions: "read_line" and "print". It should read input
60 * and print converted lines to output itself. This a sample script:
68 print(res);
101 v8::Handle<v8::Value> Print(const v8::Arguments& args);
188 // Bind the global 'print' function to the C++ Print callback.
189 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
192 // Bind the global 'read_line' function to the C++ Print callback.
226 // Print errors that happened during compilation.
347 // print the exception.
350 // Print (filename):(line number): (message).
355 // Print line of source code.
359 // Print wavy underline (GetUnderline is deprecated).
373 // The callback that is invoked by v8 whenever the JavaScript 'print'
376 v8::Handle<v8::Value> Print(const v8::Arguments& args) {