/external/python/asn1crypto/asn1crypto/ |
D | ocsp.py | 105 attribute_name = '_%s_value' % name 106 if hasattr(self, attribute_name): 107 setattr(self, attribute_name, extension['extn_value'].parsed) 237 attribute_name = '_%s_value' % name 238 if hasattr(self, attribute_name): 239 setattr(self, attribute_name, extension['extn_value'].parsed) 459 attribute_name = '_%s_value' % name 460 if hasattr(self, attribute_name): 461 setattr(self, attribute_name, extension['extn_value'].parsed) 633 attribute_name = '_%s_value' % name [all …]
|
D | crl.py | 188 attribute_name = '_%s_value' % name 189 if hasattr(self, attribute_name): 190 setattr(self, attribute_name, extension['extn_value'].parsed) 318 attribute_name = '_%s_value' % name 319 if hasattr(self, attribute_name): 320 setattr(self, attribute_name, extension['extn_value'].parsed)
|
D | x509.py | 1016 for attribute_name, attribute_value in name_dict.items(): 1017 attribute_name = NameType.map(attribute_name) 1018 if attribute_name == 'email_address': 1020 elif attribute_name == 'domain_component': 1022 elif attribute_name in set(['dn_qualifier', 'country_name', 'serial_number']): 1035 'type': attribute_name, 2194 attribute_name = '_%s_value' % name 2195 if hasattr(self, attribute_name): 2196 setattr(self, attribute_name, extension['extn_value'].parsed)
|
/external/pytorch/torch/utils/data/datapipes/ |
D | datapipe.py | 135 def __getattr__(self, attribute_name): argument 136 if attribute_name in IterDataPipe.functions: 137 if attribute_name in _iter_deprecated_functional_names: 138 kwargs = _iter_deprecated_functional_names[attribute_name] 140 f = IterDataPipe.functions[attribute_name] 283 def __getattr__(self, attribute_name): argument 284 if attribute_name in MapDataPipe.functions: 285 if attribute_name in _map_deprecated_functional_names: 286 kwargs = _map_deprecated_functional_names[attribute_name] 288 f = MapDataPipe.functions[attribute_name]
|
D | datapipe.pyi.in | 42 def __getattr__(self, attribute_name: Any): ... 68 def __getattr__(self, attribute_name: Any): ...
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
D | remove_attribute.cc | 51 const string attribute_name = context.params.at("attribute_name")[0]; in RemoveAttribute() local 57 (node.attr().count(attribute_name))) { in RemoveAttribute() 58 new_node->mutable_attr()->erase(attribute_name); in RemoveAttribute()
|
/external/objenesis/main/src/test/java/org/objenesis/ |
D | ClassReader.java | 150 String attribute_name = ((CONSTANT_Utf8_info) constant_pool[attribute_name_index]).bytes; in attribute_info() local 152 System.out.println(this + " " + attribute_name); in attribute_info() 154 if("Code".equals(attribute_name)) { in attribute_info() 157 else if("SourceFile".equals(attribute_name)) { in attribute_info() 161 else if("LineNumberTable".equals(attribute_name)) { in attribute_info() 166 else if("LocalVariableTable".equals(attribute_name)) { in attribute_info() 172 fail("Unknown attribute: " + attribute_name); in attribute_info()
|
/external/tensorflow/tensorflow/python/trackable/ |
D | autotrackable.py | 91 for attribute_name in dir(self): 95 attribute_value = getattr(self, attribute_name, None) 104 functions[attribute_name] = attribute_value
|
/external/pytorch/torch/onnx/_internal/fx/ |
D | onnxfunction_dispatcher.py | 640 for attribute_name, attribute in function_attributes.items(): 641 if not self._match_onnx_attribute_type(attribute_name, attribute): 647 attribute_name, 652 self.attributes[attribute_name].type, 663 attribute_name: str, 671 if attribute_onnx_type != self.attributes[attribute_name].type: 677 attribute_name, attribute[0], is_sequence=True 724 for attribute_name, attribute_proto in self.attributes.items(): 725 attribute = attributes[attribute_name]
|
/external/tensorflow/tensorflow/lite/tools/ |
D | visualize.py | 408 for attribute_name in dir(fb): 409 attribute = fb.__getattribute__(attribute_name) 410 if not callable(attribute) and attribute_name[0] != "_": 411 snake_name = CamelCaseToSnakeCase(attribute_name) 412 preserve = True if attribute_name == "buffers" else preserve_as_numpy
|
/external/e2fsprogs/doc/ |
D | libblkid.txt | 32 if ((devname = blkid_get_devname(cache, attribute_name, value))) { 41 is NULL, then attribute_name is parsed as if it were 42 "<attribute_name>=<value>"; if it cannot be so parsed, then the 43 original attribute_name is returned in a copied allocated string. 55 if ((value = blkid_get_tag_value(cache, attribute_name, devname))) {
|
/external/autotest/cli/ |
D | job.py | 67 attribute_name='jobs', 169 attribute_name='status_list', 308 host_info = topic_common.item_parse_info(attribute_name='hosts', 311 job_info = topic_common.item_parse_info(attribute_name='jobname', 313 oth_info = topic_common.item_parse_info(attribute_name='one_time_hosts', 315 label_info = topic_common.item_parse_info(attribute_name='labels', 432 deps_info = topic_common.item_parse_info(attribute_name='dependencies', 601 job_info = topic_common.item_parse_info(attribute_name='jobids',
|
D | label.py | 42 attribute_name='labels', 84 host_info = topic_common.item_parse_info(attribute_name='hosts', 186 host_info = topic_common.item_parse_info(attribute_name='hosts',
|
D | topic_common.py | 194 def __init__(self, attribute_name, inline_option='', argument 202 self.attribute_name = attribute_name 420 self.topic_parse_info = item_parse_info(attribute_name='not_used') 589 setattr(self, item_parse_info.attribute_name, values)
|
D | user.py | 40 attribute_name='users',
|
/external/cronet/stable/third_party/libxml/chromium/ |
D | xml_writer.cc | 53 bool XmlWriter::AddAttribute(const std::string& attribute_name, in AddAttribute() argument 55 return xmlTextWriterWriteAttribute(writer_, BAD_CAST attribute_name.c_str(), in AddAttribute()
|
D | xml_writer.h | 52 bool AddAttribute(const std::string& attribute_name,
|
/external/cronet/tot/third_party/libxml/chromium/ |
D | xml_writer.cc | 53 bool XmlWriter::AddAttribute(const std::string& attribute_name, in AddAttribute() argument 55 return xmlTextWriterWriteAttribute(writer_, BAD_CAST attribute_name.c_str(), in AddAttribute()
|
D | xml_writer.h | 52 bool AddAttribute(const std::string& attribute_name,
|
/external/emboss/compiler/util/ |
D | attribute_util.py | 263 attribute_name = _attribute_name_for_errors(attr) 270 "Duplicate attribute '{}'.".format(attribute_name)), 280 attribute_name, context_name) 282 error_message = "Unknown attribute '{}' on {}.".format(attribute_name,
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | graph_utils.cc | 332 void CopyAttribute(const string& attribute_name, const NodeDef& from, in CopyAttribute() argument 334 (*to_node->mutable_attr())[attribute_name] = from.attr().at(attribute_name); in CopyAttribute() 337 void ConcatAttributeList(const string& attribute_name, const NodeDef& first, in ConcatAttributeList() argument 339 CopyAttribute(attribute_name, first, to_node); in ConcatAttributeList() 341 .at(attribute_name) in ConcatAttributeList() 343 ->MergeFrom(second.attr().at(attribute_name).list()); in ConcatAttributeList()
|
D | graph_utils.h | 152 void CopyAttribute(const string& attribute_name, const NodeDef& from, 157 void ConcatAttributeList(const string& attribute_name, const NodeDef& first,
|
/external/sdv/vsomeip/third_party/boost/serialization/include/boost/archive/ |
D | basic_xml_oarchive.hpp | 64 const char *attribute_name, 70 const char *attribute_name,
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | Attribute_info.java | 112 …final CONSTANT_Utf8_info attribute_name = (CONSTANT_Utf8_info) constants.get (attribute_name_index… in new_Attribute_info() local 113 final String name = attribute_name.m_value; in new_Attribute_info()
|
/external/sdv/vsomeip/third_party/boost/serialization/include/boost/archive/impl/ |
D | basic_xml_oarchive.ipp | 63 const char *attribute_name, 68 this->This()->put(attribute_name); 77 const char *attribute_name, 81 this->This()->put(attribute_name);
|