Lines Matching defs:property
125 Local<String> property) const {
126 node::Utf8Value key(isolate, property);
139 Local<String> property,
143 node::Utf8Value key(isolate, property);
175 int32_t RealEnvStore::Query(Isolate* isolate, Local<String> property) const {
176 node::Utf8Value key(isolate, property);
180 void RealEnvStore::Delete(Isolate* isolate, Local<String> property) {
183 node::Utf8Value key(isolate, property);
339 static void EnvGetter(Local<Name> property,
343 if (property->IsSymbol()) {
346 CHECK(property->IsString());
348 env->env_vars()->Get(env->isolate(), property.As<String>());
354 static void EnvSetter(Local<Name> property,
368 "process.env property is deprecated. Please make sure to convert "
378 if (!property->ToString(env->context()).ToLocal(&key) ||
389 static void EnvQuery(Local<Name> property,
393 if (property->IsString()) {
394 int32_t rc = env->env_vars()->Query(env->isolate(), property.As<String>());
399 static void EnvDeleter(Local<Name> property,
403 if (property->IsString()) {
404 env->env_vars()->Delete(env->isolate(), property.As<String>());
420 static void EnvDefiner(Local<Name> property,
442 return EnvSetter(property, desc.value(), info);