/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
RedundentExprEliminator.java | 1178 Expression select = efe.getSelect(); local [all...] |
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/rbnf/ |
RbnfDemo.java | 144 textField.select(parsePosition.getIndex(), fieldText.length()); 186 formatterMenu.select("Custom"); 212 formatterMenu.select("Custom"); 560 public void select(int start, int end) { method in class:DemoTextFieldHolder 561 tf1.select(start, end);
|
/art/test/044-proxy/src/ |
ReturnsAndArgPassing.java | 47 Object selectArg(int select, int a, long b, float c, double d, Object x); 79 int select = (Integer)args[0]; local 80 return args[select];
|
/cts/apps/CtsVerifier/assets/scripts/ |
execute_power_tests.py | 19 import select namespace [all...] |
/external/autotest/client/bin/input/ |
input_device.py | 19 import select namespace 672 _rl, _, _ = select.select([d.f for d in devices], [], [])
|
/external/autotest/client/common_lib/ |
pexpect.py | 68 import select namespace [all...] |
/external/autotest/client/virt/ |
aexpect.py | 8 import os, sys, pty, select, termios, fcntl namespace 129 r, w, x = select.select([shell_fd, inpipe_fd], fds, [], 0.5) 796 r, w, x = select.select([fd], [], [], 0.05) 914 r, w, x = select.select([fd], [], [], timeout) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
serialposix.py | 15 import sys, os, fcntl, termios, struct, select, errno, time namespace 317 vmin = vtime = 0 # timeout is done via select 452 # select based implementation, proved to work on many systems 461 ready,_,_ = select.select([self.fd],[],[], self._timeout) 462 # If select was used with a timeout, and the timeout occurs, it 469 # read should always return some data as select reported it was 477 except select.error, e: 479 # see also http://www.python.org/dev/peps/pep-3151/#select 501 # when timeout is set, use select to wait for being read [all...] |
/external/curl/lib/ |
curl_setup.h | 299 # include <sys/socket.h> /* for select and ioctl*/ 302 /* change which select is used for libcurl */ 303 # define select(a,b,c,d,e) tpf_select_libcurl(a,b,c,d,e) macro 317 # define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,0) macro 423 # define select(n,r,w,x,t) select_s(n,r,w,x,t) macro
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CCombo3.java | 247 select(index); 455 public void select(int index) { method in class:CCombo3 466 m_table.select(index); 484 select(index); 489 select(-1);
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
PluralFormat.java | 493 keyword=selector.select(context, number-offset); 531 public String select(Object context, double number); method in interface:PluralFormat.PluralSelector 538 public String select(Object context, double number) { method in class:PluralFormat.PluralSelectorAdapter 541 return pluralRules.select(dec); 592 // Select it based on the formatted number-offset. [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralFormat.java | 508 keyword=selector.select(context, number-offset); 546 public String select(Object context, double number); method in interface:PluralFormat.PluralSelector 553 public String select(Object context, double number) { method in class:PluralFormat.PluralSelectorAdapter 556 return pluralRules.select(dec); 609 // Select it based on the formatted number-offset. [all...] |
/external/libnfc-nci/src/nfa/include/ |
nfa_cho_api.h | 51 #define NFA_CHO_SEL_ERR_EVT 0x07 /* Received select with error */ 181 tNFA_CHO_SELECT select; /* NFA_CHO_SELECT_EVT */ member in union:__anon16185 286 ** The alternative carrier information of Handover Select record 303 ** Description This function is called to send Handover Select message with
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_compiler_util.c | 327 * @return A bit mask specifying whether this swizzle will select from an RGB 380 struct src_select * select; local 382 select = &data->Selects[data->SelectCount++]; 383 select->File = file; 384 select->Index = index; 385 select->SrcType = src_type;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
ProxySelectorTest.java | 108 * java.net.ProxySelector#select(URI) 113 proxyList = selector.select(httpUri); 129 proxyList = selector.select(httpUri); 132 proxyList = selector.select(httpsUri); 135 proxyList = selector.select(ftpUri); 138 proxyList = selector.select(tcpUri); 144 * java.net.ProxySelector#select(URI) 154 proxyList = selector.select(httpUri); 170 proxyList = selector.select(httpUri); 174 proxyList = selector.select(httpsUri) 540 public List<Proxy> select(URI uri) { method in class:ProxySelectorTest.MockProxySelector [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
HttpURLConnectionTest.java | 140 public java.util.List<Proxy> select(URI uri) { method in class:HttpURLConnectionTest.TestProxySelector
|
/packages/apps/Camera2/src/com/android/camera/util/ |
ConcurrentSharedRingBuffer.java | 91 * @param element The element to select or not select. 94 public boolean select(E element); method in interface:ConcurrentSharedRingBuffer.Selector 468 selected = selector.select(pinnedCandidate.second); 470 // Don't leak pinnedCandidate if the above select() threw an
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
asyncore.py | 39 If your operating system supports the select() system call in its I/O 49 import select namespace 107 if flags & select.POLLIN: 109 if flags & select.POLLOUT: 111 if flags & select.POLLPRI: 113 if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): 145 r, w, e = select.select(r, w, e, timeout [all...] |
subprocess.py | 429 import select namespace 430 _has_poll = hasattr(select, 'poll') 434 # When select or poll has indicated that the file is writable, 437 _PIPE_BUF = getattr(select, 'PIPE_BUF', 512) 785 # all, using select() or threads is unnecessary. [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
rpc.py | 33 import select namespace 331 r, w, x = select.select([], [self.sock], []) 347 r, w, x = select.select([self.sock.fileno()], [], [], wait)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/logging/ |
config.py | 58 the ability to select from various pre-canned configurations (if the 885 import select namespace [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
findertools.py | 108 def select(file): function 109 """select a file in the finder. Specify file by name, fsref or fsspec.""" 113 return finder.select(file_alias) 780 select(f) # select this file
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_smtplib.py | 9 import select namespace 31 r, w, e = select.select([], [conn], []) 110 if hasattr(select, 'poll'):
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
asyncore.py | 39 If your operating system supports the select() system call in its I/O 49 import select namespace 107 if flags & select.POLLIN: 109 if flags & select.POLLOUT: 111 if flags & select.POLLPRI: 113 if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): 145 r, w, e = select.select(r, w, e, timeout [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
rpc.py | 33 import select namespace 331 r, w, x = select.select([], [self.sock], []) 347 r, w, x = select.select([self.sock.fileno()], [], [], wait)
|