HomeSort by relevance Sort by last modified time
    Searched refs:child_name (Results 1 - 13 of 13) sorted by null

  /external/protobuf/python/
stubout.py 109 def Set(self, parent, child_name, new_child):
110 """Replace child_name's old definition with new_child, in the context
116 This method supports the case where child_name is a staticmethod or a
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/u-boot/arch/arm/mach-socfpga/
pinmux_arria10.c 37 static int do_pinctrl_pins(const void *blob, int node, const char *child_name)
50 if (!strcmp(child_name, node_name))
misc_arria10.c 154 int node, const char *child_name)
167 if (!strcmp(child_name, node_name))
  /external/tensorflow/tensorflow/python/platform/
googletest.py 233 def Set(self, parent, child_name, new_child):
234 """In parent, replace child_name's old definition with new_child.
242 This method supports the case where child_name is a staticmethod or a
246 parent: The context in which the attribute child_name is to be changed.
247 child_name: The name of the attribute to change.
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)
    [all...]
  /external/autotest/client/
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/
pubsub_task.cc 141 const buzz::QName& child_name(child_element->Name());
142 if (child_name == QN_PUBSUB_EVENT_ITEMS) {
168 const buzz::QName& child_name(child_element->Name());
169 if (child_name == QN_PUBSUB_ITEMS) {
  /external/dynamic_depth/internal/xmpmeta/xml/
deserializer.h 25 // child_name is the name of the next node to deserialize.
27 const string& prefix, const string& child_name) const = 0;
deserializer_impl.h 32 // found with a name that matches child_name.
33 // child_name is the name of the next node to deserialize.
35 const string& prefix, const string& child_name) const override;
40 // found with a name that matches child_name.
deserializer_impl.cc 126 const string& prefix, const string& child_name) const {
127 if (child_name.empty()) {
132 DepthFirstSearch(node_, prefix.data(), child_name.data());
  /external/antlr/runtime/Ruby/lib/antlr3/
dot.rb 153 child_name = 'n%i' % @node_to_number_map[ tree ]
155 :parent => parent_name, :child => child_name,
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 2534 const string child_name = MakeFrameName(frame, iter, enter_name); local
    [all...]
  /external/autotest/client/common_lib/
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
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
scope.cc 490 const string child_name = local
493 Scope(new Impl(child, Impl::Tags::SingleUseScope(), child_name))};

Completed in 485 milliseconds