HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 151 - 175 of 831) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/libcore/xml/src/main/java/org/xml/sax/
ContentHandler.java 323 * @param ch the characters from the XML document
331 public void characters (char ch[], int start, int length)
353 * @param ch the characters from the XML document
360 public void ignorableWhitespace (char ch[], int start, int length)
HandlerBase.java 239 * @param ch The characters.
247 public void characters (char ch[], int start, int length)
262 * @param ch The whitespace characters.
270 public void ignorableWhitespace (char ch[], int start, int length)
  /external/clearsilver/util/
snprintf.c 146 char ch; local
161 ch = *format++;
166 if (ch == '\0')
172 if (ch == '%')
175 total += dopr_outch (buffer, &currlen, maxlen, ch);
176 ch = *format++;
179 switch (ch)
183 ch = *format++;
187 ch = *format++;
191 ch = *format++
    [all...]
  /external/libpng/contrib/pngminim/encoder/
gather.sh 9 rm inf*.[ch]
  /external/opencore/codecs_v2/standalone_headerfiles/
arbt_mem.h 26 #define arbt_memset(dest, ch, count) memset((void *)(dest), (unsigned char)(ch), (ARBTMemSizeT)(count))
  /external/webkit/WebCore/html/
HTMLTableSectionElement.idl 28 attribute [ConvertNullToNullString] DOMString ch;
  /packages/apps/Email/src/org/apache/commons/io/output/
DemuxOutputStream.java 80 * @param ch the byte to write to stream
83 public void write( int ch )
89 output.write( ch );
  /packages/apps/Email/src/org/apache/james/mime4j/codec/
EncoderUtil.java 72 for (char ch = 33; ch < 127; ch++) {
73 if (specials.indexOf(ch) == -1) {
74 bs.set(ch);
225 char ch = text.charAt(idx); local
226 if (ch == '\t' || ch == ' ') {
238 if (ch < 32 || ch >= 127)
444 char ch = str.charAt(idx); local
459 char ch = str.charAt(idx); local
483 char ch = str.charAt(idx); local
597 char ch = text.charAt(index); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
LexicalHandler.java 202 * @param ch An array holding the characters in the comment.
207 public abstract void comment (char ch[], int start, int length)
  /external/bluetooth/glib/glib/
gunidecomp.c 168 find_decomposition (gunichar ch,
174 if (ch >= decomp_table[start].ch &&
175 ch <= decomp_table[end - 1].ch)
180 if (ch == decomp_table[half].ch)
201 else if (ch > decomp_table[half].ch)
213 * @ch: a Unicode character
    [all...]
gpattern.c 61 register gchar ch; local
66 ch = *pattern;
68 while (ch)
70 switch (ch)
82 ch = *pattern;
84 if (ch == '?')
91 while (ch == '*' || ch == '?');
92 if (!ch)
97 while (ch != *string
    [all...]
  /external/icu4c/common/
ushape.c 402 changeLamAlef(UChar ch) {
403 switch(ch) {
423 getLink(UChar ch) {
424 if(ch >= 0x0622 && ch <= 0x06D3) {
425 return(araLink[ch-0x0622]);
426 } else if(ch == 0x200D) {
428 } else if(ch >= 0x206D && ch <= 0x206F) {
430 }else if(ch >= 0xFB50 && ch <= 0xFC62)
    [all...]
  /external/icu4c/layout/
DefaultCharMapper.h 53 LEUnicode32 mapChar(LEUnicode32 ch) const;
ThaiShaping.cpp 31 le_uint8 ThaiShaping::getCharClass(LEUnicode ch)
35 if (ch >= 0x0E00 && ch <= 0x0E5B) {
36 charClass = classTable[ch - 0x0E00];
228 le_uint8 ThaiShaping::getNextState(LEUnicode ch, le_uint8 prevState, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
233 charClass = getCharClass(ch);
236 return doTransition(transition, ch, inputIndex, glyphSet, errorChar, output, glyphStorage, outputIndex);
239 le_bool ThaiShaping::isLegalHere(LEUnicode ch, le_uint8 prevState)
241 le_uint8 charClass = getCharClass(ch);
276 LEUnicode ch = input[inputIndex + offset] local
    [all...]
  /external/skia/src/animator/
SkScript.cpp 177 char ch = start[0]; local
178 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
182 ch = start[++length];
183 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
184 ch == '_' || ch == '$')
406 char ch; \/\/ see if it is a simple member or a function local
447 char ch; local
527 char ch; local
    [all...]
SkScriptTokenizer.cpp 103 char ch = start[0]; local
104 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
108 ch = start[++length];
109 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
110 ch == '_' || ch == '$')
371 char ch; \/\/ see if it is a simple member or a function local
402 char ch; local
466 char ch; local
    [all...]
  /cts/tools/dasm/src/java_cup/
lexer.java 198 * @param ch the character in question.
200 protected static boolean id_start_char(int ch)
202 return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') ||
203 (ch == '_');
211 * @param ch the character in question.
213 protected static boolean id_char(int ch)
215 return id_start_char(ch) || (ch >= '0' && ch <= '9')
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
Format.java 224 char ch = string.charAt(index++); local
225 if (ch == '\'') {
231 } else if (ch == stop && !quote) {
236 buffer.append(ch);
248 char ch = string.charAt(index++); local
249 if (ch == '\'') {
253 if (ch == stop) {
260 if (ch == start) {
264 buffer.append(ch);
  /dalvik/vm/oo/
AccessCheck.c 29 char ch = str1[count]; local
30 if (ch == '\0' || ch != str2[count])
  /external/fsck_msdos/
main.c 74 int ch; local
77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) {
78 switch (ch) {
  /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)){
231 UChar32 ch = 0; local
233 U16_NEXT(b1, b1Index, b1Len, ch);
235 if(prohibited.contains(ch) && ch!=0x0020){
240 direction = u_charDirection(ch);
    [all...]
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 186 char ch = text.charAt(i); local
187 if (!Character.isDigit(ch)) {
191 short value = FORMAT_MAP[base + ch - '0'];
  /packages/apps/IM/libwbxml/include/
wbxml_encoder.h 67 static bool isXmlWhitespace(int ch);
84 void appendResult(int ch)
86 mResult += (char)ch;
  /bionic/libc/stdio/
vfprintf.c 162 int ch; /* character from fmt */ local
357 rflag: ch = *fmt++;
358 reswitch: switch (ch) {
390 if ((ch = *fmt++) == '*') {
396 while (is_digit(ch)) {
397 n = 10 * n + to_digit(ch);
398 ch = *fmt++;
400 if (ch == '$') {
423 n = 10 * n + to_digit(ch);
424 ch = *fmt++
865 int ch; \/* character from fmt *\/ local
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 145 int ch; local
146 while ((ch = inStream.read()) != -1) {
148 if (ch == '-') { // beginning of PEM encoding ('-' char)
151 } else if (ch == 0x30) { // beginning of ASN.1 sequence (0x30)
202 } else if (ch == -1) {
291 int ch; local
292 while ((ch = inStream.read()) != -1) {
294 if (ch == '-') { // beginning of PEM encoding ('-' char)
297 } else if (ch == 0x30) { // beginning of ASN.1 sequence (0x30)
347 } else if (ch == -1)
409 int ch; local
503 int ch; \/\/ the char to be read local
    [all...]

Completed in 451 milliseconds

1 2 3 4 5 67 8 91011>>