Home | History | Annotate | Download | only in v8

Lines Matching refs:Handle

91 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance, 
92 v8::Handle<v8::ObjectTemplate> proto,
100 void batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> proto,
101 v8::Handle<v8::Signature> signature,
109 v8::Handle<v8::Value>(),
115 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor,
116 v8::Handle<v8::ObjectTemplate> proto,
203 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData)
206 v8::Handle<v8::String> name = v8::String::New(fileNameString, fileName.length());
207 v8::Handle<v8::Integer> line = v8::Integer::New(scriptStartPosition.m_line.zeroBasedInt());
208 v8::Handle<v8::Integer> column = v8::Integer::New(scriptStartPosition.m_column.zeroBasedInt());
210 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData);
290 bool V8Proxy::setInjectedScriptContextDebugId(v8::Handle<v8::Context> targetContext)
294 v8::Handle<v8::Context> context = windowShell()->context();
309 PassOwnPtr<v8::ScriptData> V8Proxy::precompileScript(v8::Handle<v8::String> code, CachedScript* cachedScript)
362 v8::Handle<v8::Script> script = compileScript(code, source.url(), WTF::toZeroBasedTextPosition(source.startPosition()), scriptData.get());
382 v8::Local<v8::Value> V8Proxy::runScript(v8::Handle<v8::Script> script, bool isInlineCode)
427 // Handle V8 internal error situation (Out-of-memory).
445 v8::Local<v8::Value> V8Proxy::callFunction(v8::Handle<v8::Function> function, v8::Handle<v8::Object> receiver, int argc, v8::Handle<v8::Value> args[])
496 v8::Local<v8::Value> V8Proxy::callFunctionWithoutFrame(v8::Handle<v8::Function> function, v8::Handle<v8::Object> receiver, int argc, v8::Handle<v8::Value> args[])
507 v8::Local<v8::Value> V8Proxy::newInstance(v8::Handle<v8::Function> constructor, int argc, v8::Handle<v8::Value> args[])
525 DOMWindow* V8Proxy::retrieveWindow(v8::Handle<v8::Context> context)
527 v8::Handle<v8::Object> global = context->Global();
534 Frame* V8Proxy::retrieveFrame(v8::Handle<v8::Context> context)
548 v8::Handle<v8::Context> context = v8::Context::GetEntered();
556 v8::Handle<v8::Context> context = v8::Context::GetCurrent();
564 v8::Handle<v8::Context> context = v8::Context::GetCalling();
644 v8::Handle<v8::Value> exception;
691 v8::Handle<v8::Value> V8Proxy::throwError(ErrorType type, const char* message)
710 v8::Handle<v8::Value> V8Proxy::throwTypeError()
715 v8::Handle<v8::Value> V8Proxy::throwSyntaxError()
766 v8::Handle<v8::Value> V8Proxy::checkNewLegal(const v8::Arguments& args)
801 v8::Handle<v8::Context> context = windowShell()->context();
816 int V8Proxy::contextDebugId(v8::Handle<v8::Context> context)