HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 351 - 375 of 4247) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue8017.go 14 var ch chan int
16 case <-ch:
17 case <-make(chan int, len([2][]int{([][]int{})[len(ch)], []int{}})):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 66 def _insert_printable_char(self, ch):
75 self.win.addch(ch)
84 def do_command(self, ch):
87 self.lastcmd = ch
88 if curses.ascii.isprint(ch):
90 self._insert_printable_char(ch)
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
104 elif ch == curses.ascii.EOT: # ^
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 66 def _insert_printable_char(self, ch):
75 self.win.addch(ch)
84 def do_command(self, ch):
87 self.lastcmd = ch
88 if curses.ascii.isprint(ch):
90 self._insert_printable_char(ch)
91 elif ch == curses.ascii.SOH: # ^a
93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE):
102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE):
104 elif ch == curses.ascii.EOT: # ^
    [all...]
  /external/aac/libSACenc/src/
sacenc_lib.cpp 385 int i, ch; local
439 for (ch = 0; ch < setup.maxChIn; ch++) {
440 FDK_ALLOCATE_MEMORY_1D_INT(hEnc->phQmfFiltIn__FDK[ch], 1,
442 FDK_ALLOCATE_MEMORY_1D_INT(hEnc->phQmfFiltIn__FDK[ch]->FilterStates,
450 for (ch = 0; ch < setup.maxChIn; ch++) {
452 (error = fdk_sacenc_createDCFilter(&hEnc->phDCFilterSigIn[ch]))) {
625 int ch; \/* loop counter *\/ local
864 int ch; local
993 int i, ch, ps, winCnt, ts, slot; local
1486 int ch, i; local
    [all...]
  /bionic/libc/arch-mips/string/
memchr.c 76 do_bytes (const op_t* w, unsigned char ch)
79 for (; *p != ch; ++p);
86 return do_bytes(in, ch); \
109 unsigned char ch = (unsigned char) c_in; local
115 if (*p == ch)
121 mask_c = ch | (ch << 8);
180 if (*p == ch)
  /device/google/contexthub/firmware/os/platform/native/
platform.c 43 void platLogPutchar(char ch)
45 putchar(ch);
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/scmi/
scmi_private.h 138 void scmi_get_channel(scmi_channel_t *ch);
139 void scmi_send_sync_command(scmi_channel_t *ch);
140 void scmi_put_channel(scmi_channel_t *ch);
142 static inline void validate_scmi_channel(scmi_channel_t *ch)
144 assert(ch && ch->is_initialized);
145 assert(ch->info && ch->info->scmi_mbx_mem);
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 61 int ch; local
62 while ((ch = instream.read()) != -1) {
63 if (ch == 13) {
65 } else if (ch == 10) {
71 } else if ((ch < 32) || (ch > 127)) {
73 buffer.append(Integer.toHexString(ch));
76 buffer.append((char) ch);
  /external/icu/icu4c/source/common/
util_props.cpp 151 UChar32 ch = str.char32At(p); local
153 if (u_isIDStart(ch)) {
154 buf.append(ch);
160 if (u_isIDPart(ch)) {
161 buf.append(ch);
166 p += U16_LENGTH(ch);
196 UChar32 ch = text.char32At(p); local
197 int32_t d = u_digit(ch, radix);
  /external/icu/icu4c/source/tools/toolutil/
dbgutil.cpp 119 char ch[256]; local
122 u_UCharsToChars(u, ch, len);
123 ch[len] = 0; /* include terminating \0 */
124 return atoi(ch);
131 char ch[256]; local
134 u_UCharsToChars(u, ch, len);
135 ch[len] = 0; /* include terminating \0 */
136 return atof(ch);
  /external/libxml2/include/libxml/
chvalid.h 211 xmlIsBaseChar(unsigned int ch);
213 xmlIsBlank(unsigned int ch);
215 xmlIsChar(unsigned int ch);
217 xmlIsCombining(unsigned int ch);
219 xmlIsDigit(unsigned int ch);
221 xmlIsExtender(unsigned int ch);
223 xmlIsIdeographic(unsigned int ch);
225 xmlIsPubidChar(unsigned int ch);
  /external/python/cpython3/Lib/idlelib/
pyparse.py 259 ch = str[i]
263 if ch == 'x':
266 if ch == '\n':
273 if ch == '(':
277 if ch == ')':
283 if ch == '"' or ch == "'":
285 quote = ch
292 ch = str[i]
295 if ch == 'x'
    [all...]
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
MyApplication.java 2 * Copyright (c) 2004-2011 QOS.ch
32 import ch.qos.cal10n.IMessageConveyor;
33 import ch.qos.cal10n.MessageConveyor;
  /external/syslinux/com32/gdbstub/
gdbstub.c 77 void (*parse) (struct gdbstub * stub, char ch);
215 static void gdbstub_state_new(struct gdbstub *stub, char ch);
216 static void gdbstub_state_data(struct gdbstub *stub, char ch);
217 static void gdbstub_state_cksum1(struct gdbstub *stub, char ch);
218 static void gdbstub_state_cksum2(struct gdbstub *stub, char ch);
219 static void gdbstub_state_wait_ack(struct gdbstub *stub, char ch);
228 static uint8_t gdbstub_from_hex_digit(char ch)
230 if (ch >= '0' && ch <= '9')
231 return ch - '0'
346 char ch = 0; local
    [all...]
  /external/webrtc/webrtc/voice_engine/
voe_network_impl.cc 41 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
42 voe::Channel* channelPtr = ch.channel();
52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
53 voe::Channel* channelPtr = ch.channel();
78 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
79 voe::Channel* channelPtr = ch.channel();
101 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); local
102 voe::Channel* channelPtr = ch.channel();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStreamTest.java 39 CipherOutputStream ch = new CipherOutputStream((OutputStream) null) {}; local
41 new CipherOutputStream(ch, Cipher
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapResponseParser.java 197 final int ch = readByte(); local
198 if (ch != end) {
199 bufferReadUntil.append((char) ch);
225 final int ch = peek(); local
226 if (ch == '+') { // Continuation request
240 if (ch == '*') {
331 final int ch = peek(); local
334 if (ch == '('
335 || ch == ')'
336 || ch == '{
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponseParser.java 227 final int ch = readByte(); local
228 if (ch != end) {
229 mBufferReadUntil.append((char) ch);
259 final int ch = peek(); local
260 if (ch == '+') { // Continuation request
274 if (ch == '*') {
366 final int ch = peek(); local
369 if (ch == '(' || ch == ')' || ch == '{' || ch == ' ' |
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
IDNAReference.java 59 private static char toASCIILower(char ch){
60 if(CAPITAL_A <= ch && ch <= CAPITAL_Z){
61 return (char)(ch + LOWER_CASE_DELTA);
63 return ch;
106 private static boolean isLDHChar(int ch){
108 if(ch>0x007A){
112 if( (ch==0x002D) ||
113 (0x0030 <= ch && ch <= 0x0039) |
145 int ch; local
287 int ch; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
IDNAReference.java 56 private static char toASCIILower(char ch){
57 if(CAPITAL_A <= ch && ch <= CAPITAL_Z){
58 return (char)(ch + LOWER_CASE_DELTA);
60 return ch;
103 private static boolean isLDHChar(int ch){
105 if(ch>0x007A){
109 if( (ch==0x002D) ||
110 (0x0030 <= ch && ch <= 0x0039) |
142 int ch; local
284 int ch; local
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
xpp3_min-1.1.4c.jar 
  /prebuilts/tools/common/m2/repository/xpp3/xpp3_min/1.1.4c/
xpp3_min-1.1.4c.jar 

Completed in 682 milliseconds

<<11121314151617181920>>