Searched defs:__select (Results 1 - 3 of 3) sorted by relevance

/external/stlport/stlport/stl/
H A Dtype_manips.h90 // class template __select
92 // Invocation: __select<_Cond, T, U>::Result
99 //classes the default behavior of the __select is to consider the condition as false and so return
113 struct __select { typedef _Tp1 _Ret; }; struct
116 struct __select<false, _Tp1, _Tp2> { typedef _Tp2 _Ret; }; struct
119 struct __select struct
143 struct __select { struct
149 struct __select { struct
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py848 r, w, e = self.__select([self.child_fd], [], [], 0)
856 r, w, e = self.__select([self.child_fd], [], [], 2)
861 r, w, e = self.__select([self.child_fd], [], [], timeout)
1602 r, w, e = self.__select([self.child_fd, self.STDIN_FILENO], [], [])
1622 def __select(self, iwtd, owtd, ewtd, timeout=None): member in class:spawn
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py808 r,w,e = self.__select([self.child_fd], [], [], 0) # timeout of 0 means "poll"
815 r, w, e = self.__select([self.child_fd], [], [], 2)
820 r,w,e = self.__select([self.child_fd], [], [], timeout)
1523 r,w,e = self.__select([self.child_fd, self.STDIN_FILENO], [], [])
1541 def __select (self, iwtd, owtd, ewtd, timeout=None): member in class:spawn

Completed in 136 milliseconds