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

1 2 3 4 5

  /external/clang/test/CodeGen/
mandel.c 10 #define ESCAPE 2
41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
  /external/icu/icu4c/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 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 68 #define ESCAPE 0x005C
406 else if (c == ESCAPE)
788 escape(const UChar *s, char *buffer) { function in namespace:__anon13106
968 escape(parseError.preContext, preBuffer);
969 escape(parseError.postContext, postBuffer);
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/icu/android_icu4j/src/main/java/android/icu/impl/
Utility.java 203 * The ESCAPE character is used during run-length encoding. It signals
206 private static final char ESCAPE = '\uA5A5';
216 * A character represents itself, unless it is the ESCAPE character. Then
218 * ESCAPE ESCAPE ESCAPE literal
219 * ESCAPE n c n instances of character c
221 * more characters. Thus we have n > 0 and n != ESCAPE and n <= 0xFFFF.
222 * If we encounter a run where n == ESCAPE, we represent this as:
223 * c ESCAPE n-1
740 public static final String escape(String s) { method in class:Utility
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Utility.java 199 * The ESCAPE character is used during run-length encoding. It signals
202 private static final char ESCAPE = '\uA5A5';
212 * A character represents itself, unless it is the ESCAPE character. Then
214 * ESCAPE ESCAPE ESCAPE literal
215 * ESCAPE n c n instances of character c
217 * more characters. Thus we have n > 0 and n != ESCAPE and n <= 0xFFFF.
218 * If we encounter a run where n == ESCAPE, we represent this as:
219 * c ESCAPE n-1
736 public static final String escape(String s) { method in class:Utility
    [all...]
  /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));
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/icu/icu4c/source/i18n/
rbt_pars.cpp 51 #define ESCAPE ((UChar)0x005C) /*\*/
442 if (c == ESCAPE) {
    [all...]
  /frameworks/native/include/input/
InputEventLabels.h 153 DEFINE_KEYCODE(ESCAPE),
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorParser.java 145 private static final char ESCAPE = '\\';
486 if (c == ESCAPE) {
494 syntaxError("Malformed escape", rule, start);
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorParser.java 144 private static final char ESCAPE = '\\';
485 if (c == ESCAPE) {
493 syntaxError("Malformed escape", rule, start);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.jar 
  /external/libvncserver/webclients/novnc/include/
keyboard.js 251 case 27 : return 0xFF1B; // ESCAPE
292 // - marks each event with an 'escape' property if a modifier was down which should be "escaped"
335 // and (b) we'll have to "escape" the modifier to undo the modifier when sending the char.
344 result.escape = modifierState.activeCharModifier();
413 if (queue[0].escape && (!cur.keysym || cur.keysym.keysym !== queue[0].keysym.keysym)) {
414 cur.escape = queue[0].escape;
526 if (evt.type !== 'keydown' || evt.escape === undefined) {
531 for (var i = 0; i < evt.escape.length; ++i) {
532 next({type: 'keyup', keyId: 0, keysym: keysyms.lookup(evt.escape[i])})
    [all...]
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-core/1.0.0/
jarjar-core-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-api/2.42.2/
selenium-api-2.42.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/jimfs/jimfs/1.1/
jimfs-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 

Completed in 3024 milliseconds

1 2 3 4 5