Searched defs:ch (Results 26 - 50 of 701) sorted by relevance

1234567891011>>

/external/openssh/openbsd-compat/
H A Dbase64.c200 int ch; local
206 while ((ch = *src++) != '\0') {
207 if (isspace(ch)) /* Skip whitespace anywhere. */
210 if (ch == Pad64)
213 pos = strchr(Base64, ch);
265 if (ch == Pad64) { /* We got a pad char. */
266 ch = *src++; /* Skip it, get next. */
274 for (; ch != '\0'; ch = *src++)
275 if (!isspace(ch))
[all...]
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DElementPolicyTest.java22 final char ch; field in class:ElementPolicyTest.HasCharElementPolicy
24 HasCharElementPolicy(char ch) { argument
25 this.ch = ch;
31 return elementName.indexOf(ch) >= 0 ? elementName : null;
36 return "(has '" + ch + "')";
/external/pdfium/core/include/fxcrt/
H A Dfx_ext.h28 inline FX_BOOL FXSYS_islower(FX_INT32 ch) argument
30 return ch >= 'a' && ch <= 'z';
32 inline FX_BOOL FXSYS_isupper(FX_INT32 ch) argument
34 return ch >= 'A' && ch <= 'Z';
36 inline FX_INT32 FXSYS_tolower(FX_INT32 ch) argument
38 return ch < 'A' || ch > 'Z' ? ch
40 FXSYS_toupper(FX_INT32 ch) argument
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp13 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch) argument
15 m_Buffer.AppendChar((FX_WCHAR)ch);
H A Dfx_unicode.cpp15 FX_BOOL FX_IsCtrlCode(FX_WCHAR ch) argument
17 FX_DWORD dwRet = (gs_FX_TextLayout_CodeProperties[(FX_WORD)ch] & FX_CHARTYPEBITSMASK);
20 FX_BOOL FX_IsRotationCode(FX_WCHAR ch) argument
22 return (gs_FX_TextLayout_CodeProperties[(FX_WORD)ch] & 0x8000) != 0;
/external/toybox/lib/
H A Dportability.c23 int ch; local
41 while ((ch = getc(stream)) != EOF) {
51 line[i] = ch;
52 if (ch == delim) break;
/external/valgrind/none/tests/
H A Dprocfs-cmdline-exe.c24 char ch; local
30 while ((n = read(fd, &ch, 1)) > 0)
32 if (ch == '\\')
34 else if (ch == 0)
36 else if (isprint((unsigned)ch))
37 fprintf(stderr, "%c", ch);
39 fprintf(stderr, "\\0%o", ch);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DLatin1Converter.java171 * @param ch
175 private static byte[] convertToUTF8(byte ch) argument
177 int c = ch & 0xFF;
188 return new String(new byte[] { ch }, "cp1252").getBytes("UTF-8");
195 return new byte[] { ch };
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-core-0.9.8-SNAPSHOT.jar ... META-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ch/qos
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java84 * @param ch A character to convert to an integer digit
87 * @throws DecoderException Thrown if ch is an illegal hex character
89 protected static int toDigit(char ch, int index) throws DecoderException { argument
90 int digit = Character.digit(ch, 16);
92 throw new DecoderException("Illegal hexadecimal charcter " + ch + " at index " + index);
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp106 char ch = *it; local
107 if (ch == 'C' || ch == 'c') {
109 if (ch == 'c' && it != start && isLetter(*(it - 1)))
/external/clang/test/Sema/
H A Dwarn-tautological-compare.c38 int test2(int* pointer, char ch, void * pv) { argument
/external/deqp/executor/
H A DxeXMLWriter.cpp35 inline const char* getEscapeEntity (char ch) argument
37 switch (ch)
115 int EscapeStreambuf::overflow (int ch) argument
117 if (ch == -1)
121 DE_ASSERT((ch & 0xff) == ch);
122 const char chVal = (char)(deUint8)(ch & 0xff);
123 return xsputn(&chVal, 1) == 1 ? ch : -1;
/external/fsck_msdos/
H A Dmain.c74 int ch; local
77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) {
78 switch (ch) {
/external/google-breakpad/src/tools/linux/symupload/
H A Dminidump_upload.cc110 int ch; local
112 while ((ch = getopt(argc, (char * const *)argv, "p:u:v:x:h?")) != -1) {
113 switch (ch) {
128 fprintf(stderr, "Invalid option '%c'\n", ch);
/external/icu/icu4c/source/common/
H A Dbytestrie.cpp435 char ch=(char)c; local
436 out.Append(&ch, 1);
/external/icu/icu4c/source/samples/citer/
H A Dciter.cpp25 void printUChar(UChar32 ch) argument
27 if(ch < 127) {
28 u_fprintf(out, "%C", (UChar) ch);
29 } else if (ch == CharacterIterator::DONE) {
32 u_fprintf(out, "[%X]", ch);
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp37 UChar ch = source[i]; local
38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
40 appendHex(ch, 4, target);
42 target += ch;
/external/icu/icu4c/source/test/perf/strsrchperf/
H A Dstrsrchperf.cpp47 UChar ch = src[end]; local
49 if (ch == 0x000A || ch == 0x000D || ch == 0x2028) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterCompare.java197 * @param ch
206 private static void trackDifference(PrintWriter f, int ch, String method, String ucharval, String charval) argument
214 String temp = Integer.toHexString(ch);
218 temp = UCharacter.getExtendedName(ch);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTestUtility.java14 public static String hex(char ch) { argument
15 String foo = Integer.toString(ch,16).toUpperCase();
19 public static String hex(int ch) { argument
20 String foo = Integer.toString(ch,16).toUpperCase();
/external/jpeg/
H A Djerror.c163 char ch; local
184 while ((ch = *msgptr++) != '\0') {
185 if (ch == '%') {
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp78 int ch; local
120 while ((ch = getopt_long_only(argc, argv, "l:f:L:", g_long_options, &long_option_index)) != -1)
122 // DNBLogDebug("option: ch == %c (0x%2.2x) --%s%c%s\n",
123 // ch, (uint8_t)ch,
127 switch (ch)

Completed in 3715 milliseconds

1234567891011>>