/external/protobuf/python/ |
D | stubout.py | 109 def Set(self, parent, child_name, new_child): argument 119 old_child = getattr(parent, child_name) 121 old_attribute = parent.__dict__.get(child_name) 125 self.cache.append((parent, old_child, child_name)) 126 setattr(parent, child_name, new_child) 138 for (parent, old_child, child_name) in self.cache: 139 setattr(parent, child_name, old_child)
|
/external/tensorflow/tensorflow/python/platform/ |
D | googletest.py | 233 def Set(self, parent, child_name, new_child): argument 250 old_child = getattr(parent, child_name) 252 old_attribute = parent.__dict__.get(child_name) 256 self.cache.append((parent, old_child, child_name)) 257 setattr(parent, child_name, new_child) 270 for (parent, old_child, child_name) in reversed(self.cache): 271 setattr(parent, child_name, old_child)
|
/external/autotest/client/ |
D | setup_modules.py | 32 child_name = parts.pop(0) 33 module = types.ModuleType(child_name) 34 setattr(parent, child_name, module) 35 created_parts.append(child_name)
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | pubsub_task.cc | 141 const buzz::QName& child_name(child_element->Name()); in HandlePubsubEventMessage() local 142 if (child_name == QN_PUBSUB_EVENT_ITEMS) { in HandlePubsubEventMessage() 168 const buzz::QName& child_name(child_element->Name()); in HandlePubsubIqGetResponse() local 169 if (child_name == QN_PUBSUB_ITEMS) { in HandlePubsubIqGetResponse()
|
/external/u-boot/arch/arm/mach-socfpga/ |
D | pinmux_arria10.c | 37 static int do_pinctrl_pins(const void *blob, int node, const char *child_name) in do_pinctrl_pins() argument 50 if (!strcmp(child_name, node_name)) in do_pinctrl_pins()
|
D | misc_arria10.c | 154 int node, const char *child_name) in is_peripheral_uart_true() argument 167 if (!strcmp(child_name, node_name)) in is_peripheral_uart_true()
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | dot.rb | 153 child_name = 'n%i' % @node_to_number_map[ tree ] 155 :parent => parent_name, :child => child_name,
|
/external/dynamic_depth/internal/xmpmeta/xml/ |
D | deserializer_impl.cc | 126 const string& prefix, const string& child_name) const { in CreateDeserializer() 127 if (child_name.empty()) { in CreateDeserializer() 132 DepthFirstSearch(node_, prefix.data(), child_name.data()); in CreateDeserializer()
|
D | deserializer.h | 27 const string& prefix, const string& child_name) const = 0;
|
D | deserializer_impl.h | 35 const string& prefix, const string& child_name) const override;
|
/external/tensorflow/tensorflow/tools/docs/ |
D | parser.py | 1221 child_name = '.'.join([self.full_name, short_name]) 1222 child = parser_config.py_name_to_object(child_name) 1242 self._add_property(short_name, child_name, child, child_doc) 1248 child_name, relative_path) 1249 self._add_class(short_name, child_name, child, child_doc, url) 1292 self._add_method(short_name, child_name, child, child_doc, 1302 self._add_other_member(short_name, child_name, child, child_doc)
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.test.-stub-out-for-testing.pbtxt | 10 …argspec: "args=[\'self\', \'parent\', \'child_name\', \'new_child\'], varargs=None, keywords=None,…
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | executor.cc | 2534 const string child_name = MakeFrameName(frame, iter, enter_name); in FindOrCreateChildFrame() local 2538 auto it = outstanding_frames_.find(child_name); in FindOrCreateChildFrame() 2547 if (vlog_) VLOG(2) << "Create frame: " << child_name; in FindOrCreateChildFrame() 2553 temp->frame_name = child_name; in FindOrCreateChildFrame() 2554 temp->frame_id = Hash64(child_name); in FindOrCreateChildFrame() 2567 auto it = outstanding_frames_.find(child_name); in FindOrCreateChildFrame() 2573 outstanding_frames_[child_name] = temp; in FindOrCreateChildFrame()
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 612 child_name = os.ttyname(tty_fd) 632 fd = os.open(child_name, os.O_RDWR); 634 raise ExceptionPexpect, "Error! Could not open child pty, " + child_name
|
/external/tensorflow/tensorflow/cc/framework/ |
D | scope.cc | 490 const string child_name = in GetCompositeOpScopes() local 493 Scope(new Impl(child, Impl::Tags::SingleUseScope(), child_name))}; in GetCompositeOpScopes()
|
/external/python/cpython3/Doc/library/ |
D | importlib.rst | 1732 parent_name, _, child_name = absolute_name.rpartition('.') 1746 setattr(parent_module, child_name, module)
|