HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 301 - 325 of 1559) sorted by null

<<11121314151617181920>>

  /external/ganymed-ssh2/examples/
SingleThreadStdoutStderr.java 8 import ch.ethz.ssh2.ChannelCondition;
9 import ch.ethz.ssh2.Connection;
10 import ch.ethz.ssh2.Session;
StdoutAndStderr.java 10 import ch.ethz.ssh2.Connection;
11 import ch.ethz.ssh2.Session;
12 import ch.ethz.ssh2.StreamGobbler;
  /external/harfbuzz_ng/src/hb-icu-le/
PortableFontInstance.h 88 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
92 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
94 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
  /external/icu4c/test/intltest/
nptrans.cpp 125 UBool NamePrepTransform::isProhibited(UChar32 ch){
126 return (UBool)(ch != ASCII_SPACE);
164 UChar32 ch =0 ; local
166 U16_NEXT(buffer, bufIndex, bufLen, ch);
167 if(unassigned.contains(ch)){
228 UChar32 ch = 0; local
230 U16_NEXT(b1, b1Index, b1Len, ch);
232 if(prohibited.contains(ch) && ch!=0x0020){
238 direction = u_charDirection(ch);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
BaseUrlValidateFunction.java 88 char ch = ca[i]; local
90 (Character.UnicodeBlock.of(ch) == UnicodeBlock.BASIC_LATIN)
91 ? Character.toLowerCase(ch)
  /external/webkit/Source/WebCore/platform/text/
Base64.cpp 154 unsigned ch = data[idx]; local
155 if (ch == '=')
157 else if (('0' <= ch && ch <= '9') || ('A' <= ch && ch <= 'Z') || ('a' <= ch && ch <= 'z') || ch == '+' || ch == '/')
    [all...]
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 188 char ch = text.charAt(i); local
189 if (!Character.isDigit(ch)) {
193 short value = FORMAT_MAP[base + ch - '0'];
  /bionic/libc/stdio/
vfprintf.c 173 int ch; /* character from fmt */ local
368 rflag: ch = *fmt++;
369 reswitch: switch (ch) {
401 if ((ch = *fmt++) == '*') {
407 while (is_digit(ch)) {
408 n = 10 * n + to_digit(ch);
409 ch = *fmt++;
411 if (ch == '$') {
434 n = 10 * n + to_digit(ch);
435 ch = *fmt++
877 int ch; \/* character from fmt *\/ local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.cc 283 unsigned char ch = *i; local
284 if (ch <= 0x7F) {
285 result += prepNodeAscii(ch, &char_valid);
289 result += tolower(ch);
306 Jid::prepNodeAscii(char ch, bool *valid) {
308 switch (ch) {
313 return (char)(ch + ('a' - 'A'));
326 return ch;
340 unsigned char ch = *i; local
341 if (ch <= 0x7F)
405 char ch = *i; local
434 unsigned char ch = *i; local
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 191 public void characters(char ch[], int start, int length) throws SAXException {
193 config.SSID = new String(ch, start, length);
197 String securityStr = (new String(ch, start, length)).toUpperCase();
227 String passwordStr = new String(ch, start, length);
253 String eapValue = new String(ch, start, length);
267 String phase2Value = new String(ch, start, length);
280 String identityValue = new String(ch, start, length);
285 String anonyId = new String(ch, start, length);
290 String cacertValue = new String(ch, start, length);
295 String usercertValue = new String(ch, start, length)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 143 int ch; local
144 while ((ch = inStream.read()) != -1) {
146 if (ch == '-') { // beginning of PEM encoding ('-' char)
149 } else if (ch == 0x30) { // beginning of ASN.1 sequence (0x30)
199 } else if (ch == -1) {
284 int ch; local
285 while ((ch = inStream.read()) != -1) {
287 if (ch == '-') { // beginning of PEM encoding ('-' char)
290 } else if (ch == 0x30) { // beginning of ASN.1 sequence (0x30)
339 } else if (ch == -1)
395 int ch; local
477 int ch; \/\/ the char to be read local
    [all...]
  /build/tools/rgb2565/
to565.c 68 #define apply_error(ch) { \
69 next_error[(i-1)*3+ch] += e * 3 / 16; \
70 next_error[(i)*3+ch] += e * 5 / 16; \
71 next_error[(i+1)*3+ch] += e * 1 / 16; \
72 error[(i+1)*3+ch] += e - ((e*1/16) + (e*3/16) + (e*5/16)); \
  /external/icu4c/i18n/
csrucode.cpp 89 int32_t ch = getChar(input, i); local
91 if (ch < 0 || ch >= 0x10FFFF || (ch >= 0xD800 && ch <= 0xDFFF)) {
  /external/jpeg/
rdppm.c 88 register int ch; local
90 ch = getc(infile);
91 if (ch == '#') {
93 ch = getc(infile);
94 } while (ch != '\n' && ch != EOF);
96 return ch;
107 register int ch; local
112 ch = pbm_getc(infile);
113 if (ch == EOF
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdppm.c 88 register int ch; local
90 ch = getc(infile);
91 if (ch == '#') {
93 ch = getc(infile);
94 } while (ch != '\n' && ch != EOF);
96 return ch;
107 register int ch; local
112 ch = pbm_getc(infile);
113 if (ch == EOF
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_get_scale_factors.cpp 41 int32 ch, channel
135 int32 ch,
141 granuleInfo *gr_info = &(si->ch[ch].gran[gr]);
194 if ((si->ch[ch].scfsi[i] == 0) || (gr == 0))
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 208 for (int ch = 0; ch < mNumChannels; ++ch) {
210 audio_sample_t x1 = mDelays[ch][0];
211 audio_sample_t x2 = mDelays[ch][1];
212 audio_sample_t y1 = mDelays[ch][2];
213 audio_sample_t y2 = mDelays[ch][3];
231 mDelays[ch][0] = x1;
232 mDelays[ch][1] = x2;
233 mDelays[ch][2] = y1
    [all...]
  /external/freetype/src/psaux/
afmparse.c 32 /* The use of AFM_Stream is largely inspired by parseAFM.[ch] from t1lib. */
62 #define AFM_IS_NEWLINE( ch ) ( (ch) == '\r' || (ch) == '\n' )
64 #define AFM_IS_EOF( ch ) ( (ch) == EOF || (ch) == '\x1a' )
65 #define AFM_IS_SPACE( ch ) ( (ch) == ' ' || (ch) == '\t'
93 int ch = 0; \/* make stupid compiler happy *\/ local
122 int ch; local
162 int ch; local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
KexManager.java 5 package ch.ethz.ssh2.transport;
10 import ch.ethz.ssh2.ConnectionInfo;
11 import ch.ethz.ssh2.DHGexParameters;
12 import ch.ethz.ssh2.ServerHostKeyVerifier;
13 import ch.ethz.ssh2.crypto.CryptoWishList;
14 import ch.ethz.ssh2.crypto.KeyMaterial;
15 import ch.ethz.ssh2.crypto.cipher.BlockCipher;
16 import ch.ethz.ssh2.crypto.cipher.BlockCipherFactory;
17 import ch.ethz.ssh2.crypto.dh.DhExchange;
18 import ch.ethz.ssh2.crypto.dh.DhGroupExchange
    [all...]
  /external/grub/stage2/
fsys_vstafs.c 120 char *fn, ch; local
140 while ((ch = *fn) && ch != '/' && ! isspace (ch)) fn++;
149 if (print_possibilities && ch != '/'
168 *(dirname = fn) = ch;
181 while (*dirname && ! isspace (ch));
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 24 #define XML_IS_NAMECHAR(ch) (isalpha(ch) || isdigit(ch) || ch ==':' || \
25 ch == '_' || ch == '-' || ch =='.')
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 461 * @param ch The characters from the XML document.
467 public void characters(char ch[], int start, int length) throws org.xml.sax.SAXException
470 && org.apache.xml.utils.XMLCharacterRecognizer.isWhiteSpace(ch, start, length))
475 cdata(ch, start, length);
480 String s = new String(ch, start, length);
498 * @param ch Array containing the characters
502 public void charactersRaw(char ch[], int start, int length)
506 && org.apache.xml.utils.XMLCharacterRecognizer.isWhiteSpace(ch, start, length))
510 String s = new String(ch, start, length);
573 * @param ch The characters from the XML document
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1179 char ch = 0; local
1403 char ch = 0; local
2177 final char ch = key.charAt(0); local
2212 final char ch = key.charAt(i); local
2302 final char ch = key.charAt(0); local
2325 final char ch = m_charBuffer[i]; local
    [all...]
  /external/harfbuzz/contrib/
harfbuzz-unicode.c 222 HB_GetGraphemeClass(HB_UChar32 ch) {
223 const void *vprop = bsearch((void *) (intptr_t) ch, grapheme_break_properties,
234 HB_GetWordClass(HB_UChar32 ch) {
240 HB_GetSentenceClass(HB_UChar32 ch) {
246 HB_GetGraphemeAndLineBreakClass(HB_UChar32 ch, HB_GraphemeClass *gclass, HB_LineBreakClass *breakclass) {
247 *gclass = HB_GetGraphemeClass(ch);
248 *breakclass = HB_GetLineBreakClass(ch);
266 HB_GetMirroredChar(HB_UChar16 ch) {
267 const void *mprop = bsearch((void *) (intptr_t) ch, mirroring_properties,
272 return ch;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 31 var ch = '';
33 ch = format.charAt(i);
34 if (!special && ch == "\\") {
39 code += "'" + String.escape(ch) + "' + ";
42 code += Date.getFormatCode(ch);
134 var ch = '';
136 ch = format.charAt(i);
137 if (!special && ch == "\\") {
142 regex += String.escape(ch);
145 obj = Date.formatCodeToRegex(ch, currentGroup)
    [all...]

Completed in 724 milliseconds

<<11121314151617181920>>