HomeSort by: relevance | last modified time | path
    Searched defs:unescape (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
shell.py 57 def unescape(arg): function in function:decode
65 return [unescape(arg) for arg in shlex.split(string)]
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
text.h 13 static really_inline uint32_t unescape(const char *text, uint8_t *wire) function
46 const uint32_t octet = unescape(text, wire);
64 const uint32_t octet = unescape(text, wire);
  /src/usr.sbin/sti/
sti.c 55 unescape(const char **pp, int *state) function
138 while ((c = unescape(&ptr, &state)) != -1)
  /src/external/bsd/nsd/dist/simdzone/src/generic/
text.h 13 static really_inline uint32_t unescape(const char *text, uint8_t *wire) function
88 const uint32_t octet = unescape(text+count, wire+count);
  /src/external/ibm-public/postfix/dist/src/util/
unescape.c 1 /* $NetBSD: unescape.c,v 1.2 2017/02/14 01:16:49 christos Exp $ */
5 /* unescape 3
11 /* VSTRING *unescape(result, input)
20 /* unescape() translates C-like escape sequences in the null-terminated
69 /* unescape - process escape sequences */
71 VSTRING *unescape(VSTRING *result, const char *data) function
195 unescape(out, vstring_str(in));
  /src/usr.bin/seq/
seq.c 72 char *unescape(char *);
136 sep = unescape(optarg);
139 term = unescape(optarg);
198 fmt = unescape(fmt);
341 * unescape - handle C escapes in a string
344 unescape(char *orig) function
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
TestRunner.py 198 argument makes the MSys based tool unescape backslashes where it shouldn't
1190 def unescape(ln): function in function:applySubstitutions
1229 return [unescape(process(ln)) for ln in script]
  /src/usr.bin/sed/
compile.c 515 unescape(char **pp, char **spp) function
576 if (unescape(&p, &q))
673 if (unescape(&p, &sp))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
llvm-rc.cpp 301 std::string unescape(StringRef S) { function in namespace:__anon5710
438 // unescape backslash escapes for quotes and similar. This means that
447 std::string Unescaped = unescape(Arg->getValue());
451 // the way we consistently unescape the unix way breaks windows paths
452 // with single backslashes. Alternatively, our unescape function would
  /src/external/gpl3/gdb/dist/gnulib/import/
glob.c 757 char *unescape = NULL;
763 unescape = strchr (dirname, '\\');
764 if (unescape)
765 end_name = strchr (unescape, '\0');
768 unescape = memchr (dirname, '\\', end_name - dirname);
787 if (unescape != NULL)
790 unescape - dirname - 1);
791 char *q = unescape;
798 /* "~fo\\o\\" unescape to user_name "foo\\",
799 but "~fo\\o\\/" unescape to user_nam
756 char *unescape = NULL; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
glob.c 757 char *unescape = NULL;
763 unescape = strchr (dirname, '\\');
764 if (unescape)
765 end_name = strchr (unescape, '\0');
768 unescape = memchr (dirname, '\\', end_name - dirname);
787 if (unescape != NULL)
790 unescape - dirname - 1);
791 char *q = unescape;
798 /* "~fo\\o\\" unescape to user_name "foo\\",
799 but "~fo\\o\\/" unescape to user_nam
756 char *unescape = NULL; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
scanner.cc 2080 int escaped, unescape; local
2112 unescape = 0;
2121 unescape++;
2133 if (unescape)
2136 gfc_char_t *d = gfc_get_wide_string (c - wide_filename - unescape);
2192 if (unescape)
2221 if (unescape)
2802 int escaped, unescape = 0; local
2813 unescape++;
2823 d = XCNEWVEC (char, p + 1 - ptr - unescape);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
scanner.cc 2076 int escaped, unescape; local
2108 unescape = 0;
2117 unescape++;
2129 if (unescape)
2132 gfc_char_t *d = gfc_get_wide_string (c - wide_filename - unescape);
2188 if (unescape)
2217 if (unescape)
2798 int escaped, unescape = 0; local
2809 unescape++;
2819 d = XCNEWVEC (char, p + 1 - ptr - unescape);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
evp_test.c 223 * Unescape some sequences in string literals (only \n for now).
227 static unsigned char* unescape(const char *input, size_t input_len, function
301 *buf = unescape(value, vlen, buflen);
  /src/crypto/external/bsd/openssl/dist/test/
evp_test.c 230 * Unescape some sequences in string literals (only \n for now).
234 static unsigned char* unescape(const char *input, size_t input_len, function
308 *buf = unescape(value, vlen, buflen);
  /src/crypto/external/apache2/openssl/dist/test/
evp_test.c 492 * Unescape some sequences in string literals (only \n for now).
496 static unsigned char *unescape(const char *input, size_t input_len, function
570 *buf = unescape(value, vlen, buflen);
622 if ((*buf = unescape(value_str, chunk_len, buflen)) == NULL)

Completed in 45 milliseconds