Searched refs:esc_char (Results 1 – 5 of 5) sorted by relevance
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
D | misc.c | 531 Char c, esc_char; local 571 esc_char = otoi( array + 1 ); 575 return esc_char; 593 esc_char = htoi( array + 2 ); 597 return esc_char;
|
/external/clearsilver/ruby/ext/hdf/ |
D | neo_util.c | 543 char *esc_char; in h_escape() local 549 esc_char = STR2CSTR(oEsc_char); in h_escape() 552 err = neos_escape((UINT8*)s, buflen, esc_char[0], escape, &ret); in h_escape() 566 char *esc_char; in h_unescape() local 570 esc_char = STR2CSTR(oEsc_char); in h_unescape() 576 neos_unescape((UINT8*)copy, buflen, esc_char[0]); in h_unescape()
|
/external/clearsilver/util/ |
D | neo_str.h | 88 NEOERR* neos_escape(UINT8 *buf, int buflen, char esc_char, const char *escape, 90 UINT8 *neos_unescape (UINT8 *s, int buflen, char esc_char);
|
D | neo_str.c | 421 NEOERR* neos_escape(UINT8 *buf, int buflen, char esc_char, const char *escape, in neos_escape() argument 432 if (buf[l] == esc_char) in neos_escape() 462 if (buf[l] == esc_char) in neos_escape() 481 s[nl++] = esc_char; in neos_escape() 497 UINT8 *neos_unescape (UINT8 *s, int buflen, char esc_char) in neos_unescape() argument 504 if (s[i] == esc_char && (i+2 < buflen) && in neos_unescape()
|
/external/clearsilver/python/ |
D | neo_util.c | 603 char *esc_char; in p_escape() local 608 if (!PyArg_ParseTuple(args, "s#ss:escape(str, char, escape)", &s, &buflen, &esc_char, &escape)) in p_escape() 611 err = neos_escape(s, buflen, esc_char[0], escape, &ret); in p_escape() 624 char *esc_char; in p_unescape() local 627 if (!PyArg_ParseTuple(args, "s#s:unescape(str, char)", &s, &buflen, &esc_char)) in p_unescape() 632 neos_unescape(copy, buflen, esc_char[0]); in p_unescape()
|