Home
last modified time | relevance | path

Searched refs:from_value (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/sync/glue/
Dpreference_model_associator.cc259 Value* PreferenceModelAssociator::MergeListValues(const Value& from_value, in MergeListValues() argument
261 if (from_value.GetType() == Value::TYPE_NULL) in MergeListValues()
264 return from_value.DeepCopy(); in MergeListValues()
266 DCHECK(from_value.GetType() == Value::TYPE_LIST); in MergeListValues()
268 const ListValue& from_list_value = static_cast<const ListValue&>(from_value); in MergeListValues()
281 const Value& from_value, in MergeDictionaryValues() argument
283 if (from_value.GetType() == Value::TYPE_NULL) in MergeDictionaryValues()
286 return from_value.DeepCopy(); in MergeDictionaryValues()
288 DCHECK(from_value.GetType() == Value::TYPE_DICTIONARY); in MergeDictionaryValues()
291 static_cast<const DictionaryValue&>(from_value); in MergeDictionaryValues()
[all …]
Dpreference_model_associator.h119 static Value* MergeListValues(const Value& from_value, const Value& to_value);
120 static Value* MergeDictionaryValues(const Value& from_value,
/external/llvm/bindings/python/llvm/tests/
Dtest_core.py11 op = OpCode.from_value(1)
/external/llvm/bindings/python/llvm/
Dcore.py40 def from_value(value): member in OpCode