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

1 2 3 4 5

  /external/curl/tests/unit/
unit1605.c 47 char *esc; variable
49 esc = curl_easy_escape(easy, "", -1);
50 fail_unless(esc == NULL, "negative string length can't work");
52 esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);
53 fail_unless(esc == NULL, "negative string length can't work");
  /external/nanopb-c/tests/site_scons/
site_init.py 48 esc = env['ESCAPE']
49 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
51 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(str(target[0])))
59 esc = env['ESCAPE']
60 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
62 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(str(target[0]))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fparseln.c 75 * that starts in *sp, is escaped by the escape character esc.
78 isescaped(const char *sp, const char *p, int esc)
87 if (esc == '\0')
91 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
113 char esc, con, nl, com; local
128 esc = str[0];
150 if (*cp == com && !isescaped(ptr, cp, esc)) {
167 if (*cp == con && !isescaped(ptr, cp, esc)) {
190 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
191 strchr(buf, esc) != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /external/python/cpython2/Lib/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /external/python/cpython3/Lib/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
  /system/core/libsysutils/src/
FrameworkListener.cpp 105 bool esc = false; local
113 if (esc) {
117 esc = false;
119 esc = true;
122 } else if (esc) {
136 esc = false;
  /external/nanopb-c/tests/site_scons/site_tools/
nanopb.py 93 esc = env['ESCAPE']
94 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
95 return '$PROTOC $PROTOCFLAGS %s --nanopb_out=. %s' % (dirs, esc(str(source[0])))
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 831 char esc = css.charAt(pos + 1);
832 if (isLineTerminator(esc)) { return -1; }
833 int escLower = esc | 32;
834 if (('0' <= esc && esc <= '9')
842 | (esc <= '9' ? esc - '0' : escLower - ('a' - 10));
845 esc = css.charAt(hexEnd);
846 escLower = esc | 32;
847 } while (('0' <= esc && esc <= '9'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
decoder.py 66 esc = s[pos + 1:pos + 5]
67 if len(esc) == 4 and esc[1] not in 'xX':
69 return int(esc, 16)
115 esc = s[end]
120 if esc != 'u':
122 char = _b[esc]
124 msg = "Invalid \\escape: " + repr(esc)
  /external/python/cpython2/Lib/json/
decoder.py 64 esc = s[pos + 1:pos + 5]
65 if len(esc) == 4 and esc[1] not in 'xX':
67 return int(esc, 16)
113 esc = s[end]
118 if esc != 'u':
120 char = _b[esc]
122 msg = "Invalid \\escape: " + repr(esc)
  /external/python/cpython3/Lib/json/
decoder.py 60 esc = s[pos + 1:pos + 5]
61 if len(esc) == 4 and esc[1] not in 'xX':
63 return int(esc, 16)
104 esc = s[end]
108 if esc != 'u':
110 char = _b[esc]
112 msg = "Invalid \\escape: {0!r}".format(esc)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug387.go 14 esc(N) tc(1) used(1) ARRAY-[2]string
  /prebuilts/go/linux-x86/test/fixedbugs/
bug387.go 14 esc(N) tc(1) used(1) ARRAY-[2]string
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
decoder.py 105 esc = s[end]
110 if esc != 'u':
112 char = _b[esc]
114 msg = "Invalid \\escape: " + repr(esc)
119 esc = s[end + 1:end + 5]
121 if len(esc) != 4:
124 uni = int(esc, 16)
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
decoder.py 105 esc = s[end]
110 if esc != 'u':
112 char = _b[esc]
114 msg = "Invalid \\escape: " + repr(esc)
119 esc = s[end + 1:end + 5]
121 if len(esc) != 4:
124 uni = int(esc, 16)
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
decoder.py 105 esc = s[end]
110 if esc != 'u':
112 char = _b[esc]
114 msg = "Invalid \\escape: " + repr(esc)
119 esc = s[end + 1:end + 5]
121 if len(esc) != 4:
124 uni = int(esc, 16)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 105 esc = s[end]
110 if esc != 'u':
112 char = _b[esc]
114 msg = "Invalid \\escape: " + repr(esc)
119 esc = s[end + 1:end + 5]
121 if len(esc) != 4:
124 uni = int(esc, 16)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 105 esc = s[end]
110 if esc != 'u':
112 char = _b[esc]
114 msg = "Invalid \\escape: " + repr(esc)
119 esc = s[end + 1:end + 5]
121 if len(esc) != 4:
124 uni = int(esc, 16)
  /external/wpa_supplicant_8/src/utils/
edit.c 648 /* ESC-[<param1>;<param2><last> */
702 /* ESC-O<param1>;<param2><last> */
763 static int esc = -1; local
774 if (esc >= 0) {
775 if (c == 27 /* ESC */) {
776 esc = 0;
780 if (esc == 6) {
782 esc = -1;
784 esc_buf[esc++] = c;
785 esc_buf[esc] = '\0'
    [all...]
  /external/python/cpython2/Misc/Vim/
vim_syntax.py 103 (contained(esc) for esc in escapes
104 if not '$' in esc)),

Completed in 488 milliseconds

1 2 3 4 5