Searched refs:existing_value (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | literal-objects.cc | 207 Object existing_value = dictionary->ValueAt(entry); in AddToDictionaryTemplate() local 210 if (existing_value.IsAccessorPair()) { in AddToDictionaryTemplate() 211 AccessorPair current_pair = AccessorPair::cast(existing_value); in AddToDictionaryTemplate() 273 } else { // if (existing_value.IsAccessorPair()) ends here in AddToDictionaryTemplate() 276 DCHECK_IMPLIES(!existing_value.IsSmi(), in AddToDictionaryTemplate() 277 existing_value.IsAccessorInfo()); in AddToDictionaryTemplate() 278 DCHECK_IMPLIES(!existing_value.IsSmi(), in AddToDictionaryTemplate() 279 AccessorInfo::cast(existing_value).name() == in AddToDictionaryTemplate() 281 AccessorInfo::cast(existing_value).name() == in AddToDictionaryTemplate() 283 if (!existing_value in AddToDictionaryTemplate() [all...] |
/third_party/gn/src/gn/ |
H A D | function_forward_variables_from.cc | 59 const Value* existing_value = dest->GetValue(storage_key); in ForwardValuesFromList() local 60 if (existing_value) { in ForwardValuesFromList() 68 err->AppendSubErr(Err(*existing_value, "value being clobbered.")); in ForwardValuesFromList()
|
H A D | operators.cc | 434 const Value* existing_value = dest->GetExistingValue(); in ExecutePlusEquals() local 435 if (!existing_value) { in ExecutePlusEquals() 441 if (existing_value->type() != Value::STRING && in ExecutePlusEquals() 442 existing_value->type() != Value::LIST) { in ExecutePlusEquals() 445 ExecutePlus(op_node, *existing_value, std::move(right), false, err), in ExecutePlusEquals() 451 mutable_dest = dest->SetValue(*existing_value, op_node); in ExecutePlusEquals() 497 const Value* existing_value = dest->GetExistingValue(); in ExecuteMinusEquals() local 498 if (!existing_value) { in ExecuteMinusEquals() 503 dest->SetValue(ExecuteMinus(op_node, *existing_value, right, err), op_node); in ExecuteMinusEquals()
|
H A D | scope.cc | 327 const Value* existing_value = dest->GetValue(current_name); in NonRecursiveMergeTo() local 328 if (existing_value && new_value != *existing_value) { in NonRecursiveMergeTo() 338 Err(*existing_value, "defined here.", in NonRecursiveMergeTo()
|
/third_party/node/src/api/ |
H A D | environment.cc | 567 Local<Value> existing_value; in GetPerContextExports() local 568 if (!global->GetPrivate(context, key).ToLocal(&existing_value)) in GetPerContextExports() 570 if (existing_value->IsObject()) in GetPerContextExports() 571 return handle_scope.Escape(existing_value.As<Object>()); in GetPerContextExports()
|
/third_party/rust/crates/clap/src/parser/ |
H A D | parser.rs | 1265 let existing_value = *matcher in react() 1268 let next_value = existing_value.saturating_add(1); in react()
|
Completed in 7 milliseconds