/frameworks/base/tools/split-select/ |
Main.cpp | 39 "split-select --help\n" 40 "split-select --target <config> --base <path/to/apk> [--split <path/to/apk> [...]]\n" 41 "split-select --generate --base <path/to/apk> [--split <path/to/apk> [...]]\n" 66 Vector<SplitDescription> select(const SplitDescription& target, const Vector<SplitDescription>& splits) { function in namespace:split 353 Vector<SplitDescription> matchingConfigs = select(targetSplit, splitConfigs);
|
/hardware/bsp/intel/peripheral/libupm/src/sm130/ |
sm130.cxx | 202 bool SM130::select() function in class:SM130 845 if (select())
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
SelectorTest.java | 47 assertEquals(1, selector.select()); 65 assertEquals(1, selector.select()); 79 int count = selector.select(); 96 selector.select(); 98 // create a latch that will reach 0 when select returns 103 selector.select(); 111 // select doesn't ever return, so await() times out and returns false 151 assertEquals(1, selector.select()); 153 assertEquals(0, selector.select()); 186 assertEquals(1, selector.select(100)) [all...] |
/packages/apps/Email/provider_src/com/android/email/provider/ |
FolderPickerActivity.java | 182 public void select(Folder folder) { method in class:FolderPickerActivity
|
/platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/ |
AbstractLeanbackAppHelper.java | 112 * Select target item through the container in the given direction. 118 public UiObject2 select(UiObject2 container, BySelector target, Direction direction) { method in class:AbstractLeanbackAppHelper 181 UiObject2 focused = select(container, section, Direction.UP); 185 focused = select(container, section, Direction.DOWN); 189 throw new UnknownUiException("Failed to select section");
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
SocketServer.py | 97 explicit table of partially finished requests and to use select() to 107 - Standard framework for select-based multiplexing 133 import select namespace 156 except (OSError, select.error) as e: 170 - fileno() -> int # for select() 235 r, w, e = _eintr_retry(select.select, [self], [], [], 257 # select, get_request(), verify_request() and process_request() 276 fd_sets = _eintr_retry(select.select, [self], [], [], timeout [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
TreeWidget.py | 89 def select(self, event=None): member in class:TreeNode 226 self.canvas.tag_bind(id, "<1>", self.select) 236 self.canvas.tag_bind(id, "<1>", self.select) 267 self.select(event)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/ |
Standard_Suite.py | 129 def select(self, _object=None, _attributes={}, **_arguments): member in class:Standard_Suite_Events 130 """select: select the specified object 131 Required argument: the object to select
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_signal.py | 6 import select namespace 178 r, w, x = select.select([done_r], [], [], self.MAX_DURATION) 243 import select namespace 248 # before select is called 252 select.select([self.read], [], [], self.TIMEOUT_FULL) 257 import select namespace 261 # We attempt to get a signal during the select call 262 self.assertRaises(select.error, select.select [all...] |
test_socketserver.py | 8 import select namespace 11 import select namespace 37 # Remember real select() to avoid interferences with mocking 38 _real_select = select.select 235 """Mocks the select.select() call to raise EINTR for first call""" 236 old_select = select.select 246 raise select.error(errno.EINTR, os.strerror(errno.EINTR) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
SocketServer.py | 97 explicit table of partially finished requests and to use select() to 107 - Standard framework for select-based multiplexing 133 import select namespace 156 except (OSError, select.error) as e: 170 - fileno() -> int # for select() 235 r, w, e = _eintr_retry(select.select, [self], [], [], 257 # select, get_request(), verify_request() and process_request() 276 fd_sets = _eintr_retry(select.select, [self], [], [], timeout [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
TreeWidget.py | 89 def select(self, event=None): member in class:TreeNode 226 self.canvas.tag_bind(id, "<1>", self.select) 236 self.canvas.tag_bind(id, "<1>", self.select) 267 self.select(event)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_signal.py | 6 import select namespace 178 r, w, x = select.select([done_r], [], [], self.MAX_DURATION) 243 import select namespace 248 # before select is called 252 select.select([self.read], [], [], self.TIMEOUT_FULL) 257 import select namespace 261 # We attempt to get a signal during the select call 262 self.assertRaises(select.error, select.select [all...] |
test_socketserver.py | 8 import select namespace 11 import select namespace 37 # Remember real select() to avoid interferences with mocking 38 _real_select = select.select 235 """Mocks the select.select() call to raise EINTR for first call""" 236 old_select = select.select 246 raise select.error(errno.EINTR, os.strerror(errno.EINTR) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
SocketServer.py | 97 explicit table of partially finished requests and to use select() to 107 - Standard framework for select-based multiplexing 133 import select namespace 156 except (OSError, select.error) as e: 170 - fileno() -> int # for select() 235 r, w, e = _eintr_retry(select.select, [self], [], [], 257 # select, get_request(), verify_request() and process_request() 276 fd_sets = _eintr_retry(select.select, [self], [], [], timeout [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
TreeWidget.py | 89 def select(self, event=None): member in class:TreeNode 226 self.canvas.tag_bind(id, "<1>", self.select) 236 self.canvas.tag_bind(id, "<1>", self.select) 267 self.select(event)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/ |
Standard_Suite.py | 129 def select(self, _object=None, _attributes={}, **_arguments): member in class:Standard_Suite_Events 130 """select: select the specified object 131 Required argument: the object to select
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_signal.py | 6 import select namespace 178 r, w, x = select.select([done_r], [], [], self.MAX_DURATION) 243 import select namespace 248 # before select is called 252 select.select([self.read], [], [], self.TIMEOUT_FULL) 257 import select namespace 261 # We attempt to get a signal during the select call 262 self.assertRaises(select.error, select.select [all...] |
test_socketserver.py | 8 import select namespace 11 import select namespace 37 # Remember real select() to avoid interferences with mocking 38 _real_select = select.select 235 """Mocks the select.select() call to raise EINTR for first call""" 236 old_select = select.select 246 raise select.error(errno.EINTR, os.strerror(errno.EINTR) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
SocketServer.py | 97 explicit table of partially finished requests and to use select() to 107 - Standard framework for select-based multiplexing 133 import select namespace 156 except (OSError, select.error) as e: 170 - fileno() -> int # for select() 235 r, w, e = _eintr_retry(select.select, [self], [], [], 257 # select, get_request(), verify_request() and process_request() 276 fd_sets = _eintr_retry(select.select, [self], [], [], timeout [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
TreeWidget.py | 89 def select(self, event=None): member in class:TreeNode 226 self.canvas.tag_bind(id, "<1>", self.select) 236 self.canvas.tag_bind(id, "<1>", self.select) 267 self.select(event)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_signal.py | 6 import select namespace 178 r, w, x = select.select([done_r], [], [], self.MAX_DURATION) 243 import select namespace 248 # before select is called 252 select.select([self.read], [], [], self.TIMEOUT_FULL) 257 import select namespace 261 # We attempt to get a signal during the select call 262 self.assertRaises(select.error, select.select [all...] |
test_socketserver.py | 8 import select namespace 11 import select namespace 37 # Remember real select() to avoid interferences with mocking 38 _real_select = select.select 235 """Mocks the select.select() call to raise EINTR for first call""" 236 old_select = select.select 246 raise select.error(errno.EINTR, os.strerror(errno.EINTR) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
LayoutTestBase.java | 295 public void select(@NonNull Collection<INode> nodes) { method
|
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
jsoup-1.7.2.jar | |