Lines Matching defs:context
216 Local<Context> context = isolate->GetCurrentContext();
222 Local<Value> key = keys->Get(context, i).ToLocalChecked();
293 Maybe<bool> KVStore::AssignFromObject(Local<Context> context,
295 Isolate* isolate = context->GetIsolate();
298 if (!entries->GetOwnPropertyNames(context).ToLocal(&keys))
303 if (!keys->Get(context, i).ToLocal(&key))
309 if (!entries->Get(context, key).ToLocal(&value) ||
310 !value->ToString(context).ToLocal(&value_string)) {
322 v8::Local<v8::Context> context,
330 bool ok = keys->Get(context, i).ToLocal(&key);
333 ok = ok && object->Set(context, key, value).To(&ok);
378 if (!property->ToString(env->context()).ToLocal(&key) ||
379 !value->ToString(env->context()).ToLocal(&value_string)) {