HomeSort by relevance Sort by last modified time
    Searched refs:child_name (Results 1 - 16 of 16) 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/tensorflow/tensorflow/python/platform/
googletest.py 259 def Set(self, parent, child_name, new_child):
260 """In parent, replace child_name's old definition with new_child.
268 This method supports the case where child_name is a staticmethod or a
272 parent: The context in which the attribute child_name is to be changed.
273 child_name: The name of the attribute to change.
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)
    [all...]
  /external/autotest/client/
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/
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) {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
bounds.py 60 return type_factory(self.policy, self.qpol_symbol.child_name(self.policy))
qpol.py 1073 def child_name(self, *args): return _qpol.qpol_typebounds_t_child_name(self, *args) member in class:qpol_typebounds_t
1094 def child_name(self, *args): return _qpol.qpol_rolebounds_t_child_name(self, *args) member in class:qpol_rolebounds_t
1115 def child_name(self, *args): return _qpol.qpol_userbounds_t_child_name(self, *args) member in class:qpol_userbounds_t
    [all...]
qpol.i     [all...]
  /system/core/property_service/libpropertyinfoparser/
property_info_parser.cpp 72 const char* child_name = child_node(array_offset).name();
73 int cmp = strncmp(child_name, name, namelen);
74 if (cmp == 0 && child_name[namelen] != '\0') {
  /external/libmojo/mojo/edk/system/
node_channel.h 49 const ports::NodeName& child_name) = 0;
130 const ports::NodeName& child_name);
node_controller.cc 927 const ports::NodeName& child_name) {
943 DVLOG(1) << "Parent " << name_ << " accepted child " << child_name; local
945 AddPeer(child_name, channel, false /* start_channel */);
1093 const ports::NodeName& child_name = pending_broker_clients.front(); local
    [all...]
node_channel.cc 68 ports::NodeName child_name; member in struct:mojo::edk::__anon25158::AcceptParentData
283 const ports::NodeName& child_name) {
288 data->child_name = child_name;
546 data->child_name);
node_controller.h 211 const ports::NodeName& child_name) override;
  /external/antlr/antlr-3.4/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/cc/framework/
scope.cc 415 const string child_name = local
418 Scope(new Impl(child, Impl::Tags::SingleUseScope(), child_name))};
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 2284 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...]

Completed in 372 milliseconds