Lines Matching defs:value
13 #include "src/inspector/value-mirror.h"
20 v8::Local<v8::Value> value, v8::Local<v8::Context> context, int max_depth,
22 std::unique_ptr<ValueMirror> mirror = ValueMirror::create(context, value);
36 result_dict->setValue(protocol::String("value"),
59 String16 _descriptionForRegExpFlags(v8::Local<v8::RegExp> value) {
61 v8::RegExp::Flags flags = value->GetFlags();
74 v8::Local<v8::RegExp> value, v8::Local<v8::Context> context, int max_depth,
85 context->GetIsolate(), value->GetSource())));
87 String16 flags = _descriptionForRegExpFlags(value);
97 v8::Local<v8::Date> value, v8::Local<v8::Context> context, int max_depth,
104 descriptionForDate(context, value.As<v8::Date>())));
109 v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth,
113 uint32_t length = value->Length();
117 if (!value->Get(context, i).ToLocal(&element_value))
131 v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth,
141 _serializeArrayValue(value, context, max_depth, &result_value);
149 v8::Local<v8::Map> value, v8::Local<v8::Context> context, int max_depth,
160 v8::Local<v8::Array> properties_and_values = value->AsArray();
202 v8::Local<v8::Set> value, v8::Local<v8::Context> context, int max_depth,
212 _serializeArrayValue(value->AsArray(), context, max_depth, &result_value);
220 v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth,
226 if (!value->GetOwnPropertyNames(context).ToLocal(&property_names))
239 value->HasRealNamedProperty(context, key_value.As<v8::String>());
251 if (!value->Get(context, key_value).ToLocal(&property_value))
272 v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth,
281 Response response = _serializeObjectValue(value.As<v8::Object>(), context,
290 v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth,
292 if (value->IsArray()) {
294 _serializeArray(value.As<v8::Array>(), context, max_depth, result);
297 if (value->IsRegExp()) {
299 _serializeRegexp(value.As<v8::RegExp>(), context, max_depth, result);
302 if (value->IsDate()) {
304 _serializeDate(value.As<v8::Date>(), context, max_depth, result);
307 if (value->IsMap()) {
309 _serializeMap(value.As<v8::Map>(), context, max_depth, result);
312 if (value->IsSet()) {
314 _serializeSet(value.As<v8::Set>(), context, max_depth, result);
317 if (value->IsWeakMap()) {
323 if (value->IsWeakSet()) {
329 if (value->IsNativeError()) {
335 if (value->IsProxy()) {
341 if (value->IsPromise()) {
347 if (value->IsTypedArray()) {
354 if (value->IsArrayBuffer()) {
361 if (value->IsFunction()) {
371 _serializeObject(value.As<v8::Object>(), context, max_depth, result);