/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 | 259 def Set(self, parent, child_name, new_child): argument 276 old_child = getattr(parent, child_name) 278 old_attribute = parent.__dict__.get(child_name) 282 self.cache.append((parent, old_child, child_name)) 283 setattr(parent, child_name, new_child) 296 for (parent, old_child, child_name) in reversed(self.cache): 297 setattr(parent, child_name, old_child)
|
/external/autotest/client/ |
D | setup_modules.py | 32 child_name = parts.pop(0) 33 module = new.module(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/antlr/antlr-3.4/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/tensorflow/tensorflow/tools/docs/ |
D | parser.py | 1124 child_name = '.'.join([self.full_name, short_name]) 1125 child = parser_config.py_name_to_object(child_name) 1142 self._add_property(short_name, child_name, child, child_doc) 1148 child_name, relative_path) 1149 self._add_class(short_name, child_name, child, child_doc, url) 1167 print('Skipping %s, defined in %s, no docstring.' % (child_name, 1193 self._add_method(short_name, child_name, child, child_doc, 1203 self._add_other_member(short_name, child_name, child, child_doc)
|
/external/libmojo/mojo/edk/system/ |
D | node_controller.cc | 927 const ports::NodeName& child_name) { in OnAcceptParent() argument 943 DVLOG(1) << "Parent " << name_ << " accepted child " << child_name; in OnAcceptParent() 945 AddPeer(child_name, channel, false /* start_channel */); in OnAcceptParent() 954 broker->AddBrokerClient(child_name, channel->CopyRemoteProcessHandle()); in OnAcceptParent() 970 pending_broker_clients_.push(child_name); in OnAcceptParent() 1093 const ports::NodeName& child_name = pending_broker_clients.front(); in OnAcceptBrokerClient() local 1094 auto it = pending_children_.find(child_name); in OnAcceptBrokerClient() 1096 broker->AddBrokerClient(child_name, it->second->CopyRemoteProcessHandle()); in OnAcceptBrokerClient()
|
D | node_channel.h | 49 const ports::NodeName& child_name) = 0; 130 const ports::NodeName& child_name);
|
D | node_channel.cc | 68 ports::NodeName child_name; member 283 const ports::NodeName& child_name) { in AcceptParent() argument 288 data->child_name = child_name; in AcceptParent() 546 data->child_name); in OnChannelMessage()
|
D | node_controller.h | 211 const ports::NodeName& child_name) override;
|
/external/tensorflow/tensorflow/tools/api/golden/ |
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 | 2284 const string child_name = MakeFrameName(frame, iter, enter_name); in FindOrCreateChildFrame() local 2288 auto it = outstanding_frames_.find(child_name); in FindOrCreateChildFrame() 2297 if (vlog_) VLOG(2) << "Create frame: " << child_name; in FindOrCreateChildFrame() 2303 temp->frame_name = child_name; in FindOrCreateChildFrame() 2304 temp->frame_id = Hash64(child_name); in FindOrCreateChildFrame() 2317 auto it = outstanding_frames_.find(child_name); in FindOrCreateChildFrame() 2323 outstanding_frames_[child_name] = temp; in FindOrCreateChildFrame()
|
/external/tensorflow/tensorflow/cc/framework/ |
D | scope.cc | 415 const string child_name = in GetCompositeOpScopes() local 418 Scope(new Impl(child, Impl::Tags::SingleUseScope(), child_name))}; in GetCompositeOpScopes()
|
/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/python/cpython3/Doc/library/ |
D | importlib.rst | 1475 parent_name, _, child_name = absolute_name.rpartition('.') 1488 setattr(parent_module, child_name, module)
|