Lines Matching defs:value
40 i::Object value = Utils::OpenHandle(*context)->debug_context_id();
41 return (value.IsSmi()) ? i::Smi::ToInt(value) : 0;
91 auto buffer = i::ToDateString(jsdate->value().Number(), isolate->date_cache(),
144 Local<Value> value) {
147 i::Handle<i::Object> val = Utils::OpenHandle(*value);
208 i::Handle<i::Object> value;
210 isolate, value, i::Object::GetProperty(isolate, receiver, key),
213 i::Handle<i::Context> value_context(i::Context::cast(*value), isolate);
263 i::Handle<i::Object> value;
265 isolate, value, i::Object::GetProperty(isolate, receiver, key), false);
268 DCHECK(value->IsContext());
269 i::Handle<i::Context> value_context(i::Context::cast(*value), isolate);
277 values_out->push_back(Utils::ToLocal(value));
286 MaybeLocal<Context> GetCreationContext(Local<Object> value) {
287 i::Handle<i::Object> val = Utils::OpenHandle(*value);
291 return value->GetCreationContext();
444 i::Handle<i::Object> value(script->name(), isolate);
445 if (!value->IsString()) return MaybeLocal<String>();
446 return Utils::ToLocal(i::Handle<i::String>::cast(value));
452 i::Handle<i::PrimitiveHeapObject> value(script->source_url(), isolate);
453 if (!value->IsString()) return MaybeLocal<String>();
454 return Utils::ToLocal(i::Handle<i::String>::cast(value));
460 i::Handle<i::Object> value(script->source_mapping_url(), isolate);
461 if (!value->IsString()) return MaybeLocal<String>();
462 return Utils::ToLocal(i::Handle<i::String>::cast(value));
467 i::Object value = script->context_data();
468 if (value.IsSmi()) return Just(i::Smi::ToInt(value));
885 int EstimatedValueSize(Isolate* v8_isolate, Local<Value> value) {
888 i::Handle<i::Object> object = Utils::OpenHandle(*value);
1006 v8::Local<GeneratorObject> GeneratorObject::Cast(v8::Local<v8::Value> value) {
1007 CHECK(value->IsGeneratorObject());
1008 return ToApiHandle<GeneratorObject>(Utils::OpenHandle(*value));
1094 void SetReturnValue(v8::Isolate* v8_isolate, v8::Local<v8::Value> value) {
1096 isolate->debug()->set_return_value(*Utils::OpenHandle(*value));
1254 i::Handle<i::Object> value(self->Lookup(internal_key), internal_isolate);
1256 if (value->IsTheHole()) return {};
1257 return Utils::ToLocal(value);
1262 v8::Local<v8::Value> value) {
1265 i::Handle<i::Object> internal_value = Utils::OpenHandle(*value);
1282 EphemeronTable* EphemeronTable::Cast(v8::Value* value) {
1283 return static_cast<EphemeronTable*>(value);