Home
last modified time | relevance | path

Searched refs:esc_char (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebKitTools/android/flex-2.5.4a/
Dmisc.c531 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/
Dneo_util.c543 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/
Dneo_str.h88 NEOERR* neos_escape(UINT8 *buf, int buflen, char esc_char, const char *escape,
90 UINT8 *neos_unescape (UINT8 *s, int buflen, char esc_char);
Dneo_str.c421 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/
Dneo_util.c603 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()