/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementPath.py | 98 def select(context, result): function in function:prepare_child 103 return select 106 def select(context, result): function in function:prepare_star 110 return select 113 def select(context, result): function in function:prepare_self 116 return select 126 def select(context, result): function in function:prepare_descendant 131 return select 134 def select(context, result): function in function:prepare_parent 144 return select 165 def select(context, result): function in function:prepare_predicate 174 def select(context, result): function in function:prepare_predicate 182 def select(context, result): function in function:prepare_predicate 191 def select(context, result): function in function:prepare_predicate 212 def select(context, result): function in function:prepare_predicate [all...] |
/art/compiler/optimizing/ |
select_generator.cc | 119 // Create the Select instruction and insert it in front of the If. 120 HSelect* select = new (graph_->GetArena()) HSelect(if_instruction->InputAt(0), local 125 select->SetReferenceTypeInfo(phi->GetReferenceTypeInfo()); 127 block->InsertInstructionBefore(select, if_instruction); 131 phi->ReplaceInput(select, predecessor_index_false);
|
/developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/ |
CursorLoaderListFragment.java | 196 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND (" local 202 CONTACTS_SUMMARY_PROJECTION, select, null, order);
|
/development/samples/Support13Demos/src/com/example/android/supportv13/app/ |
CursorFragment.java | 128 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND (" local 132 CONTACTS_SUMMARY_PROJECTION, select, null,
|
/external/autotest/client/cros/ |
xmlrpc_server.py | 10 import select namespace 44 # on EINTR, so handle_request will be blocked at select.select forever 82 except select.error as v:
|
/external/autotest/client/deps/lansim/src/py/ |
simulator.py | 7 import select namespace 198 # To achieve this we use select.select() to wait simultaneously on 225 # Compute the list of file descriptors that select.select() needs to 226 # monitor to attend the required events. select() will return when 241 rlist, wlist, xlist = select.select(rlist, wlist, xlist, timeout)
|
simulator_unittest.py | 6 import select namespace 45 rlist, wlist, xlist = select.select([self._sock], [], [], 1.)
|
/external/autotest/site_utils/ |
log_socket_server.py | 17 import select namespace 101 rd, wr, ex = select.select([self.socket.fileno()], [], [],
|
/external/chromium-trace/catapult/devil/devil/utils/ |
cmd_helper.py | 10 import select namespace 228 read_fds, _, _ = select.select([child_fd], [], [], poll_interval)
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/ |
query.py | 21 import select namespace 59 (r, w, x) = select.select(ir, iw, ix) 61 (r, w, x) = select.select(ir, iw, ix, timeout) 62 except select.error, e:
|
/external/clang/test/SemaCXX/ |
discrim-union.cpp | 14 template<unsigned N> struct select {}; // : integral_constant<unsigned, N> {}; struct in namespace:detail 31 constexpr either_impl(select<0>, T &&t) : val(move(t)) {} 34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {} 49 constexpr const T &get(select<0>) { return val; } 50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) { 51 return rest.get(select<N-1>{}); 76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {} 85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{})) [all...] |
/external/eigen/Eigen/src/Core/ |
Select.h | 15 /** \class Select 25 * It is the return type of DenseBase::select() and most of the time this is the only way it is used. 27 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const 32 struct traits<Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> > 55 class Select : internal::no_assignment_operator, 56 public internal::dense_xpr_base< Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >::type 60 typedef typename internal::dense_xpr_base<Select>::type Base; 61 EIGEN_DENSE_PUBLIC_INTERFACE(Select) 63 Select(const ConditionMatrixType& a_conditionMatrix, 119 * \sa class Select 124 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase 138 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase 153 DenseBase<Derived>::select(const typename ElseDerived::Scalar& thenScalar, function in class:Eigen::DenseBase [all...] |
/frameworks/base/core/java/android/net/ |
PacProxySelector.java | 59 public List<Proxy> select(URI uri) { method in class:PacProxySelector 65 Log.e(TAG, "select: no proxy service return NO_PROXY");
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
HorizontalHoverCardSwitcher.java | 65 * Select a childView inside a grid view and create/bind a corresponding hover card view 68 public void select(HorizontalGridView gridView, View childView, Object object) { method in class:HorizontalHoverCardSwitcher 75 select(object);
|
PresenterSwitcher.java | 45 public void select(Object object) { method in class:PresenterSwitcher 94 * Called when a view is bound to the object of {@link #select(Object)}.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/ |
MockAbstractSelector.java | 77 public int select(long arg0) throws IOException { method in class:MockAbstractSelector 81 public int select() throws IOException { method in class:MockAbstractSelector
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
ScrolledList.py | 51 self.select(index) 57 self.select(index) 69 self.select(index) 86 self.select(index) 99 self.select(index) 103 def select(self, index): member in class:ScrolledList 127 def on_select(self, index): print "select", self.get(index)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_file_eintr.py | 15 import select namespace 121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
|
test_pty.py | 11 import select namespace 205 self.orig_pty_select = pty.select 213 pty.select = self.orig_pty_select 244 # Expect two select calls, the last one will cause IndexError 245 pty.select = self._mock_select 254 rfds = select.select([read_from_stdout_fd, masters[1]], [], [], 0)[0] 273 # Expect two select calls, the last one will cause IndexError 274 pty.select = self._mock_select 278 # both encountered an EOF before the second select call [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
ScrolledList.py | 51 self.select(index) 57 self.select(index) 69 self.select(index) 86 self.select(index) 99 self.select(index) 103 def select(self, index): member in class:ScrolledList 127 def on_select(self, index): print "select", self.get(index)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_file_eintr.py | 15 import select namespace 121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
|
test_pty.py | 11 import select namespace 205 self.orig_pty_select = pty.select 213 pty.select = self.orig_pty_select 244 # Expect two select calls, the last one will cause IndexError 245 pty.select = self._mock_select 254 rfds = select.select([read_from_stdout_fd, masters[1]], [], [], 0)[0] 273 # Expect two select calls, the last one will cause IndexError 274 pty.select = self._mock_select 278 # both encountered an EOF before the second select call [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ScrolledList.py | 51 self.select(index) 57 self.select(index) 69 self.select(index) 86 self.select(index) 99 self.select(index) 103 def select(self, index): member in class:ScrolledList 127 def on_select(self, index): print "select", self.get(index)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_file_eintr.py | 15 import select namespace 121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
|
test_pty.py | 11 import select namespace 205 self.orig_pty_select = pty.select 213 pty.select = self.orig_pty_select 244 # Expect two select calls, the last one will cause IndexError 245 pty.select = self._mock_select 254 rfds = select.select([read_from_stdout_fd, masters[1]], [], [], 0)[0] 273 # Expect two select calls, the last one will cause IndexError 274 pty.select = self._mock_select 278 # both encountered an EOF before the second select call [all...] |