Home
last modified time | relevance | path

Searched refs:dict_value (Results 1 – 9 of 9) sorted by relevance

/external/autotest/client/cros/enterprise/
Dtest_policy.py27 dict_value = {'scope': 'testScope', 'source': 'testSource', variable in test_policyManager
75 test_policydict = copy.deepcopy(self.dict_value)
104 test_policy.set_policy_from_dict(self.dict_value)
108 test_policy2.set_policy_from_dict(self.dict_value)
/external/tensorflow/tensorflow/python/saved_model/
Dnested_structure_coder.py200 def do_encode(self, dict_value, encode_fn): argument
202 encoded_dict.dict_value.CopyFrom(struct_pb2.DictValue())
203 for key, value in dict_value.items():
204 encoded_dict.dict_value.fields[key].CopyFrom(encode_fn(value))
211 return {key: decode_fn(val) for key, val in value.dict_value.fields.items()}
Dnested_structure_coder_test.py72 expected.dict_value.fields["a"].int64_value = 3
73 list_value = expected.dict_value.fields["b"].list_value
144 expected.list_value.values.add().dict_value.CopyFrom(struct_pb2.DictValue())
/external/libbrillo/policy/
Ddevice_policy_impl.cc116 bool DecodeWeeklyTimeFromValue(const base::DictionaryValue& dict_value, in DecodeWeeklyTimeFromValue() argument
120 if (!dict_value.GetString("day_of_week", &day_of_week_str)) { in DecodeWeeklyTimeFromValue()
131 if (!dict_value.GetInteger("hours", &hours) || hours < 0 || hours > 23) { in DecodeWeeklyTimeFromValue()
137 if (!dict_value.GetInteger("minutes", &minutes) || minutes < 0 || in DecodeWeeklyTimeFromValue()
/external/ppp/pppd/plugins/radius/
Dradiusclient.h311 typedef struct dict_value struct
316 struct dict_value *next; argument
/external/tensorflow/tensorflow/core/protobuf/
Dstruct.proto69 DictValue dict_value = 53; field
/external/protobuf/python/google/protobuf/internal/
Dmessage_test.py1582 def assertMapIterEquals(self, map_iter, dict_value): argument
1584 dict_value = dict(dict_value)
1587 self.assertEqual(v, dict_value[k])
1588 del dict_value[k]
1590 self.assertEqual({}, dict_value)
/external/libchrome/base/
Dvalues_unittest.cc1634 DictionaryValue dict_value; in TEST() local
1642 main_dict.SetKey("dict", dict_value.Clone()); in TEST()
1650 main_list.Append(std::make_unique<Value>(dict_value.Clone())); in TEST()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dimport_model.cc2452 const DictValue& dict = value.dict_value(); in RecursivelyFindLeaves()