Home | History | Annotate | Download | only in gin

Lines Matching refs:info

20   WrapperInfo* info = WrapperInfo::From(obj);
23 if (!info)
51 const v8::PropertyCallbackInfo<v8::Value>& info) {
52 v8::Isolate* isolate = info.GetIsolate();
54 NamedInterceptorFromV8(isolate, info.Holder());
59 info.GetReturnValue().Set(interceptor->GetNamedProperty(isolate, name));
64 const v8::PropertyCallbackInfo<v8::Value>& info) {
65 v8::Isolate* isolate = info.GetIsolate();
67 NamedInterceptorFromV8(isolate, info.Holder());
73 info.GetReturnValue().Set(value);
77 const v8::PropertyCallbackInfo<v8::Integer>& info) {
78 v8::Isolate* isolate = info.GetIsolate();
80 NamedInterceptorFromV8(isolate, info.Holder());
87 info.GetReturnValue().Set(0);
90 void NamedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info) {
91 v8::Isolate* isolate = info.GetIsolate();
93 NamedInterceptorFromV8(isolate, info.Holder());
96 info.GetReturnValue().Set(v8::Handle<v8::Array>::Cast(
101 const v8::PropertyCallbackInfo<v8::Value>& info) {
102 v8::Isolate* isolate = info.GetIsolate();
104 IndexedInterceptorFromV8(isolate, info.Holder());
107 info.GetReturnValue().Set(interceptor->GetIndexedProperty(isolate, index));
112 const v8::PropertyCallbackInfo<v8::Value>& info) {
113 v8::Isolate* isolate = info.GetIsolate();
115 IndexedInterceptorFromV8(isolate, info.Holder());
119 info.GetReturnValue().Set(value);
123 const v8::PropertyCallbackInfo<v8::Array>& info) {
124 v8::Isolate* isolate = info.GetIsolate();
126 IndexedInterceptorFromV8(isolate, info.Holder());
129 info.GetReturnValue().Set(v8::Handle<v8::Array>::Cast(