Home | History | Annotate | Download | only in lib

Lines Matching refs:ch

271 static void tok_treatChar (picodata_ProcessingUnit this, tok_subobj_t * tok, picoos_uchar ch, picoos_bool markupHandling);
434 static picoos_int32 tok_putToUtf (tok_subobj_t * tok, picoos_uchar ch)
437 tok->utf[tok->utfpos] = ch;
439 tok->utflen = picobase_det_utf8_length(ch);
440 } else if (((ch < (picoos_uchar)'\200') || (ch >= (picoos_uchar)'\300'))) {
1024 static picoos_bool tok_attrChar (picoos_uchar ch, picoos_bool first)
1026 return ((((ch >= (picoos_uchar)'A') && (ch <= (picoos_uchar)'Z')) ||
1027 ((ch >= (picoos_uchar)'a') && (ch <= (picoos_uchar)'z'))) ||
1028 ( !(first) && ((ch >= (picoos_uchar)'0') && (ch <= (picoos_uchar)'9'))));
1033 static picoos_bool tok_idChar (picoos_uchar ch, picoos_bool first)
1035 return tok_attrChar(ch, first) || ( !(first) && (ch == (picoos_uchar)':'));
1300 static void tok_treatChar (picodata_ProcessingUnit this, tok_subobj_t * tok, picoos_uchar ch, picoos_bool markupHandling)
1310 if (ch == NULLC) {
1315 switch (tok_putToUtf(tok, ch)) {
1546 picoos_int16 ch;
1563 else if (PICO_EOF != (ch = picodata_cbGetCh(this->cbIn))) {
1564 PICODBG_DEBUG(("read in %c", (picoos_char) ch));
1565 tok_treatChar(this, tok, (picoos_uchar) ch, /*markupHandling*/TRUE);