Searched refs:child_name (Results 1 – 9 of 9) sorted by relevance
/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/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/libmojo/mojo/edk/system/ |
D | node_controller.cc | 830 const ports::NodeName& child_name) { in OnAcceptParent() argument 846 DVLOG(1) << "Parent " << name_ << " accepted child " << child_name; in OnAcceptParent() 848 AddPeer(child_name, channel, false /* start_channel */); in OnAcceptParent() 857 broker->AddBrokerClient(child_name, channel->CopyRemoteProcessHandle()); in OnAcceptParent() 873 pending_broker_clients_.push(child_name); in OnAcceptParent() 994 const ports::NodeName& child_name = pending_broker_clients.front(); in OnAcceptBrokerClient() local 995 auto it = pending_children_.find(child_name); in OnAcceptBrokerClient() 997 broker->AddBrokerClient(child_name, it->second->CopyRemoteProcessHandle()); in OnAcceptBrokerClient()
|
D | node_channel.h | 48 const ports::NodeName& child_name) = 0; 126 const ports::NodeName& child_name);
|
D | node_channel.cc | 67 ports::NodeName child_name; member 276 const ports::NodeName& child_name) { in AcceptParent() argument 281 data->child_name = child_name; in AcceptParent() 526 data->child_name); in OnChannelMessage()
|
D | node_controller.h | 178 const ports::NodeName& child_name) override;
|
/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
|