Home
last modified time | relevance | path

Searched refs:fGlobal (Results 1 – 3 of 3) sorted by relevance

/external/skia/experimental/SkV8Example/
DJsContext.cpp29 v8::EscapableHandleScope handleScope(fGlobal->getIsolate()); in wrap()
41 gContextTemplate.Reset(fGlobal->getIsolate(), localTemplate); in wrap()
44 v8::Local<v8::ObjectTemplate>::New(fGlobal->getIsolate(), gContextTemplate); in wrap()
51 v8::Handle<v8::External> contextPtr = v8::External::New(fGlobal->getIsolate(), this); in wrap()
68 v8::HandleScope handleScope(fGlobal->getIsolate()); in onDraw()
71 v8::Local<v8::Context> context = fGlobal->getContext(); in onDraw()
87 v8::Local<v8::Function>::New(fGlobal->getIsolate(), fOnDraw); in onDraw()
94 fGlobal->reportException(&tryCatch); in onDraw()
111 v8::HandleScope handleScope(fGlobal->getIsolate()); in initialize()
114 v8::Local<v8::Context> context = fGlobal->getContext(); in initialize()
[all …]
DDrawingMethods.cpp131 drawingMethods->fGlobal->getIsolate(), canvas->imageInfo().width())); in GetWidth()
144 drawingMethods->fGlobal->getIsolate(), canvas->imageInfo().height())); in GetHeight()
149 fGlobal->getIsolate(), name, \
151 v8::FunctionTemplate::New(fGlobal->getIsolate(), fn))
154 v8::HandleScope scope(fGlobal->getIsolate()); in addAttributesAndMethods()
158 fGlobal->getIsolate(), "width", v8::String::kInternalizedString), in addAttributesAndMethods()
161 fGlobal->getIsolate(), "height", v8::String::kInternalizedString), in addAttributesAndMethods()
DDrawingMethods.h23 : fGlobal(global) in DrawingMethods()
38 Global* fGlobal; variable