Searched refs:ch (Results 101 - 125 of 1466) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/base/
H A Dstringencode.cc35 char ch = source[srcpos++]; local
36 if ((ch == escape) || ::strchr(illegal, ch)) {
41 buffer[bufpos++] = ch;
57 char ch = source[srcpos++]; local
58 if ((ch == escape) && (srcpos < srclen)) {
59 ch = source[srcpos++];
61 buffer[bufpos++] = ch;
76 char ch = source[srcpos++]; local
77 if ((ch !
101 char ch = source[srcpos++]; local
152 unsigned char ch = source[srcpos++]; local
179 unsigned char ch = source[srcpos++]; local
266 unsigned char ch = source[srcpos]; local
325 unsigned char ch = source[srcpos++]; local
358 unsigned char ch = source[srcpos++]; local
418 hex_decode(char ch, unsigned char* val) argument
452 unsigned char ch = bsource[srcpos++]; local
[all...]
/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/icu/icu4c/source/samples/case/
H A Ducase.c29 UChar32 ch; local
44 ch = u_toupper(char_k); /* ch = 'K' */
45 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
46 ch = u_tolower(ch); /* ch = 'k' */
47 u_fprintf(out, "tolower() = %C\n", ch);
48 ch = u_totitle(char_k); /* ch
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTrie.java284 * Gets the offset to the data which the index ch after variable offset
288 * getRawOffset(0, ch);
293 * @param offset index offset which ch is to start from
294 * @param ch index to be used after offset
297 protected final int getRawOffset(int offset, char ch) argument
299 return (m_index_[offset + (ch >> INDEX_STAGE_1_SHIFT_)]
301 + (ch & INDEX_STAGE_3_MASK_);
307 * @param ch BMP character
310 protected final int getBMPOffset(char ch) argument
312 return (ch >
327 getLeadOffset(char ch) argument
340 getCodePointOffset(int ch) argument
[all...]
H A DCharTrie.java112 * @param ch codepoint
115 public final char getCodePointValue(int ch) argument
120 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
122 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
123 + (ch & INDEX_STAGE_3_MASK_);
128 offset = getCodePointOffset(ch);
141 * @param ch lead surrogate character
144 public final char getLeadValue(char ch) argument
146 return m_data_[getLeadOffset(ch)];
156 getBMPValue(char ch) argument
205 getLatin1LinearValue(char ch) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie.java283 * Gets the offset to the data which the index ch after variable offset
287 * getRawOffset(0, ch);
292 * @param offset index offset which ch is to start from
293 * @param ch index to be used after offset
296 protected final int getRawOffset(int offset, char ch) argument
298 return (m_index_[offset + (ch >> INDEX_STAGE_1_SHIFT_)]
300 + (ch & INDEX_STAGE_3_MASK_);
306 * @param ch BMP character
309 protected final int getBMPOffset(char ch) argument
311 return (ch >
326 getLeadOffset(char ch) argument
339 getCodePointOffset(int ch) argument
[all...]
H A DCharTrie.java111 * @param ch codepoint
114 public final char getCodePointValue(int ch) argument
119 if(0 <= ch && ch < UTF16.LEAD_SURROGATE_MIN_VALUE) {
121 offset = (m_index_[ch >> INDEX_STAGE_1_SHIFT_] << INDEX_STAGE_2_SHIFT_)
122 + (ch & INDEX_STAGE_3_MASK_);
127 offset = getCodePointOffset(ch);
140 * @param ch lead surrogate character
143 public final char getLeadValue(char ch) argument
145 return m_data_[getLeadOffset(ch)];
155 getBMPValue(char ch) argument
204 getLatin1LinearValue(char ch) argument
[all...]
/external/deqp/executor/
H A DxeXMLParser.cpp37 static inline bool isIdentifierStartChar (int ch) argument
39 return de::inRange<int>(ch, 'a', 'z') || de::inRange<int>(ch, 'A', 'Z');
42 static inline bool isIdentifierChar (int ch) argument
44 return isIdentifierStartChar(ch) || de::inRange<int>(ch, '0', '9') || (ch == '-') || (ch == '_');
47 static inline bool isWhitespaceChar (int ch) argument
49 return ch
[all...]
/external/curl/lib/
H A Dhttp_chunks.c112 struct Curl_chunker *ch = &conn->chunk; local
129 switch(ch->state) {
132 if(ch->hexindex < MAXNUM_SIZE) {
133 ch->hexbuffer[ch->hexindex] = *datap;
136 ch->hexindex++;
144 if(0 == ch->hexindex)
150 ch->hexbuffer[ch->hexindex]=0;
153 result = Curl_convert_from_network(conn->data, ch
[all...]
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp41 UChar ch = source[i]; local
42 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
44 appendHex(ch, 4, target);
46 target += ch;
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp41 UChar ch = source[i]; local
42 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
44 appendHex(ch, 4, target);
46 target += ch;
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp41 UChar ch = source[i]; local
42 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) {
44 appendHex(ch, 4, target);
46 target += ch;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DOpenTypeTagBuilder.java205 char ch = upperTag.charAt(i);
207 if ((ch < 'A' || ch > 'Z') && (ch < '0' || ch > '9')) {
208 ch = '_';
211 result.append(ch);
/external/jemalloc/test/include/test/
H A Dmath.h224 double e, aa, xx, c, ch, a, q, p1, p2, t, x, b, s1, s2, s3, s4, s5, s6; local
238 ch = pow(p * xx * exp(ln_gamma_df_2 + xx * aa), 1.0 / xx);
239 if (ch - e < 0.0)
240 return (ch);
249 ch = df * pow(x * sqrt(p1) + 1.0 - p1, 3.0);
251 if (ch > 2.2 * df + 6.0) {
252 ch = -2.0 * (log(1.0 - p) - c * log(0.5 * ch) +
256 ch = 0.4;
259 q = ch;
[all...]
/external/ltp/testcases/kernel/controllers/memcg/control/
H A Dmem_process.c109 char ch; local
115 if (read(fd, &ch, 1) == -1)
120 return ch;
126 char ch; local
136 ch = action();
138 if (ch == 'm')
140 } while (ch != 'x');
/external/testng/doc/
H A Dprettify.js133 this.ch = '\0';
138 var ch = s.charAt(i);
139 if ('&' == ch) {
145 ch = '<';
147 ch = '>';
149 ch = '"';
151 ch = '\'';
153 ch = '&';
160 this.ch = ch;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERPrintableString.java172 char ch = str.charAt(i);
174 if (ch > 0x007f)
179 if ('a' <= ch && ch <= 'z')
184 if ('A' <= ch && ch <= 'Z')
189 if ('0' <= ch && ch <= '9')
194 switch (ch)
/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_HighLevelEncoder.h39 static bool isDigit(FX_WCHAR ch);
40 static bool isExtendedASCII(FX_WCHAR ch);
65 static FX_WCHAR randomize253State(FX_WCHAR ch, int32_t codewordPosition);
71 static bool isNativeC40(FX_WCHAR ch);
72 static bool isNativeText(FX_WCHAR ch);
73 static bool isNativeX12(FX_WCHAR ch);
74 static bool isX12TermSep(FX_WCHAR ch);
75 static bool isNativeEDIFACT(FX_WCHAR ch);
76 static bool isSpecialB256(FX_WCHAR ch);
/external/icu/icu4c/source/common/
H A Ducnv_u32.c55 uint32_t ch, i; local
62 ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
69 ch = 0;
73 ch = (ch << 8) | (uint8_t)(*mySource);
79 args->converter->toUnicodeStatus = ch + 1;
85 if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
87 if (ch <
135 uint32_t ch, i; local
220 UChar32 ch, ch2; local
322 UChar32 ch, ch2; local
517 uint32_t ch, i; local
603 uint32_t ch, i; local
698 UChar32 ch, ch2; local
808 UChar32 ch, ch2; local
[all...]
H A Ducnv_u8.c111 uint32_t ch, ch2 = 0; local
121 ch = cnv->toUnicodeStatus;/*Stores the previously calculated ch from a previous call*/
129 ch = *(mySource++);
130 if (ch < 0x80) /* Simple case */
132 *(myTarget++) = (UChar) ch;
137 toUBytes[0] = (char)ch;
138 inBytes = bytesFromUTF8[ch]; /* lookup current sequence length */
151 ch = (ch <<
241 uint32_t ch, ch2 = 0; local
368 UChar32 ch; local
483 UChar32 ch; local
619 UChar32 ch; local
[all...]
/external/syslinux/utils/
H A Dppmtolss1657 my($token, $ch);
58 my($ch);
61 $ch = getc(STDIN);
62 return undef if ( !defined($ch) ); # EOF
63 if ( $ch eq '#' ) {
65 $ch = getc(STDIN);
66 return undef if ( !defined($ch) );
67 } while ( $ch ne "\n" );
69 } while ( $ch =~ /^[ \t\n\v\f\r]$/ );
71 $token = $ch;
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DEncoding.java101 char ch = sb.charAt(i);
102 if (ch < 0x20) {
103 if (IS_BANNED_ASCII[ch]) {
106 } else if (0xd800 <= ch) {
107 if (ch <= 0xdfff) {
110 if (Character.isSurrogatePair(ch, next)) {
111 sb.setCharAt(k++, ch);
117 } else if ((ch & 0xfffe) == 0xfffe) {
121 sb.setCharAt(k++, ch);
135 char ch
[all...]
/external/pdfium/fpdfsdk/
H A Dcpdfsdk_datetime.cpp146 FX_CHAR ch; local
148 ch = dtStr[i];
149 k = k * 10 + FXSYS_toDecimalDigit(ch);
151 if (!std::isdigit(ch))
162 ch = dtStr[i];
163 k = k * 10 + FXSYS_toDecimalDigit(ch);
165 if (!std::isdigit(ch))
176 ch = dtStr[i];
177 k = k * 10 + FXSYS_toDecimalDigit(ch);
179 if (!std::isdigit(ch))
[all...]
/external/aac/libAACdec/src/
H A Dchannel.cpp138 int ch, maybe_jstereo = 0; local
142 for (ch = 0; ch < el_channels; ch++) {
143 if ( pAacDecoderChannelInfo[ch]->renderMode == AACDEC_RENDER_IMDCT
144 || pAacDecoderChannelInfo[ch]->renderMode == AACDEC_RENDER_ELDFB )
146 CBlock_InverseQuantizeSpectralData(pAacDecoderChannelInfo[ch], pSamplingRateInfo);
179 for (ch = 0; ch < el_channels; ch
242 int i, ch, decision_bit; local
[all...]
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/
H A D_utils.py70 def _decode(state, codep, ch):
71 tp = _UTF8D[ch]
73 codep = (ch & 0x3f) | (codep << 6) if (
74 state != _UTF8_ACCEPT) else (0xff >> tp) & ch

Completed in 3345 milliseconds

1234567891011>>