Home
last modified time | relevance | path

Searched refs:child_name (Results 1 – 16 of 16) sorted by relevance

/external/protobuf/python/
Dstubout.py109 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/
Dgoogletest.py233 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/
Dsetup_modules.py32 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/
Dpubsub_task.cc141 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/
Dpinmux_arria10.c37 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()
Dmisc_arria10.c154 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/
Ddot.rb153 child_name = 'n%i' % @node_to_number_map[ tree ]
155 :parent => parent_name, :child => child_name,
/external/dynamic_depth/internal/xmpmeta/xml/
Ddeserializer_impl.cc126 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()
Ddeserializer.h27 const string& prefix, const string& child_name) const = 0;
Ddeserializer_impl.h35 const string& prefix, const string& child_name) const override;
/external/tensorflow/tensorflow/tools/docs/
Dparser.py1221 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/
Dtensorflow.test.-stub-out-for-testing.pbtxt10 …argspec: "args=[\'self\', \'parent\', \'child_name\', \'new_child\'], varargs=None, keywords=None,…
/external/tensorflow/tensorflow/core/common_runtime/
Dexecutor.cc2534 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/
Dpexpect.py612 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/
Dscope.cc490 const string child_name = in GetCompositeOpScopes() local
493 Scope(new Impl(child, Impl::Tags::SingleUseScope(), child_name))}; in GetCompositeOpScopes()
/external/python/cpython3/Doc/library/
Dimportlib.rst1732 parent_name, _, child_name = absolute_name.rpartition('.')
1746 setattr(parent_module, child_name, module)