Searched refs:ch (Results 51 - 75 of 1466) sorted by relevance

1234567891011>>

/external/syslinux/com32/lib/
H A Dstrncmp.c11 unsigned char ch; local
15 d = (int)(ch = *c1++) - (int)*c2++;
16 if (d || !ch)
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_simple_parser.cpp20 uint8_t ch; local
24 ch = m_pData[m_dwCurPos++];
25 while (PDFCharIsWhitespace(ch)) {
28 ch = m_pData[m_dwCurPos++];
31 if (ch != '%')
37 ch = m_pData[m_dwCurPos++];
38 if (PDFCharIsLineEnding(ch))
45 if (PDFCharIsDelimiter(ch)) {
46 if (ch == '/') {
50 ch
[all...]
/external/c-ares/
H A Dinet_net_pton.c81 int n, ch, tmp = 0, dirty, bits; local
84 ch = *src++;
85 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
93 while ((ch = *src++) != '\0' && ISASCII(ch) && ISXDIGIT(ch)) {
94 if (ISUPPER(ch))
95 ch = tolower(ch);
96 n = aresx_sztosi(strchr(xdigits, ch)
208 char ch; local
240 char ch; local
284 int ch, saw_xdigit; local
[all...]
/external/e2fsprogs/lib/support/
H A Dargv_parse.c49 char **argv, **new_argv, *buf, ch; local
59 for (cp = in_buf; (ch = *cp); cp++) {
61 if (isspace((int) ch))
79 if (ch == '"')
82 *outcp++ = ch;
86 if (isspace((int) ch)) {
95 if (ch == '"') {
99 if (ch == '\\') {
100 ch = *++cp;
101 switch (ch) {
[all...]
/external/freetype/src/autofit/
H A Dafblue.hin28 #define GET_UTF8_CHAR( ch, p ) \
31 ch = (unsigned char)*p++; \
32 if ( ch >= 0x80 ) \
37 if ( ch < 0xE0 ) \
40 ch &= 0x1F; \
42 else if ( ch < 0xF0 ) \
45 ch &= 0x0F; \
50 ch &= 0x07; \
54 ch = ( ch <<
[all...]
/external/google-breakpad/src/common/android/testing/include/
H A Dwchar.h50 static wchar_t inline wcstolower(wchar_t ch) { argument
51 if (ch >= L'a' && ch <= L'A')
52 ch -= L'a' - L'A';
53 return ch;
/external/icu/icu4c/source/test/intltest/
H A Dtestutil.cpp18 UnicodeString &TestUtility::appendHex(UnicodeString &buf, UChar32 ch) { argument
19 if (ch >= 0x10000) {
20 if (ch >= 0x100000) {
21 buf.append(HEX[0xF&(ch>>20)]);
23 buf.append(HEX[0xF&(ch>>16)]);
25 buf.append(HEX[0xF&(ch>>12)]);
26 buf.append(HEX[0xF&(ch>>8)]);
27 buf.append(HEX[0xF&(ch>>4)]);
28 buf.append(HEX[0xF&ch]);
32 UnicodeString TestUtility::hex(UChar32 ch) { argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLCharacterRecognizer.java24 * Class used to verify whether the specified <var>ch</var>
32 * Returns whether the specified <var>ch</var> conforms to the XML 1.0 definition
35 * @param ch Character to check as XML whitespace.
36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false.
38 public static boolean isWhiteSpace(char ch) argument
40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA);
46 * @param ch Characte
52 isWhiteSpace(char ch[], int start, int length) argument
[all...]
/external/libevent/
H A Depoll.c176 const struct event_change *ch)
194 if ((ch->read_change & EV_CHANGE_ADD) ||
195 (ch->write_change & EV_CHANGE_ADD)) {
200 if (ch->read_change & EV_CHANGE_ADD) {
202 } else if (ch->read_change & EV_CHANGE_DEL) {
204 } else if (ch->old_events & EV_READ) {
207 if (ch->write_change & EV_CHANGE_ADD) {
209 } else if (ch->write_change & EV_CHANGE_DEL) {
211 } else if (ch->old_events & EV_WRITE) {
214 if ((ch
174 epoll_apply_one_change(struct event_base *base, struct epollop *epollop, const struct event_change *ch) argument
337 struct event_change *ch; local
355 struct event_change ch; local
373 struct event_change ch; local
[all...]
/external/curl/docs/examples/
H A Dusercertinmem.c178 CURL *ch; local
182 ch = curl_easy_init();
183 rv = curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L);
184 rv = curl_easy_setopt(ch, CURLOPT_HEADER, 0L);
185 rv = curl_easy_setopt(ch, CURLOPT_NOPROGRESS, 1L);
186 rv = curl_easy_setopt(ch, CURLOPT_NOSIGNAL, 1L);
187 rv = curl_easy_setopt(ch, CURLOPT_WRITEFUNCTION, writefunction);
188 rv = curl_easy_setopt(ch, CURLOPT_WRITEDATA, stdout);
189 rv = curl_easy_setopt(ch, CURLOPT_HEADERFUNCTION, writefunction);
190 rv = curl_easy_setopt(ch, CURLOPT_HEADERDAT
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java102 int ch;
105 ch = UTF16Util.nextCodePoint(source, i);
106 i+=UTF16Util.codePointLength(ch);
107 data.getRecursiveDecomposition(canonical, ch, buffer);
114 ch = UTF16Util.nextCodePoint(buffer, j);
115 j+=UTF16Util.codePointLength(ch);
116 int chClass = data.getCanonicalClass(ch);
128 UTF16Util.insertCodePoint(target, k, ch);
150 int ch = UTF16Util.nextCodePoint(target, decompPos);
151 decompPos += UTF16Util.codePointLength(ch);
180 getExcluded(char ch) argument
187 getRawDecompositionMapping(char ch) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java101 int ch;
104 ch = UTF16Util.nextCodePoint(source, i);
105 i+=UTF16Util.codePointLength(ch);
106 data.getRecursiveDecomposition(canonical, ch, buffer);
113 ch = UTF16Util.nextCodePoint(buffer, j);
114 j+=UTF16Util.codePointLength(ch);
115 int chClass = data.getCanonicalClass(ch);
127 UTF16Util.insertCodePoint(target, k, ch);
149 int ch = UTF16Util.nextCodePoint(target, decompPos);
150 decompPos += UTF16Util.codePointLength(ch);
179 getExcluded(char ch) argument
186 getRawDecompositionMapping(char ch) argument
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java247 final char ch = this.currentHeader.charAt(from);
248 if (isTokenSeparator(ch) || isWhitespace(ch)) {
300 final char ch = this.currentHeader.charAt(from);
301 if (isTokenSeparator(ch)) {
303 } else if (isWhitespace(ch)) {
305 } else if (isTokenChar(ch)) {
353 * @param ch the character to check
358 protected boolean isTokenSeparator(char ch) { argument
359 return (ch
374 isWhitespace(char ch) argument
394 isTokenChar(char ch) argument
428 isHttpSeparator(char ch) argument
[all...]
/external/libjpeg-turbo/
H A Drdswitch.c29 register int ch; local
31 ch = getc(file);
32 if (ch == '#') {
34 ch = getc(file);
35 } while (ch != '\n' && ch != EOF);
37 return ch;
46 register int ch; local
51 ch = text_getc(file);
52 if (ch
148 register int ch; local
326 char ch; local
366 char ch; local
[all...]
/external/syslinux/com32/lib/sys/
H A Dxserial_write.c44 static void emit(char ch) argument
46 write_serial(ch);
65 unsigned char ch = *bufp++; local
69 if (ch >= 1 && ch <= 5) {
71 ndigits = ch;
72 } else if (ch == '\n') {
76 emit(ch);
81 if (ch == '#') {
90 num = ch
[all...]
/external/libcups/cups/
H A Dtranscode.c121 int ch; /* Character from string */ local
129 ch = *src++ & 255;
131 if (ch & 128)
133 *destptr++ = (cups_utf8_t)(0xc0 | (ch >> 6));
134 *destptr++ = (cups_utf8_t)(0x80 | (ch & 0x3f));
137 *destptr++ = (cups_utf8_t)ch;
242 int ch, /* Character from string */ local
251 ch = *src++;
253 if ((ch & 0xe0) == 0xc0)
255 ch
345 cups_utf8_t ch; /* Character value */ local
567 cups_utf32_t ch; /* Character value */ local
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_streamparser.cpp234 int ch = m_pBuf[m_Pos++]; local
236 while (PDFCharIsWhitespace(ch)) {
240 ch = m_pBuf[m_Pos++];
243 if (ch != '%')
250 ch = m_pBuf[m_Pos++];
251 if (PDFCharIsLineEnding(ch))
256 if (PDFCharIsDelimiter(ch) && ch != '/') {
265 m_WordBuffer[m_WordSize++] = ch;
267 if (!PDFCharIsNumeric(ch))
398 int ch = m_pBuf[m_Pos++]; local
578 int ch = m_pBuf[m_Pos++]; local
[all...]
/external/pdfium/xfa/fxbarcode/oned/
H A DBC_OnedCode39Writer.cpp51 FX_WCHAR ch = contents.GetAt(i); local
52 if ((ch >= (FX_WCHAR)'0' && ch <= (FX_WCHAR)'9') ||
53 (ch >= (FX_WCHAR)'A' && ch <= (FX_WCHAR)'Z') || ch == (FX_WCHAR)'-' ||
54 ch == (FX_WCHAR)'.' || ch == (FX_WCHAR)' ' || ch == (FX_WCHAR)'*' ||
55 ch
68 FX_WCHAR ch = contents.GetAt(i); local
93 FX_WCHAR ch = contents.GetAt(i); local
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DTreeWalker.java17 abstract void down(int ch); argument
/external/libpng/contrib/mips-msa/
H A Dlinux.c39 int ch = fgetc(f); local
42 while(!(ch <= 32))
44 word[i++] = ch;
45 ch = fgetc(f);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPatternUtil.java48 char ch = stringWithWildcards.charAt(i);
49 switch (ch) {
70 result.append(ch);
73 result.append(ch);
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
H A DPatternUtil.java48 char ch = stringWithWildcards.charAt(i);
49 switch (ch) {
69 result.append(ch);
72 result.append(ch);
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPatternUtil.java48 char ch = stringWithWildcards.charAt(i);
49 switch (ch) {
69 result.append(ch);
72 result.append(ch);
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/util/
H A DPatternUtil.java48 char ch = stringWithWildcards.charAt(i);
49 switch (ch) {
69 result.append(ch);
72 result.append(ch);
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPatternUtil.java48 char ch = stringWithWildcards.charAt(i);
49 switch (ch) {
69 result.append(ch);
72 result.append(ch);

Completed in 694 milliseconds

1234567891011>>