/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Standard_Suite.py | 425 def select(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events 426 """select: Make a selection 427 Required argument: the object to select
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_asyncore.py | 3 import select namespace 75 r, w, e = select.select([conn], [], []) 116 # asyncore.readwrite uses constants in the select module that 121 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required') 128 (select.POLLIN, 'read'), 129 (select.POLLPRI, 'expt'), 130 (select.POLLOUT, 'write'), 131 (select.POLLERR, 'closed') [all...] |
test_file2k.py | 5 import select namespace 665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
|
test_ssl.py | 8 import select namespace 264 select.select([], [s], [], 5.0) 272 select.select([s], [], [], 5.0) 274 select.select([], [s], [], 5.0) 346 select.select([s], [], []) 348 select.select([], [s], [] [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_asyncore.py | 3 import select namespace 75 r, w, e = select.select([conn], [], []) 116 # asyncore.readwrite uses constants in the select module that 121 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required') 128 (select.POLLIN, 'read'), 129 (select.POLLPRI, 'expt'), 130 (select.POLLOUT, 'write'), 131 (select.POLLERR, 'closed') [all...] |
test_file2k.py | 5 import select namespace 665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
|
test_ssl.py | 8 import select namespace 264 select.select([], [s], [], 5.0) 272 select.select([s], [], [], 5.0) 274 select.select([], [s], [], 5.0) 346 select.select([s], [], []) 348 select.select([], [s], [] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Standard_Suite.py | 425 def select(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events 426 """select: Make a selection 427 Required argument: the object to select
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 3 import select namespace 75 r, w, e = select.select([conn], [], []) 116 # asyncore.readwrite uses constants in the select module that 121 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required') 128 (select.POLLIN, 'read'), 129 (select.POLLPRI, 'expt'), 130 (select.POLLOUT, 'write'), 131 (select.POLLERR, 'closed') [all...] |
test_file2k.py | 5 import select namespace 665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
|
test_ssl.py | 8 import select namespace 264 select.select([], [s], [], 5.0) 272 select.select([s], [], [], 5.0) 274 select.select([], [s], [], 5.0) 346 select.select([s], [], []) 348 select.select([], [s], [] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 3 import select namespace 75 r, w, e = select.select([conn], [], []) 116 # asyncore.readwrite uses constants in the select module that 121 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required') 128 (select.POLLIN, 'read'), 129 (select.POLLPRI, 'expt'), 130 (select.POLLOUT, 'write'), 131 (select.POLLERR, 'closed') [all...] |
test_file2k.py | 5 import select namespace 665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
|
test_ssl.py | 8 import select namespace 264 select.select([], [s], [], 5.0) 272 select.select([s], [], [], 5.0) 274 select.select([], [s], [], 5.0) 346 select.select([s], [], []) 348 select.select([], [s], [] [all...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
SystemMediaRouteProvider.java | 403 userRouteRecord.mRoute.select(); 405 // Select the route if it already exists in the compat media router. 406 // If not, we will select it instead when the route is added. 413 route.select(); 472 route.select(); [all...] |
/art/compiler/optimizing/ |
instruction_simplifier.cc | 90 void VisitSelect(HSelect* select) OVERRIDE; 679 void InstructionSimplifierVisitor::VisitSelect(HSelect* select) { 681 HInstruction* condition = select->GetCondition(); 682 HInstruction* true_value = select->GetTrueValue(); 683 HInstruction* false_value = select->GetFalseValue(); 689 select->ReplaceInput(false_value, 0); 690 select->ReplaceInput(true_value, 1); 691 select->ReplaceInput(condition, 2); 713 replace_with = GetGraph()->InsertOppositeCondition(condition, select); 718 select->ReplaceWith(replace_with) 1671 HInstruction* select = new (GetGraph()->GetArena()) HSelect(condition, nan, invoke, dex_pc); local [all...] |
/external/autotest/client/common_lib/ |
base_utils.py | 15 import select namespace 259 while select.select([pipe], [], [], 0)[0]: [all...] |
base_utils_unittest.py | 6 import select namespace 769 """Test that we actually select twice if the first one returns EINTR.""" 774 self.god.stub_function(base_utils.select, 'select') 776 base_utils.select.select.expect_any_call().and_raises( 777 select.error(errno.EINTR, 'Select interrupted')) 780 base_utils.select.select.expect_any_call().and_return [all...] |
/external/autotest/server/ |
server_job.py | 14 import getpass, os, sys, re, tempfile, time, select, platform namespace [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/ |
fixture.py | 1104 def select(self, name, value, index=None): member in class:Form [all...] |
/external/curl/tests/server/ |
sockfilt.c | 504 * WinSock select() does not support standard file descriptors, 506 * to re-create a select() function with support for other handle types. 508 * select() function with support for WINSOCK2 sockets and all 516 HANDLE handle; /* actual handle to wait for during select */ 876 #define select(a,b,c,d,e) select_ws(a,b,c,d,e) macro 987 /* select() blocking behavior call on blocking descriptors please */ 989 rc = select(maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout); 999 logmsg("select() failed with error: (%d) %s", [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ConfigTab.java | 161 // Listen to mouse events to select the corresponding build in the components view 170 componentsView.select(ConfigTab.this.results, ConfigTab.this.configName, (String) ConfigTab.this.firstLine.get(cellPosition.x), tabTable.getItem(cellPosition.y).getText()); 203 // Select the first line by default (as this is the current build) 204 this.table.select(0); 570 * Select the line corresponding to the given build. 572 void select(BuildResultsElement buildResultsElement) { method in class:ConfigTab 579 this.table.select(i);
|
/external/icu/icu4c/source/i18n/ |
plurrule.cpp | 240 PluralRules::select(int32_t number) const { function in class:PluralRules 241 return select(FixedDecimal(number)); 245 PluralRules::select(double number) const { function in class:PluralRules 246 return select(FixedDecimal(number)); 250 PluralRules::select(const FixedDecimal &number) const { function in class:PluralRules 255 return mRules->select(number); 260 PluralRules::select(const VisibleDigitsWithExponent &number) const { function in class:PluralRules 264 return select(FixedDecimal(number.getMantissa())); 895 RuleChain::select(const FixedDecimal &number) const { function in class:RuleChain [all...] |
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
CalendarCalc.java | 238 dateMenu.select(i); 290 localeMenu.select(selectMe); 371 calendars[index].text.select(start,end); 403 * This function is called when users select a new representative city. 415 * This function is called when users select a new time field
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
DatabaseTestBase.java | 116 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); 142 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); 152 database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", new String[]{null}); 157 database.rawQuery("select second_column, first_column from rawtable", new String[]{null}); 162 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", new String[]{"1"}); 168 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", null); 174 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", new String[]{}); 187 * db.rawQuery("select * from exercise WHERE name = ?",null); //this returns an empty cursor 188 * db.rawQuery("select * from exercise WHERE name = ?",new String[]{}); //this returns an empty cursor 192 * db.rawQuery("select * from exercise WHERE name = ?",new String[]{"Leg Press"}); //this returns 1 exercise named "Leg P (…) 518 final String select = "SELECT COUNT(*) FROM table_name"; local [all...] |