Searched refs:escape (Results 1 - 25 of 702) sorted by relevance

1234567891011>>

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
H A Dquoted.pass.cpp68 void round_trip_e ( const char *p, char escape ) {
72 ss << std::quoted(sv, '"', escape );
74 ss >> std::quoted(s, '"', escape );
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
133 void round_trip_e ( const wchar_t *p, wchar_t escape ) {
137 ss << std::quoted(sv, wchar_t('"'), escape );
139 ss >> std::quoted(s, wchar_t('"'), escape );
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp68 void round_trip_e ( const char *p, char escape ) {
72 ss << std::quoted(sv, '"', escape );
74 ss >> std::quoted(s, '"', escape );
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
133 void round_trip_e ( const wchar_t *p, wchar_t escape ) {
137 ss << std::quoted(sv, wchar_t('"'), escape );
139 ss >> std::quoted(s, wchar_t('"'), escape );
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
H A Dquoted.pass.cpp68 void round_trip_e ( const char *p, char escape ) {
72 ss << std::quoted(sv, '"', escape );
74 ss >> std::quoted(s, '"', escape );
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
133 void round_trip_e ( const wchar_t *p, wchar_t escape ) {
137 ss << std::quoted(sv, wchar_t('"'), escape );
139 ss >> std::quoted(s, wchar_t('"'), escape );
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp68 void round_trip_e ( const char *p, char escape ) {
72 ss << std::quoted(sv, '"', escape );
74 ss >> std::quoted(s, '"', escape );
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
133 void round_trip_e ( const wchar_t *p, wchar_t escape ) {
137 ss << std::quoted(sv, wchar_t('"'), escape );
139 ss >> std::quoted(s, wchar_t('"'), escape );
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A DDocXMLRPCServer.py26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
29 escape = escape or self.escape
45 results.append(escape(text[here:start]))
49 url = escape(all).replace('"', '&quot;')
53 results.append('<a href="%s">%s</a>' % (url, escape(all)))
56 results.append('<a href="%s">%s</a>' % (url, escape(all)))
64 results.append(escape(text[here:]))
75 self.escape(ancho
[all...]
H A Dsre_parse.py192 raise error, "bogus escape (end of line)"
226 def _class_escape(source, escape):
227 # handle escape code inside character class
228 code = ESCAPES.get(escape)
231 code = CATEGORIES.get(escape)
235 c = escape[1:2]
237 # hexadecimal escape (exactly two digits)
238 while source.next in HEXDIGITS and len(escape) < 4:
239 escape = escape
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A DDocXMLRPCServer.py26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
29 escape = escape or self.escape
45 results.append(escape(text[here:start]))
49 url = escape(all).replace('"', '&quot;')
53 results.append('<a href="%s">%s</a>' % (url, escape(all)))
56 results.append('<a href="%s">%s</a>' % (url, escape(all)))
64 results.append(escape(text[here:]))
75 self.escape(ancho
[all...]
H A Dsre_parse.py192 raise error, "bogus escape (end of line)"
226 def _class_escape(source, escape):
227 # handle escape code inside character class
228 code = ESCAPES.get(escape)
231 code = CATEGORIES.get(escape)
235 c = escape[1:2]
237 # hexadecimal escape (exactly two digits)
238 while source.next in HEXDIGITS and len(escape) < 4:
239 escape = escape
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DDocXMLRPCServer.py26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
29 escape = escape or self.escape
45 results.append(escape(text[here:start]))
49 url = escape(all).replace('"', '&quot;')
53 results.append('<a href="%s">%s</a>' % (url, escape(all)))
56 results.append('<a href="%s">%s</a>' % (url, escape(all)))
64 results.append(escape(text[here:]))
75 self.escape(ancho
[all...]
H A Dsre_parse.py192 raise error, "bogus escape (end of line)"
226 def _class_escape(source, escape):
227 # handle escape code inside character class
228 code = ESCAPES.get(escape)
231 code = CATEGORIES.get(escape)
235 c = escape[1:2]
237 # hexadecimal escape (exactly two digits)
238 while source.next in HEXDIGITS and len(escape) < 4:
239 escape = escape
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DDocXMLRPCServer.py26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
29 escape = escape or self.escape
45 results.append(escape(text[here:start]))
49 url = escape(all).replace('"', '&quot;')
53 results.append('<a href="%s">%s</a>' % (url, escape(all)))
56 results.append('<a href="%s">%s</a>' % (url, escape(all)))
64 results.append(escape(text[here:]))
75 self.escape(ancho
[all...]
H A Dsre_parse.py192 raise error, "bogus escape (end of line)"
226 def _class_escape(source, escape):
227 # handle escape code inside character class
228 code = ESCAPES.get(escape)
231 code = CATEGORIES.get(escape)
235 c = escape[1:2]
237 # hexadecimal escape (exactly two digits)
238 while source.next in HEXDIGITS and len(escape) < 4:
239 escape = escape
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp78 void round_trip_e ( const CharT *p, char escape ) {
80 CharT e(escape);
90 std::basic_string<CharT, Traits> quote ( const CharT *p, char delim='"', char escape='\\' ) {
93 CharT e(escape);
101 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) {
106 CharT e(escape);
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp78 void round_trip_e ( const CharT *p, char escape ) {
80 CharT e(escape);
90 std::basic_string<CharT, Traits> quote ( const CharT *p, char delim='"', char escape='\\' ) {
93 CharT e(escape);
101 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) {
106 CharT e(escape);
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
H A DRegex.h94 static std::string escape(StringRef String);

Completed in 546 milliseconds

1234567891011>>