Lines Matching defs:read
57 void Read(const v8::FunctionCallbackInfo<v8::Value>& args);
105 // Bind the global 'read' function to the C++ Read callback.
106 global->Set(v8::String::NewFromUtf8(isolate, "read"),
107 v8::FunctionTemplate::New(Read));
143 // The callback that is invoked by v8 whenever the JavaScript 'read'
146 void Read(const v8::FunctionCallbackInfo<v8::Value>& args) {
229 int read = static_cast<int>(fread(&chars[i], 1, size - i, file));
230 i += read;
275 // The read-eval-execute loop of the shell.