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

  /external/icu4c/tools/genrb/
rle.c 19 * The ESCAPE character is used during run-length encoding. It signals
22 static const uint16_t ESCAPE = 0xA5A5;
87 buffer = appendEncodedByte(buffer,bufLimit, value, state, status); /* Don't need to escape this value*/
111 if (value == (int32_t) ESCAPE){
112 APPEND(buffer,bufLimit,ESCAPE, num, status);
119 if (length == (int32_t) ESCAPE) {
120 if (value == (int32_t) ESCAPE){
121 APPEND(buffer,bufLimit,ESCAPE,num,status);
127 APPEND(buffer,bufLimit,ESCAPE,num,status);
129 APPEND(buffer,bufLimit,(uint16_t)value, num, status); /* Don't need to escape this value *
    [all...]
read.c 27 #define ESCAPE 0x005C
107 not a whitespace character (but may be a QUOTE or ESCAPE). This
176 if (c == ESCAPE && !isFollowingCharEscaped) {
188 if(c==ESCAPE && !isFollowingCharEscaped){
236 if (c == ESCAPE) {
282 if (c == ESCAPE) {
437 /* We expect to be called after the ESCAPE has been seen, but
438 * u_fgetcx needs an ESCAPE to do its magic. */
439 ucbuf_ungetc(ESCAPE, buf);
parse.c 43 #define ESCAPE 0x005C
374 else if (c == ESCAPE)
    [all...]
  /frameworks/base/awt/java/awt/
Event.java 208 * The Constant ESCAPE indicates Escape key.
210 public static final int ESCAPE = 27;
  /external/webkit/WebKitTools/simplejson/
encoder.py 10 ESCAPE = re.compile(r'[\x00-\x19\\"\b\f\n\r\t]')
13 # escape all forward slashes to prevent </script> attack
55 return '"' + ESCAPE.sub(replace, s) + '"'
  /external/icu4c/i18n/
rbt_pars.cpp 49 #define ESCAPE ((UChar)0x005C) /*\*/
436 if (c == ESCAPE) {
    [all...]
  /external/qemu/android/skin/
keyset.c 86 _KEYSYM1_(ESCAPE) \
515 "BUTTON_BACK Escape\n"
  /external/icu4c/test/intltest/
wbnf.cpp 243 // We get the precedence of escape/quote operations
886 // About the scanner's behavior for STRING, AT, and ESCAPE:
889 // (STRING, AT, and ESCAPE) at one time, with no regard of their
905 } else if ( c== '\\') { // backslah escape in quote
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 458 milliseconds