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

1 2

  /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/grpc-grpc/third_party/nanopb/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...]
  /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
  /external/u-boot/cmd/
bootmenu.c 81 enum bootmenu_key *key, int *esc)
103 *esc = 1;
132 enum bootmenu_key *key, int *esc)
143 switch (*esc) {
147 *esc = 1;
154 *esc = 2;
157 *esc = 0;
163 if (*esc == 2 && c == '1') {
164 *esc = 3;
169 *esc = 0
194 int esc = 0; local
    [all...]
  /external/grpc-grpc/third_party/nanopb/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/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]
109 if esc != 'u':
111 char = _b[esc]
113 msg = "Invalid \\escape: {0!r}".format(esc)
  /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)
  /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)),
  /external/u-boot/lib/
slre.c 245 int esc, old_data_size = r->data_size, op = ANYOF; local
263 esc = get_escape_char(re);
264 if ((esc & 0xff) == 0) {
266 store_char_in_data(r, esc >> 8);
268 store_char_in_data(r, esc);
323 int op, esc, branch_start, last_op, fixup, cap_no, level; local
352 esc = get_escape_char(re);
353 if (esc & 0xff00)
354 emit(r, esc >> 8);
356 exact_one_char(r, esc);
    [all...]
  /external/clang/docs/tools/
dump_ast_matchers.py 34 def esc(text): function
112 'result': esc('Matcher<%s>' % result_type),
114 'args': esc(args),
115 'comment': esc(strip_doxygen(comment)),
127 narrowing_matchers[result_type + name + esc(args)] = matcher_html
129 traversal_matchers[result_type + name + esc(args)] = matcher_html
  /build/soong/cc/
tidy.go 75 esc := proptools.NinjaAndShellEscapeList
76 flags.TidyFlags = append(flags.TidyFlags, esc(tidy.Properties.Tidy_flags)...)
112 tidyChecks = tidyChecks + "," + strings.Join(esc(tidy.Properties.Tidy_checks), ",")
123 tidyChecksAsErrors := "-warnings-as-errors=" + strings.Join(esc(tidy.Properties.Tidy_checks_as_errors), ",")
compiler.go 271 esc := proptools.NinjaAndShellEscapeList
273 flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Cflags)...)
274 flags.CppFlags = append(flags.CppFlags, esc(compiler.Properties.Cppflags)...)
275 flags.ConlyFlags = append(flags.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
276 flags.AsFlags = append(flags.AsFlags, esc(compiler.Properties.Asflags)...)
277 flags.YasmFlags = append(flags.YasmFlags, esc(compiler.Properties.Asflags)...)
278 flags.YaccFlags = append(flags.YaccFlags, esc(compiler.Properties.Yaccflags)...)
359 flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Release.Cflags)...)
365 flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Clang_cflags)...)
366 flags.AsFlags = append(flags.AsFlags, esc(compiler.Properties.Clang_asflags)...
    [all...]
  /external/python/cpython3/Lib/wsgiref/
handlers.py 37 esc = 'surrogateescape'
39 ''.encode('utf-8', esc)
41 esc = 'replace'
88 v = v.encode(enc, esc).decode('iso-8859-1')
  /build/kati/
ninja.go 383 var esc rune
388 esc = c
391 esc = 0
394 if esc != 0 {
395 buf.WriteRune(esc)
396 esc = 0
400 if esc != 0 {
401 buf.WriteRune(esc)
460 func (n *NinjaGenerator) ninjaVars(s string, nv [][]string, esc func(string) string) string {
471 if esc != nil
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 1327 CSEldSpecificConfig *esc = &asc->m_sc.m_eldSpecificConfig; local
    [all...]
  /external/u-boot/drivers/serial/
serial_mxc.c 130 u32 esc; member in struct:mxc_uart
150 writel(0x2b, &base->esc);

Completed in 990 milliseconds

1 2