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

1234567891011>>

/external/chromium_org/url/
H A Durl_parse_internal.h15 inline bool IsURLSlash(base::char16 ch) { argument
16 return ch == '/' || ch == '\\';
21 inline bool ShouldTrimFromURL(base::char16 ch) { argument
22 return ch <= ' ';
/external/clang/test/SemaCXX/
H A Dcxx11-inheriting-ctors.cpp21 U<S, char> foo(char ch) { return U<S, char>(ch); } argument
H A Dstring-plus-char.cpp9 A& operator+(char ch) { return *this; } argument
/external/icu/icu4c/source/samples/case/
H A Ducase.c23 UChar32 ch; local
38 ch = u_toupper(char_k); /* ch = 'K' */
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
40 ch = u_tolower(ch); /* ch = 'k' */
41 u_fprintf(out, "tolower() = %C\n", ch);
42 ch = u_totitle(char_k); /* ch
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dnptrans.h52 inline UBool isProhibited(UChar32 ch);
114 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
116 inline UBool isLDHChar(UChar32 ch);
126 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ argument
128 if(ch>0x007A){
132 if( (ch==0x002D) ||
133 (0x0030 <= ch && ch <= 0x0039) ||
134 (0x0041 <= ch && ch <
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_tool.h56 /// Returns true if ch is a control character (in range [0,32[).
58 isControlCharacter(char ch) argument
60 return ch > 0 && ch <= 0x1F;
/external/libmtp/src/
H A Dutil.c97 unsigned char ch= bp[16*lc+i]; local
98 fprintf(f, "%c", ( ch >= 0x20 && ch <= 0x7e ) ?
99 ch : '.');
/external/libpcap/msdos/
H A Dbin2c.c20 int ch, i; local
34 while ((ch = fgetc(inFile)) != EOF)
38 fprintf (outFile, "0x%02X,", ch);
/external/libpng/contrib/arm-neon/
H A Dlinux.c45 int ch = fgetc(f); local
47 if (ch == EOF)
60 if (ch <= 32) /* skip control characters and space */
69 if ((ch & ~0x20) == ch_feature[counter])
83 if (ch != 10 && ch != 13)
91 if (ch == 32 || ch == 9)
94 if (ch == 58) /* i.e. ':' */
108 if (ch
[all...]
/external/libpng/contrib/tools/
H A Dchecksum-icc.c28 int ch = getc(ip); local
31 if (ch == EOF) break;
33 b = (Byte)ch;
/external/libunwind/tests/
H A Dia64-test-sig.c83 int ch; local
85 ch = *p; /* trigger SIGSEGV */
/external/libvorbis/test/
H A Dtest.c41 int ch; local
45 for(ch=1;ch<=8;ch++){
47 printf("\nTesting %d channel%s\n\n",ch,ch==1?"":"s");
51 snprintf (filename, sizeof (filename), "vorbis_%dch_q%.1f_%u.ogg", ch,q*10,sample_rates [k]);
59 write_vorbis_data_or_die (filename, sample_rates [k], q, data_out, ARRAY_LEN (data_out),ch);
/external/lldb/source/Core/
H A DDataBufferHeap.cpp24 // with "ch".
26 DataBufferHeap::DataBufferHeap (lldb::offset_t n, uint8_t ch) : argument
30 m_data.assign (n, ch);
/external/lldb/test/python_api/frame/
H A Dmain.c17 int a(int val, char ch) argument
20 char my_ch = ch;
21 printf("a(val=%d, ch='%c')\n", val, ch);
23 return b(val+1, ch+1);
25 return c(val+1, ch+1);
30 int b(int val, char ch) argument
33 char my_ch = ch;
34 printf("b(val=%d, ch='%c')\n", val, ch);
38 c(int val, char ch) argument
[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.h36 inline FX_BOOL FXSYS_islower(FX_INT32 ch) argument
38 return ch >= 'a' && ch <= 'z';
40 inline FX_BOOL FXSYS_isupper(FX_INT32 ch) argument
42 return ch >= 'A' && ch <= 'Z';
44 inline FX_INT32 FXSYS_tolower(FX_INT32 ch) argument
46 return ch < 'A' || ch > 'Z' ? ch
48 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/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxevents.c114 GR_KEY ch = keystroke -> ch ; local
121 if (ch & MWKEY_NONASCII_MASK) {
122 keysym -> sym = NX_NONASCII_keymap [ch & 0xFF] ;
124 keysym -> sym = ch & 0x7F ;
158 keysym -> unicode = ch ;
/external/valgrind/main/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/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/chromium_org/chrome/browser/history/
H A Durl_utils.cc16 int GetURLCharPriority(char ch) { argument
17 switch (ch) {
/external/chromium_org/media/base/
H A Daudio_buffer_queue_unittest.cc26 for (int ch = 0; ch < bus->channels(); ++ch) {
27 const float v = start + ch * buffer_size * increment;
29 ASSERT_FLOAT_EQ(v + (i - offset) * increment, bus->channel(ch)[i])
30 << "i=" << i << ", ch=" << ch; local
/external/chromium_org/net/base/
H A Ddns_util.cc19 char ch; local
24 ch = *buf++;
26 if (ch == '.') {
39 label[labellen++] = ch;

Completed in 3919 milliseconds

1234567891011>>