Lines Matching refs:PropertyName
1213 #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) argument
1214 #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) argument
1215 #define VS(PropertyName, StringValue) V(v8::String, PropertyName) argument
1216 #define V(TypeName, PropertyName) \ argument
1218 v8::Local<TypeName> IsolateData::PropertyName() const { \
1219 return PropertyName ## _ .Get(isolate_); \
1229 #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) in PER_ISOLATE_SYMBOL_PROPERTIES() argument
1230 #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) in PER_ISOLATE_SYMBOL_PROPERTIES() argument
1231 #define VS(PropertyName, StringValue) V(v8::String, PropertyName) in PER_ISOLATE_SYMBOL_PROPERTIES() argument
1232 #define V(TypeName, PropertyName) \ in PER_ISOLATE_SYMBOL_PROPERTIES() argument
1233 inline v8::Local<TypeName> Environment::PropertyName() const { \ in PER_ISOLATE_SYMBOL_PROPERTIES()
1234 return isolate_data()->PropertyName(); \ in PER_ISOLATE_SYMBOL_PROPERTIES()
1244 #define V(PropertyName, TypeName) \ argument
1245 inline v8::Local<TypeName> Environment::PropertyName() const { \
1246 return PersistentToLocal::Strong(PropertyName ## _); \
1248 inline void Environment::set_ ## PropertyName(v8::Local<TypeName> value) { \
1249 PropertyName ## _.Reset(isolate(), value); \