HomeSort by relevance Sort by last modified time
    Searched refs:esc (Results 1 - 18 of 18) sorted by null

  /external/clearsilver/util/
neo_str.h 89 char **esc);
98 char **esc);
102 NEOERR *neos_url_escape (const char *in, char **esc,
105 NEOERR *neos_js_escape (const char *in, char **esc);
110 NEOERR *neos_url_validate (const char *in, char **esc);
neo_str.c 422 char **esc)
493 *esc = s;
617 NEOERR *neos_js_escape (const char *in, char **esc)
661 *esc = (char *)s;
666 NEOERR *neos_url_escape (const char *in, char **esc,
748 *esc = (char *)s;
806 NEOERR *neos_url_validate (const char *in, char **esc)
855 return neos_html_escape(in, inlen, esc);
862 *esc = out_s.buf;
869 char **esc)
    [all...]
  /system/core/libsysutils/src/
FrameworkListener.cpp 65 bool esc = false; local
73 if (esc) {
75 esc = false;
77 esc = true;
80 } else if (esc) {
90 esc = false;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-85721.js 107 $esc = '\\\\';
115 $qtext = '[^' + $esc + $NonASCII + $CRlist + '\"]'; // # for within "..."
116 $dtext = '[^' + $esc + $NonASCII + $CRlist + $OpenBR + $CloseBR + ']'; // # for within [...]
117 $quoted_pair = $esc + '[^' + $NonASCII + ']'; // # an escaped character
122 $ctext = '[^' + $esc + $NonASCII + $CRlist + '()]';
153 $atom_char = '[^(' + $space + '<>\@,;:\".' + $esc + $OpenBR + $CloseBR + $ctrl + $NonASCII + ']';
229 '[^()<>\@,;:\".' + $esc + $OpenBR + $CloseBR + $NonASCII + $phrase_ctrl + ']';
  /external/clearsilver/cgi/
cgi.h 312 * Output: esc - a newly allocated string
315 NEOERR *cgi_url_escape (const char *buf, char **esc);
326 * Output: esc - a newly allocated string
329 NEOERR *cgi_url_escape_more (const char *buf, char **esc, const char *other);
340 * Output: esc - a newly allocated string
343 NEOERR *cgi_url_validate (const char *buf, char **esc);
474 NEOERR *cgi_js_escape (const char *buf, char **esc);
html.c 111 char *ptr, *esc; local
443 strlen(opts->link_name), &esc);
445 err = html_escape_alloc((src + x), parts[i].end - x - suffix, &esc);
448 err = string_append (out, esc);
449 free(esc);
472 err = html_escape_alloc(src + x, parts[i].end - x, &esc);
474 err = string_append (out, esc);
475 free(esc);
cgi.c 267 NEOERR *cgi_js_escape (const char *in, char **esc)
269 return nerr_pass(neos_js_escape(in, esc));
272 NEOERR *cgi_url_escape (const char *buf, char **esc)
274 return nerr_pass(neos_url_escape(buf, esc, NULL));
277 NEOERR *cgi_url_escape_more (const char *in, char **esc,
280 return nerr_pass(neos_url_escape(in, esc, other));
283 NEOERR *cgi_url_validate (const char *buf, char **esc)
285 return nerr_pass(neos_url_validate(buf, esc));
    [all...]
  /external/webkit/WebKitTools/simplejson/
decoder.py 88 esc = s[end]
92 if esc != 'u':
94 m = _b[esc]
97 errmsg("Invalid \\escape: %r" % (esc,), s, end))
100 esc = s[end + 1:end + 5]
102 m = unichr(int(esc, 16))
103 if len(esc) != 4 or not esc.isalnum():
  /external/clearsilver/python/
neo_cgi.c 344 char *s, *esc, *o = NULL; local
351 err = cgi_url_escape_more (s, &esc, o);
353 rv = Py_BuildValue ("s", esc);
354 free (esc);
377 char *s, *esc; local
385 err = html_escape_alloc (s, len, &esc);
387 rv = Py_BuildValue ("s", esc);
388 free (esc);
394 char *s, *esc; local
402 err = html_strip_alloc (s, len, &esc);
411 char *s, *esc; local
    [all...]
  /external/openssl/crypto/txt_db/
txt_db.c 75 int esc=0; local
136 esc=0;
142 if (esc)
153 esc=(*f == '\\');
  /external/libvpx/examples/includes/geshi/contrib/
cssgen.php 416 $esc = get_var('escaped-chars'); variable
418 if ( $esc != '' )
420 $stylesheet .= "\n$esc_selector {{$esc}}";
  /external/chromium/third_party/icu/source/i18n/
rbt_set.cpp 120 UnicodeString esc; local
121 _escape(buf, esc);
122 CharString cbuf(esc);
  /external/icu4c/i18n/
rbt_set.cpp 120 UnicodeString esc; local
121 _escape(buf, esc);
122 CharString cbuf(esc);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
FrameLoadDelegate.mm 265 EventSendingController *esc = [[EventSendingController alloc] init];
266 [obj setValue:esc forKey:@"eventSender"];
267 [esc release];
  /external/ppp/pppd/
eap.c 187 eap_state_name(esc)
188 enum eap_state_code esc;
192 return (state_names[(int)esc]);
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 1116 "\033": "#\\esc",
1159 "esc": "\033",
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-earley-boyer.js 1110 "\033": "#\\esc",
1153 "esc": "\033",
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 1489 milliseconds