/external/chromium/googleurl/src/ |
url_canon_path.cc | 43 // table below more clear when neither ESCAPE or UNESCAPE is set. 53 // for this is triggered. Not valid with PASS or ESCAPE 55 ESCAPE = ESCAPE_BIT | SPECIAL, 58 // ESCAPE or PASS. We DON'T set the SPECIAL flag since if we encounter these 75 // IsDot. Therefore, we don't need the "escape" flag, and even the "unescape" 79 INVALID, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE [all...] |
/external/chromium_org/url/ |
url_canon_path.cc | 17 // table below more clear when neither ESCAPE or UNESCAPE is set. 27 // for this is triggered. Not valid with PASS or ESCAPE 29 ESCAPE = ESCAPE_BIT | SPECIAL, 32 // ESCAPE or PASS. We DON'T set the SPECIAL flag since if we encounter these 49 // IsDot. Therefore, we don't need the "escape" flag, and even the "unescape" 53 INVALID, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE, ESCAPE [all...] |
/external/clang/test/CodeGen/ |
mandel.c | 10 #define ESCAPE 2 41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
|
/external/chromium_org/third_party/icu/source/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 | 47 #define ESCAPE 0x005C 379 else if (c == ESCAPE) [all...] |
/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 | 28 #define ESCAPE 0x005C 109 not a whitespace character (but may be a QUOTE or ESCAPE). This 178 if (c == ESCAPE && !isFollowingCharEscaped) { 190 if(c==ESCAPE && !isFollowingCharEscaped){ 238 if (c == ESCAPE) { 284 if (c == ESCAPE) { 438 /* We expect to be called after the ESCAPE has been seen, but 439 * u_fgetcx needs an ESCAPE to do its magic. */ 440 ucbuf_ungetc(ESCAPE, buf);
|
parse.cpp | 45 #define ESCAPE 0x005C 376 else if (c == ESCAPE) 809 escape(const UChar *s, char *buffer) { function 986 escape(parseError.preContext, preBuffer); 987 escape(parseError.postContext, postBuffer); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
quopri.py | 9 ESCAPE = '=' 30 # if header, we have to escape _ because _ is used to escape space 33 return c == ESCAPE or not (' ' <= c <= '~') 38 return ESCAPE + HEX[i//16] + HEX[i%16] 143 elif c != ESCAPE: 147 elif i+1 < n and line[i+1] == ESCAPE: 148 new = new + ESCAPE; i = i+2 151 else: # Bad escape sequence -- leave it in
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
quopri.py | 9 ESCAPE = '=' 30 # if header, we have to escape _ because _ is used to escape space 33 return c == ESCAPE or not (' ' <= c <= '~') 38 return ESCAPE + HEX[i//16] + HEX[i%16] 143 elif c != ESCAPE: 147 elif i+1 < n and line[i+1] == ESCAPE: 148 new = new + ESCAPE; i = i+2 151 else: # Bad escape sequence -- leave it in
|
/external/doclava/src/com/google/doclava/ |
FieldInfo.java | 235 final int ESCAPE = 5; 243 state = ESCAPE; 248 case ESCAPE: 300 throw new ApiParseException("bad escape sequence: '" + c + "' at pos " + i + " in: \"" 313 throw new ApiParseException("unfinished escape sequence: " + str); 377 data.setValue(base + ".constantValue.dec", Doclava.escape(dec)); 378 data.setValue(base + ".constantValue.hex", Doclava.escape(hex)); 380 data.setValue(base + ".constantValue.str", Doclava.escape(str));
|
/sdk/emulator/opengl/tests/emulator_test_renderer/ |
main.cpp | 212 EE(ESCAPE,BACK)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 14 ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') 39 return '"' + ESCAPE.sub(replace, s) + '"'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 14 ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') 39 return '"' + ESCAPE.sub(replace, s) + '"'
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/ |
popup.js | 159 ESCAPE : 27,
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/ |
popup.js | 141 ESCAPE : 27,
|
/external/chromium_org/third_party/simplejson/ |
encoder.py | 16 ESCAPE = re.compile(ur'[\x00-\x1f\\"\b\f\n\r\t\u2028\u2029]') 44 return u'"' + ESCAPE.sub(replace, s) + u'"'
|
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_pars.cpp | 49 #define ESCAPE ((UChar)0x005C) /*\*/ 436 if (c == ESCAPE) { [all...] |
/external/icu4c/i18n/ |
rbt_pars.cpp | 51 #define ESCAPE ((UChar)0x005C) /*\*/ 442 if (c == ESCAPE) { [all...] |
/external/qemu/android/skin/ |
keyset.c | 86 _KEYSYM1_(ESCAPE) \ 515 "BUTTON_BACK Escape\n"
|
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 225 %right ESCAPE. 861 expr(A) ::= expr(X) likeop(OP) expr(Y) ESCAPE expr(E). [LIKE_KW] { [all...] |
/external/chromium_org/third_party/icu/source/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/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...] |
/build/tools/droiddoc/templates-ds/assets/js/ |
global-libraries-combined.js | [all...] |