Home
last modified time | relevance | path

Searched refs:item_key (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/python/cpython2/Objects/
Dcodeobject.c483 PyObject *item, *item_key; in _PyCode_ConstantKey() local
486 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey()
487 if (item_key == NULL) { in _PyCode_ConstantKey()
492 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
512 PyObject *item_key; in _PyCode_ConstantKey() local
514 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey()
515 if (item_key == NULL) { in _PyCode_ConstantKey()
521 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
/aosp_15_r20/external/python/pyyaml/lib/yaml/
Dcomposer.py129 item_key = self.compose_node(node, None)
133 item_value = self.compose_node(node, item_key)
135 node.value.append((item_key, item_value))
Drepresenter.py116 for item_key, item_value in mapping:
117 node_key = self.represent_data(item_key)
/aosp_15_r20/test/dittosuite/src/
H A Dinstruction_set.cpp33 int item_key, Order access_order, Reseeding reseeding, uint32_t seed) in InstructionSet() argument
37 item_key_(item_key), in InstructionSet()
H A Dinstruction_factory.cpp60 int item_key = SharedVariables::GetKey(thread_ids, options.item_name()); in CreateFromProtoInstructionSet() local
70 item_key, access_order, reseeding, seed); in CreateFromProtoInstructionSet()
/aosp_15_r20/external/python/cpython3/Objects/
Dcodeobject.c2137 PyObject *item, *item_key; in _PyCode_ConstantKey() local
2140 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey()
2141 if (item_key == NULL) { in _PyCode_ConstantKey()
2146 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
2166 PyObject *item_key; in _PyCode_ConstantKey() local
2168 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey()
2169 if (item_key == NULL) { in _PyCode_ConstantKey()
2175 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
/aosp_15_r20/external/python/python-api-core/google/api_core/
Dprotobuf_helpers.py219 for item_key, item_value in value.items():
220 set(getattr(msg, key), item_key, item_value)
/aosp_15_r20/external/pigweed/pw_containers/public/pw_containers/
H A Dflat_map.h282 const key_type& item_key = item.first; in IsItemKeyLessThanGivenKey() local
283 return item_key < key; in IsItemKeyLessThanGivenKey()
/aosp_15_r20/test/dittosuite/include/ditto/
H A Dinstruction_set.h32 int item_key, Order order, Reseeding reseeding, uint32_t seed);
/aosp_15_r20/packages/apps/Settings/src/com/android/settings/fuelgauge/protos/
Dpower_anomaly_event.proto72 optional string item_key = 8; field
/aosp_15_r20/external/python/pyyaml/yaml/
D_yaml.pyx844 item_key = self._compose_node(node, None)
845 item_value = self._compose_node(node, item_key)
846 value.append((item_key, item_value))
1375 for item_key, item_value in node.value:
1376 self._serialize_node(item_key, node, None)
1377 self._serialize_node(item_value, node, item_key)