Home | History | Annotate | Download | only in cpp

Lines Matching refs:v8

30 #include <v8.h>
42 handle_->SetInternalField(0, v8::Undefined());
49 static inline T* Unwrap (v8::Handle<v8::Object> handle)
53 return static_cast<T*>(v8::Handle<v8::External>::Cast(
57 v8::Persistent<v8::Object> handle_; // ro
60 inline void Wrap (v8::Handle<v8::Object> handle)
64 handle_ = v8::Persistent<v8::Object>::New(handle);
65 handle_->SetInternalField(0, v8::External::New(this));
103 static void WeakCallback (v8::Persistent<v8::Value> value, void *data)