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

  /external/autotest/site_utils/suite_scheduler/
base_event.py 146 def Merge(self, to_merge):
147 """Merge this event with to_merge, changing all mutable properties.
149 keyword remains unchanged; the following take on values from to_merge:
154 @param to_merge: A BaseEvent instance to merge into this instance.
156 self.tasks = to_merge.tasks
157 self._mv = to_merge._mv
158 self._always_handle = to_merge._always_handle
build_event.py 32 def Merge(self, to_merge):
33 """Merge this event with to_merge, changing all mutable properties.
38 @param to_merge: A BuildEvent instance to merge into this isntance.
40 super(BuildEvent, self).Merge(to_merge)
timed_event.py 227 def Merge(self, to_merge):
228 """Merge this event with to_merge, changing some mutable properties.
230 keyword remains unchanged; the following take on values from to_merge:
231 _deadline iff the time of day in to_merge._deadline is different.
233 @param to_merge: A TimedEvent instance to merge into this instance.
235 super(Weekly, self).Merge(to_merge)
236 if self._deadline.time() != to_merge._deadline.time():
237 self._deadline = to_merge._deadline
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 1553 PyObject *to_merge, *bases_aslist; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 1535 PyObject *to_merge, *bases_aslist; local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 1577 PyObject *to_merge, *bases_aslist; local
    [all...]

Completed in 74 milliseconds