Lines Matching defs:value
31 // result in value. Returns false if the value is not found. The
32 // caller is required to use fallback value appropriately in this
43 // The enum in the enum_values is the corresponding value to the strings
69 // The enum in the enum_values is the corresponding value to the strings
82 // 1. Let value be ? Get(options, property).
83 Handle<Object> value;
85 isolate, value,
88 // 2. If value is undefined, then return fallback.
89 if (value->IsUndefined(isolate)) {
92 // 3. If value is true, then return trueValue.
93 if (value->IsTrue(isolate)) {
96 // 4. Let valueBoolean be ToBoolean(value).
97 bool valueBoolean = value->BooleanValue(isolate);
104 // 6. Let value be ? ToString(value).
106 isolate, value_str, Object::ToString(isolate, value), Nothing<T>());
107 // 7. If values does not contain an element equal to value, throw a
109 // 8. Return value.
133 NewRangeError(MessageTemplate::kValueOutOfRange, value,
145 // result in value. Returns false if the value is not found. The
146 // caller is required to use fallback value appropriately in this
161 Isolate* isolate, Handle<Object> value, int min, int max, int fallback,