Searched refs:esc (Results 1 - 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
H A Dfparseln.c75 * that starts in *sp, is escaped by the escape character esc.
78 isescaped(const char *sp, const char *p, int esc) argument
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) !
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
H A Dliterals.py22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
H A Ddecoder.py66 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)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
H A Ddecoder.py105 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)
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregsyntax.c39 (OnigCodePoint )'\\' /* esc */
56 (OnigCodePoint )'\\' /* esc */
77 (OnigCodePoint )'\\' /* esc */
98 (OnigCodePoint )'\\' /* esc */
120 (OnigCodePoint )'\\' /* esc */
136 (OnigCodePoint )'\\' /* esc */
159 (OnigCodePoint )'\\' /* esc */
182 (OnigCodePoint )'\\' /* esc */
211 (OnigCodePoint )'\\' /* esc */
292 enc->meta_char_table.esc
[all...]
H A Doniguruma.h142 OnigCodePoint esc; member in struct:__anon6920
H A Dregint.h628 #define MC_ESC(syn) (syn)->meta_char_table.esc

Completed in 72 milliseconds