HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 226 - 250 of 1975) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 110 public void append(char ch) {
115 this.buffer[this.len] = ch;
136 int ch = b[i1]; local
137 if (ch < 0) {
138 ch = 256 + ch;
140 this.buffer[i2] = (char) ch;
206 public int indexOf(int ch, int beginIndex, int endIndex) {
217 if (this.buffer[i] == ch) {
224 public int indexOf(int ch) {
    [all...]
  /external/openssh/openbsd-compat/
readpassphrase.c 59 char ch, *p, *end; local
131 while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
134 ch &= 0x7f;
135 if (isalpha(ch)) {
137 ch = (char)tolower(ch);
139 ch = (char)toupper(ch);
    [all...]
  /external/svox/pico/lib/
picoktab.h 91 if 'ch' has the property, 0 otherwise */
97 desired property, returns TRUE if 'ch' has the property, FALSE otherwise */
144 /* check if 'ch' has a property, return non-zero if 'ch' has the
147 const picoos_uint8 ch);
149 const picoos_uint8 ch);
151 const picoos_uint8 ch);
153 const picoos_uint8 ch);
155 const picoos_uint8 ch);
159 combination is true for 'ch' */
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
selfmt.cpp 119 UChar ch = pattern.charAt(i); local
120 CharacterClass type = classifyCharacter(ch);
125 phrase += ch;
143 keyword += ch;
161 keyword += ch;
195 phrase += ch;
225 phrase += ch;
229 phrase += ch;
308 SelectFormat::classifyCharacter(UChar ch) const{
309 if ((ch >= CAP_A) && (ch <= CAP_Z))
    [all...]
  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 45 char ch = uri.charAt(i); local
46 if ((ch >= 'a' && ch <= 'z')
47 || (ch >= 'A' && ch <= 'Z')
48 || (ch >= '0' && ch <= '9')
49 || isRetained(ch)) {
51 } else if (ch == '%') {
76 char ch = s.charAt(i) local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
UriCodec.java 64 char ch = uri.charAt(i); local
65 if ((ch >= 'a' && ch <= 'z')
66 || (ch >= 'A' && ch <= 'Z')
67 || (ch >= '0' && ch <= '9')
68 || isRetained(ch)) {
70 } else if (ch == '%') {
95 char ch = s.charAt(i) local
    [all...]
  /external/speex/libspeex/
scal.c 83 int i, ch; local
108 for (ch=0;ch<channels;ch++)
111 st->ring[ch][i] = 0;
112 st->ringID[ch] = 0;
113 st->alpha[ch] = 0;
114 st->order[ch] = 10;
139 int ch; local
148 for (ch=0;ch<st->channels;ch++
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 201 // Returns true iff ch appears anywhere in str (excluding the
203 bool IsInSet(char ch, const char* str) {
204 return ch != '\0' && strchr(str, ch) != NULL;
207 // Returns true iff ch belongs to the given classification. Unlike
210 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
211 bool IsAsciiPunct(char ch) {
212 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~")
286 const char ch = regex[i]; local
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 201 // Returns true iff ch appears anywhere in str (excluding the
203 bool IsInSet(char ch, const char* str) {
204 return ch != '\0' && strchr(str, ch) != NULL;
207 // Returns true iff ch belongs to the given classification. Unlike
210 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
211 bool IsAsciiPunct(char ch) {
212 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~")
286 const char ch = regex[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
parse-js.js 203 function is_alphanumeric_char(ch) {
204 ch = ch.charCodeAt(0);
205 return (ch >= 48 && ch <= 57) ||
206 (ch >= 65 && ch <= 90) ||
207 (ch >= 97 && ch <= 122);
210 function is_identifier_char(ch) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_framedecoder.cpp 232 int32 ch; local
362 for (ch = 0; ch < pVars->num_channels; ch++)
369 pvmp3_get_scale_factors(&pVars->scaleFactors[ch],
372 ch,
378 pvmp3_mpeg2_get_scale_factors(&pVars->scaleFactors[ch],
381 ch,
387 pChVars[ch]->used_freq_lines = pvmp3_huffman_parsing(pChVars[ch]->work_buf_int32
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
spellingtrie.cpp 32 // z/c/s is for Zh/Ch/Sh
121 char ch = kHalfId2Sc_[*splid]; local
122 if (ch > 'Z') {
125 if (szm_is_enabled(ch)) {
127 } else if (is_yunmu_char(ch)) {
157 // So that Zh/Ch/Sh(whose char is z/c/s) can be matched with Z/C/S.
170 char ch = kHalfId2Sc_[splid]; local
171 // If ch >= 'a', that means the half id is one of Zh/Ch/Sh
172 if (ch >= 'a')
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 45 dump_char_struct(XCharStruct * ch, char *prefix)
48 prefix, ch->lbearing, ch->rbearing, ch->width);
50 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
295 XCharStruct *ch; local
302 ch = isvalid(fs, c);
303 if (!ch) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
xfont.c 51 dump_char_struct(XCharStruct * ch, char *prefix)
54 prefix, ch->lbearing, ch->rbearing, ch->width);
56 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
298 XCharStruct *ch; local
305 ch = isvalid(fs, c);
306 if (!ch) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xfonts.c 52 dump_char_struct(XCharStruct * ch, char *prefix)
55 prefix, ch->lbearing, ch->rbearing, ch->width);
57 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
301 XCharStruct *ch; local
308 ch = isvalid(fs, c);
309 if (!ch) {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 45 dump_char_struct(XCharStruct * ch, char *prefix)
48 prefix, ch->lbearing, ch->rbearing, ch->width);
50 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
295 XCharStruct *ch; local
302 ch = isvalid(fs, c);
303 if (!ch) {
    [all...]
  /external/mesa3d/src/glx/
xfont.c 51 dump_char_struct(XCharStruct * ch, char *prefix)
54 prefix, ch->lbearing, ch->rbearing, ch->width);
56 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
298 XCharStruct *ch; local
305 ch = isvalid(fs, c);
306 if (!ch) {
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 52 dump_char_struct(XCharStruct * ch, char *prefix)
55 prefix, ch->lbearing, ch->rbearing, ch->width);
57 prefix, ch->ascent, ch->descent, (unsigned int) ch->attributes);
301 XCharStruct *ch; local
308 ch = isvalid(fs, c);
309 if (!ch) {
    [all...]
  /bionic/libc/bionic/
strntoumax.c 32 static inline int digitval(int ch)
36 d = (unsigned)(ch - '0');
39 d = (unsigned)(ch - 'a');
42 d = (unsigned)(ch - 'A');
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToTextStream.java 187 * @param ch The characters from the XML document.
195 public void characters(char ch[], int start, int length)
215 m_writer.write(ch, start, length);
219 writeNormalizedChars(ch, start, length, m_lineSepUse);
223 super.fireCharEvent(ch, start, length);
235 * @param ch The characters from the XML document.
242 public void charactersRaw(char ch[], int start, int length)
248 writeNormalizedChars(ch, start, length, m_lineSepUse);
261 * @param ch The characters from the XML document.
271 final char ch[],
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
international_domain_names.js 5 // in punycode as 'xn--bcher-kva.ch'
6 var idn = 'B\u00fccher.ch';
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 5 // in punycode as 'xn--bcher-kva.ch'
6 var idn = 'B\u00fccher.ch';
  /external/chromium_org/chrome/browser/
language_usage_metrics.cc 49 char ch = *it; local
50 if (ch < 'a' || 'z' < ch)
54 language_code += ch;
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
international_domain_names.js 5 // in punycode as 'xn--bcher-kva.ch'
6 var idn = 'B\u00fccher.ch';
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.cpp 38 static inline bool isBreakableSpace(UChar ch)
40 switch (ch) {
119 static inline bool shouldBreakAfter(UChar lastCh, UChar ch, UChar nextCh)
123 if (ch == '-' && isASCIIDigit(nextCh))
126 // If both ch and nextCh are ASCII characters, use a lookup table for enhanced speed and for compatibility
128 if (ch >= asciiLineBreakTableFirstChar && ch <= asciiLineBreakTableLastChar
130 const unsigned char* tableRow = asciiLineBreakTable[ch - asciiLineBreakTableFirstChar];
139 inline bool needsLineBreakIterator(UChar ch)
142 return ch > asciiLineBreakTableLastChar
156 CharacterType ch = str[i]; local
    [all...]

Completed in 965 milliseconds

1 2 3 4 5 6 7 8 91011>>