/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, 2189 attribute_name = '_%s_value' % name 2190 if hasattr(self, attribute_name): 2191 setattr(self, attribute_name, extension['extn_value'].parsed)
|
/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/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/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | graph_utils.cc | 323 void CopyAttribute(const string& attribute_name, const NodeDef& from, in CopyAttribute() argument 325 (*to_node->mutable_attr())[attribute_name] = from.attr().at(attribute_name); in CopyAttribute() 328 void ConcatAttributeList(const string& attribute_name, const NodeDef& first, in ConcatAttributeList() argument 330 CopyAttribute(attribute_name, first, to_node); in ConcatAttributeList() 332 .at(attribute_name) in ConcatAttributeList() 334 ->MergeFrom(second.attr().at(attribute_name).list()); in ConcatAttributeList()
|
D | graph_utils.h | 151 void CopyAttribute(const string& attribute_name, const NodeDef& from, 156 void ConcatAttributeList(const string& attribute_name, const NodeDef& first,
|
/external/tensorflow/tensorflow/lite/tools/ |
D | visualize.py | 401 for attribute_name in dir(fb): 402 attribute = fb.__getattribute__(attribute_name) 403 if not callable(attribute) and attribute_name[0] != "_": 404 snake_name = CamelCaseToSnakeCase(attribute_name) 405 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',
|
D | test.py | 41 attribute_name='tests',
|
D | server.py | 87 attribute_name='hostname', use_leftover=True) 96 role_info = topic_common.item_parse_info(attribute_name='role')
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | tracking.py | 106 for attribute_name in dir(self): 113 attribute_value = getattr(self, attribute_name, None) 125 functions[attribute_name] = attribute_value
|
/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/pdfium/xfa/fxfa/parser/ |
D | xfa_basic_data.cpp | 184 WideStringView attribute_name) { in XFA_GetScriptAttributeByName() argument 185 Optional<XFA_ATTRIBUTEINFO> attr = XFA_GetAttributeByName(attribute_name); in XFA_GetScriptAttributeByName()
|
/external/tensorflow/tensorflow/compiler/xla/service/g3doc/ |
D | hlo_parser.md | 55 : attribute_name attribute_value
|
/external/python/cpython2/Lib/test/ |
D | _mock_backport.py | 1066 attribute_name = None variable in _patch 1102 patcher.attribute_name = self.attribute_name 1144 if patching.attribute_name is not None: 1306 if self.attribute_name is not None: 1309 extra_args[self.attribute_name] = new 1432 patcher.attribute_name = attribute 1438 this_patcher.attribute_name = attribute
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 1113 attribute_name = None variable in _patch 1149 patcher.attribute_name = self.attribute_name 1195 if patching.attribute_name is not None: 1360 if self.attribute_name is not None: 1363 extra_args[self.attribute_name] = new 1484 patcher.attribute_name = attribute 1490 this_patcher.attribute_name = attribute
|
/external/python/mock/mock/ |
D | mock.py | 1246 attribute_name = None variable in _patch 1282 patcher.attribute_name = self.attribute_name 1324 if patching.attribute_name is not None: 1486 if self.attribute_name is not None: 1489 extra_args[self.attribute_name] = new 1615 patcher.attribute_name = attribute 1621 this_patcher.attribute_name = attribute
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testpatch.py | 1272 patcher.attribute_name = 'f' 1275 other.attribute_name = 'g' 1497 patcher.attribute_name = 'f' 1500 good.attribute_name = 'g' 1503 bad.attribute_name = 'missing' 1525 patcher.attribute_name = 'f' 1528 good.attribute_name = 'g' 1531 bad.attribute_name = 'foo'
|
/external/python/mock/mock/tests/ |
D | testpatch.py | 1262 patcher.attribute_name = 'f' 1265 other.attribute_name = 'g' 1487 patcher.attribute_name = 'f' 1490 good.attribute_name = 'g' 1493 bad.attribute_name = 'missing' 1515 patcher.attribute_name = 'f' 1518 good.attribute_name = 'g' 1521 bad.attribute_name = 'foo'
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 1246 attribute_name = None variable in _patch 1282 patcher.attribute_name = self.attribute_name 1317 if patching.attribute_name is not None: 1503 if self.attribute_name is not None: 1506 extra_args[self.attribute_name] = new 1635 patcher.attribute_name = attribute 1641 this_patcher.attribute_name = attribute
|