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

  /external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
stubout.py 114 def Set(self, parent, child_name, new_child):
115 """Replace child_name's old definition with new_child.
123 This method supports the case where child_name is a staticmethod or a
126 old_child = getattr(parent, child_name)
128 old_attribute = parent.__dict__.get(child_name)
135 self.cache.append((parent, old_child, child_name))
136 setattr(parent, child_name, new_child)
150 for (parent, old_child, child_name) in self.cache:
151 setattr(parent, child_name, old_child)
  /external/chromium-trace/catapult/third_party/mox3/mox3/
stubout.py 114 def Set(self, parent, child_name, new_child):
115 """Replace child_name's old definition with new_child.
123 This method supports the case where child_name is a staticmethod or a
126 old_child = getattr(parent, child_name)
128 old_attribute = parent.__dict__.get(child_name)
135 self.cache.append((parent, old_child, child_name))
136 setattr(parent, child_name, new_child)
150 for (parent, old_child, child_name) in self.cache:
151 setattr(parent, child_name, old_child)
  /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/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) {
  /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/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
qpol.py 1038 def child_name(self, *args): return _qpol.qpol_typebounds_t_child_name(self, *args) member in class:qpol_typebounds_t
1059 def child_name(self, *args): return _qpol.qpol_rolebounds_t_child_name(self, *args) member in class:qpol_rolebounds_t
1080 def child_name(self, *args): return _qpol.qpol_userbounds_t_child_name(self, *args) member in class:qpol_userbounds_t
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 808 parent_directory, child_name = self.SplitPath(path)
818 return parent_obj.GetEntry(child_name)
    [all...]
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 826 parent_directory, child_name = self.SplitPath(path)
836 return parent_obj.GetEntry(child_name)
    [all...]

Completed in 384 milliseconds