Searched refs:ch (Results 176 - 200 of 1466) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DIDNA2003.java53 private static char toASCIILower(char ch){ argument
54 if(CAPITAL_A <= ch && ch <= CAPITAL_Z){
55 return (char)(ch + LOWER_CASE_DELTA);
57 return ch;
104 int ch;
105 while((ch=iter.next())!= UCharacterIterator.DONE){
106 if(isLabelSeparator(ch)){
120 private static boolean isLDHChar(int ch){ argument
122 if(ch>
143 isLabelSeparator(int ch) argument
[all...]
H A DIntTrie.java116 * @param ch codepoint
119 public final int getCodePointValue(int ch) argument
124 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
126 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
127 + (ch & INDEX_STAGE_3_MASK_);
132 offset = getCodePointOffset(ch);
142 * @param ch lead surrogate character
145 public final int getLeadValue(char ch) argument
147 return m_data_[getLeadOffset(ch)];
157 getBMPValue(char ch) argument
214 getLatin1LinearValue(char ch) argument
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetASCII.java113 int i, ch = 0;
119 for (i = oldSource; i < limit && (((ch = (sourceArray[i] & 0xff)) & 0x80) == 0); i++)
120 targetArray[i + offset] = (char) ch;
127 if ((ch & 0x80) != 0) {
130 return decodeMalformedOrUnmappable(ch);
136 int ch = 0;
143 ch = source.get() & 0xff;
145 if ((ch & 0x80) == 0) {
147 target.put((char)ch);
156 return decodeMalformedOrUnmappable(ch);
163 decodeMalformedOrUnmappable(int ch) argument
324 encodeMalformedOrUnmappable(CharBuffer source, int ch, boolean flush) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIDNA2003.java51 private static char toASCIILower(char ch){ argument
52 if(CAPITAL_A <= ch && ch <= CAPITAL_Z){
53 return (char)(ch + LOWER_CASE_DELTA);
55 return ch;
102 int ch;
103 while((ch=iter.next())!= UCharacterIterator.DONE){
104 if(isLabelSeparator(ch)){
118 private static boolean isLDHChar(int ch){ argument
120 if(ch>
142 isLabelSeparator(int ch) argument
[all...]
H A DIntTrie.java115 * @param ch codepoint
118 public final int getCodePointValue(int ch) argument
123 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
125 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
126 + (ch & INDEX_STAGE_3_MASK_);
131 offset = getCodePointOffset(ch);
141 * @param ch lead surrogate character
144 public final int getLeadValue(char ch) argument
146 return m_data_[getLeadOffset(ch)];
156 getBMPValue(char ch) argument
213 getLatin1LinearValue(char ch) argument
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
H A D1-2.c302 int ch; local
496 for (ch = 0; ch < NTHREADS; ch++) {
499 pthread_create(&t_child[ch], NULL, child,
506 p_child[ch] = fork();
507 if (p_child[ch] == -1) {
509 for (--ch; ch >= 0; ch
[all...]
/external/icu/icu4c/source/test/perf/leperf/
H A DSimpleFontInstance.h55 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
59 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
61 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
/external/libpcap/msdos/
H A Dbin2c.c20 int ch, i; local
34 while ((ch = fgetc(inFile)) != EOF)
38 fprintf (outFile, "0x%02X,", ch);
/external/syslinux/com32/lib/sys/
H A Dstdcon_read.c46 char ch; local
52 ch = *bufp++ = *fp->i.datap++;
55 if (ch == '\n')
/external/valgrind/none/tests/
H A Dsyscall-restart1.c33 char ch = '?'; local
44 ret = read(fds[0], &ch, 1);
48 ret, strerror(errno), ch);
/external/aac/libAACenc/src/
H A Dadj_thr.cpp386 INT ch, sfb, sfbGrp; local
389 for (ch=0; ch<nChannels; ch++) {
390 for(sfbGrp = 0;sfbGrp < psyOutChannel[ch]->sfbCnt;sfbGrp+= psyOutChannel[ch]->sfbPerGroup) {
391 for (sfb=0; sfb<psyOutChannel[ch]->maxSfbPerGroup; sfb++) {
392 thrExpLdData = psyOutChannel[ch]->sfbThresholdLdData[sfbGrp+sfb]>>2 ;
393 thrExp[ch][sfbGrp+sfb] = CalcInvLdData(thrExpLdData);
409 INT ch, sf local
464 INT ch, sfb, sfbGrp; local
620 INT ch; local
660 int ch, noShortWindowInFrame = TRUE; local
770 INT ch; local
807 int ch; local
840 INT ch, sfb,sfbGrp; local
879 INT ch, sfb, sfbGrp; local
981 INT ch, sfbGrp, sfb; local
1176 INT ch, sfb, sfbGrp; local
1353 INT ch; local
1459 INT ch, sfb, sfbGrp; local
1636 int ch, sfb, sfbGrp; local
2638 int ch,sfb,sfbGrp; local
[all...]
/external/libchrome/base/strings/
H A Dsafe_sprintf.cc154 // Emits one |ch| character into the |buffer_| and updates the |count_| of
160 inline bool Out(char ch) {
162 buffer_[count_] = ch;
417 char ch = *back; local
419 *front++ = ch;
451 char ch = *fmt++; local
453 switch (ch) {
459 pad = ch == '0' ? '0' : ' ';
465 10*padding > max_padding - (ch - '0')) {
467 10*padding <= max_padding - (ch
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
H A D3-1.c133 pid_t ch, ctl; local
152 ch = fork();
154 if (ch == -1) {
158 if (ch == 0) { /* child */
197 ctl = waitpid(ch, &status, 0);
199 if (ctl != ch) {
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417HighLevelEncoder.h51 static bool isDigit(FX_WCHAR ch);
52 static bool isAlphaUpper(FX_WCHAR ch);
53 static bool isAlphaLower(FX_WCHAR ch);
54 static bool isMixed(FX_WCHAR ch);
55 static bool isPunctuation(FX_WCHAR ch);
56 static bool isText(FX_WCHAR ch);
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java61 int ch;
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/bison/tests/
H A Dbison.in45 y.tab.[ch]
/external/icu/icu4c/source/common/
H A Dutil_props.cpp151 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/
H A Ddbgutil.cpp119 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/
H A Dchvalid.h211 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/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
H A DMyApplication.java2 * Copyright (c) 2004-2011 QOS.ch
32 import ch.qos.cal10n.IMessageConveyor;
33 import ch.qos.cal10n.MessageConveyor;
/external/syslinux/com32/gdbstub/
H A Dgdbstub.c77 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) argument
230 if (ch >= '0' && ch <= '9')
231 return ch
346 char ch = 0; local
495 gdbstub_state_new(struct gdbstub *stub, char ch) argument
503 gdbstub_state_data(struct gdbstub *stub, char ch) argument
517 gdbstub_state_cksum1(struct gdbstub *stub, char ch) argument
523 gdbstub_state_cksum2(struct gdbstub *stub, char ch) argument
542 gdbstub_state_wait_ack(struct gdbstub *stub, char ch) argument
[all...]
/external/webrtc/webrtc/voice_engine/
H A Dvoe_network_impl.cc41 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();
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DIDNAReference.java57 private static char toASCIILower(char ch){ argument
58 if(CAPITAL_A <= ch && ch <= CAPITAL_Z){
59 return (char)(ch + LOWER_CASE_DELTA);
61 return ch;
104 private static boolean isLDHChar(int ch){ argument
106 if(ch>0x007A){
110 if( (ch==0x002D) ||
111 (0x0030 <= ch && ch <
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DIDNAReference.java56 private static char toASCIILower(char ch){ argument
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){ argument
105 if(ch>0x007A){
109 if( (ch==0x002D) ||
110 (0x0030 <= ch && ch <
[all...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
H A D2-1.c344 int ch; local
541 for (ch = 0; ch < NTHREADS; ch++) {
544 pthread_create(&t_child[ch], NULL, child,
551 p_child[ch] = fork();
552 if (p_child[ch] == -1) {
554 for (--ch; ch >= 0; ch
[all...]

Completed in 779 milliseconds

1234567891011>>