HomeSort by relevance Sort by last modified time
    Searched defs:select (Results 101 - 125 of 711) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 299 def select(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
300 """select: Select the specified object(s)
301 Required argument: the object to select
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 31 import select namespace
239 while select.select([self.rfile], [], [], 0)[0]:
287 while select.select([self.rfile._sock], [], [], 0)[0]:
  /cts/apps/CtsVerifier/assets/scripts/power_monitors/
monsoon.py 23 import select namespace
421 ready_r, ready_w, ready_x = select.select([self.ser], [], [self.ser], 0)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Percentile.java 87 /** Minimum size under which we use a simple insertion sort rather than Hoare's select. */
288 return select(work, pivotsHeap, 0);
291 return select(work, pivotsHeap, length - 1);
293 double lower = select(work, pivotsHeap, intPos - 1);
294 double upper = select(work, pivotsHeap, intPos);
299 * Select the k<sup>th</sup> smallest element from work array
309 private double select(final double[] work, final int[] pivotsHeap, final int k) { method in class:Percentile
323 // select a pivot and partition work array around it
352 /** Select a pivot index as the median of three
  /external/autotest/client/common_lib/
logging_manager_test.py 3 import logging, os, select, StringIO, subprocess, sys, unittest namespace
51 read_list, _, _ = select.select([self._read_end], [], [], 0)
  /external/autotest/client/cros/networking/
android_xmlrpc_server.py 12 import select namespace
113 except select.error as v:
  /external/autotest/client/tests/kvm/scripts/
virtio_console_guest.py 12 import os, select, re, random, sys, array, stat namespace
210 pi = select.poll()
211 po = select.poll()
214 pi.register(fd, select.POLLIN)
217 po.register(fd, select.POLLOUT)
240 ret = select.select(self.in_files, [], [], 1.0)
246 ret = select.select([], self.out_files, [], 1.0)
249 ret = select.select([], self.out_files, [], 1.0
    [all...]
  /external/autotest/client/virt/
kvm_monitor.py 7 import socket, time, threading, logging, select namespace
124 return bool(select.select([self._socket], [], [], timeout)[0])
  /external/autotest/tko/
db.py 32 status_rows = self.select('status_idx, word', 'tko_status', None)
188 self.cur.execute('SELECT LAST_INSERT_ID()', [])
226 def select(self, fields, table, where, distinct=False, group_by=None, member in class:db_sql
244 cmd = ['select']
275 select fields from table "sql"
277 cmd = 'select %s from %s %s' % (fields, table, sql)
416 exists = self.select('id', 'tko_job_keyvals', where=where)
527 rows = self.select('machine_idx', 'tko_machines', where)
535 rows = self.select('kernel_idx', 'tko_kernels',
589 rows = self.select('test_idx', 'tko_tests', where
    [all...]
  /external/chromium-trace/catapult/third_party/webtest/webtest/
forms.py 55 Dictionary of field types (select, radio, etc)
99 class Select(Field):
100 """Field representing ``<select />`` form element."""
103 super(Select, self).__init__(*args, **attrs)
116 def select(self, value=None, text=None): member in class:Select
163 """Field representing ``<select multiple="multiple">``"""
236 class Radio(Select):
251 value = property(value__get, Select.value__set)
341 Field.classes['select'] = Select
579 def select(self, name, value=None, text=None, index=None): member in class:Form
    [all...]
  /external/curl/tests/
http_pipe.py 26 import select namespace
370 rlist, wlist, xlist = select.select(rlist, wlist, xlist, max_poll_time)
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 596 int *select = new int[ncv]; local
602 internal::arpack_wrapper<Scalar, RealScalar>::seupd(&rvec, howmny, select, m_eivalues.data(), v, &ldv,
631 delete select;
655 extern "C" void sseupd_(int *rvec, char *All, int *select, float *d,
670 extern "C" void dseupd_(int *rvec, char *All, int *select, double *d,
690 static inline void seupd(int *rvec, char *All, int *select, Scalar *d,
711 static inline void seupd(int *rvec, char *All, int *select, float *d,
718 sseupd_(rvec, All, select, d, z, ldz, sigma, bmat, n, which, nev, tol, resid, ncv, v, ldv, iparam, ipntr,
733 static inline void seupd(int *rvec, char *All, int *select, double *d,
740 dseupd_(rvec, All, select, d, v, ldv, sigma, bmat, n, which, nev, tol, resid, ncv, v, ldv, iparam, ipntr
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyPluralInfo.java 225 String select(double number) { method in class:CurrencyPluralInfo
226 return pluralRules.select(number);
236 String select(PluralRules.FixedDecimal numberInfo) { method in class:CurrencyPluralInfo
237 return pluralRules.select(numberInfo);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DataDrivenNumberFormatTestSuite.java 84 * Runs a single select test. On success, returns null.
89 public String select(NumberFormatTestTuple tuple) { method in class:DataDrivenNumberFormatTestSuite.CodeUnderTest
332 String errorMessage = codeUnderTest.select(tuple);
  /external/icu/icu4c/source/i18n/
plurfmt.cpp 260 // Select it based on the formatted number-offset.
485 keyword=selector.select(context, number-offset, ec);
583 UnicodeString PluralFormat::PluralSelectorAdapter::select(void *context, double number, function in class:PluralFormat::PluralSelectorAdapter
587 return pluralRules->select(*dec);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyPluralInfo.java 242 String select(double number) { method in class:CurrencyPluralInfo
243 return pluralRules.select(number);
253 String select(PluralRules.FixedDecimal numberInfo) { method in class:CurrencyPluralInfo
254 return pluralRules.select(numberInfo);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DataDrivenNumberFormatTestSuite.java 80 * Runs a single select test. On success, returns null.
85 public String select(NumberFormatTestTuple tuple) { method in class:DataDrivenNumberFormatTestSuite.CodeUnderTest
328 String errorMessage = codeUnderTest.select(tuple);
  /external/messageformat/java/com/ibm/icu/simple/
PluralFormat.java 350 keyword=selector.select(context, number-offset);
388 public String select(Object context, double number); method in interface:PluralFormat.PluralSelector
395 public String select(Object context, double number) { method in class:PluralFormat.PluralSelectorAdapter
398 return pluralRules.select(dec);
  /external/tpm2/
PCR.c 408 // If size of select is less than PCR_SELECT_MAX, zero the unspecified PCR
736 TPMS_PCR_SELECTION *select;
748 select = &selection->pcrSelections[i]; // Point to the current selection
749 FilterPcr(select); // Clear out the bits for unimplemented PCR
755 if(IsPcrSelected(pcr, select)) // Is this PCR selected
784 TPMS_PCR_SELECTION *select;
793 select = &selection->pcrSelections[i]; // Point to the current selection
794 FilterPcr(select); // Clear out the bits for unimplemented PCR
798 if(IsPcrSelected(pcr, select)) // Is this PCR selected
803 // Clear rest of the current select bitma
735 TPMS_PCR_SELECTION *select; local
783 TPMS_PCR_SELECTION *select; local
    [all...]
  /external/v8/src/compiler/
js-inlining.cc 457 Node* select = jsgraph_->graph()->NewNode( local
458 jsgraph_->common()->Select(MachineRepresentation::kTagged), check, node,
460 NodeProperties::ReplaceUses(node, select, check, node, node);
461 NodeProperties::ReplaceValueInput(select, node, 1);
  /external/v8/test/unittests/compiler/
common-operator-reducer-unittest.cc 463 // Select
471 graph()->NewNode(common()->Select(rep, hint), input, input, input));
482 Node* select = local
483 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
485 Reduction r = Reduce(select);
494 Node* select = local
495 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
497 Reduction r = Reduce(select);
506 Node* select = local
507 graph()->NewNode(common()->Select(MachineRepresentation::kTagged)
518 Node* select = local
530 Node* select = local
542 Node* select = graph()->NewNode( local
554 Node* select = local
567 Node* select = local
580 Node* select = graph()->NewNode( local
592 Node* select = graph()->NewNode( local
604 Node* select = graph()->NewNode( local
616 Node* select = graph()->NewNode( local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-nfc.py 227 summary("Handover select received")
309 print "Could not get handover select carrier record from wpa_supplicant"
311 print "Handover select carrier record from wpa_supplicant:"
339 print "Could not get handover select carrier record from wpa_supplicant"
341 print "Handover select carrier record from wpa_supplicant:"
355 print "Handover select:"
362 summary("Sending handover select")
378 import sys, tty, termios, select namespace
386 [i, o, e] = select.select([fd], [], [], 0.05
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.cpp 329 int16 T0, T0_frac, pit_flag, T0_max, select, T0_min = 0; local
681 select = 1;
688 select = 0;
692 select = Serial_parm_1bit(&prms);
697 if (select == 0)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialog.java 70 * select using the media route chooser dialog.
237 route.select();
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 82 return select(methods, new TestMethodPredicate());
162 for (Class<?> testClass : select(allClasses,
169 private <T> List<T> select(Collection<T> items, Predicate<T> predicate) { method in class:TestGrouping

Completed in 737 milliseconds

1 2 3 45 6 7 8 91011>>