Home
last modified time | relevance | path

Searched defs:escape (Results 1 – 25 of 1270) sorted by relevance

12345678910>>...51

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/io/include/boost/io/
Dquoted.hpp24 Char escape; member
37 quoted_start(const Char* string, Char escape, Char delim) in quoted_start()
51 quoted_start(const String* string, Char escape, Char delim) in quoted_start()
67 std::size_t size, std::size_t count, Char escape, Char delim) in quoted_put()
93 quoted_out(std::basic_ostream<Char, Traits>& os, String* string, Char escape, in quoted_out() argument
188 quoted(const std::basic_string<Char, Traits, Alloc>& s, Char escape='\\', in quoted() argument
198 quoted(std::basic_string<Char, Traits, Alloc>& s, Char escape='\\', in quoted() argument
208 quoted(const Char* s, Char escape='\\', Char delim='\"') in quoted()
/aosp_15_r20/external/aac/libSACenc/src/
H A Dsacenc_huff_tab.h139 HUFF_ENTRY escape; member
145 HUFF_ENTRY escape; member
151 HUFF_ENTRY escape; member
157 HUFF_ENTRY escape; member
163 HUFF_ENTRY escape; member
169 HUFF_ENTRY escape; member
175 HUFF_ENTRY escape; member
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/escape/
Descape.go5 package escape package
107 type escape struct { struct
108 *batch
110 curfn *ir.Func // function being analyzed
112 labels map[*types.Sym]labelState // known labels
118 loopDepth int
/aosp_15_r20/external/libxaac/encoder/
H A Dixheaace_mps_huff_tab.h29 ixheaace_mps_huff_entry escape; member
35 ixheaace_mps_huff_entry escape; member
41 ixheaace_mps_huff_entry escape; member
47 ixheaace_mps_huff_entry escape; member
53 ixheaace_mps_huff_entry escape; member
59 ixheaace_mps_huff_entry escape; member
65 ixheaace_mps_huff_entry escape; member
/aosp_15_r20/external/libcxx/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp68 void round_trip_e ( const char *p, char escape ) { in round_trip_e()
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) { in quote()
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) { in unquote()
133 void round_trip_e ( const wchar_t *p, wchar_t escape ) { in round_trip_e()
144 std::wstring quote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { in quote()
154 std::wstring unquote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { in unquote()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp65 void round_trip_e(const char* p, char escape) { in round_trip_e()
75 std::string quote(const char* p, char delim = '"', char escape = '\\') { in quote()
83 std::string unquote(const char* p, char delim = '"', char escape = '\\') { in unquote()
127 void round_trip_e(const wchar_t* p, wchar_t escape) { in round_trip_e()
137 std::wstring quote(const wchar_t* p, wchar_t delim = '"', wchar_t escape = '\\') { in quote()
147 std::wstring unquote(const wchar_t* p, wchar_t delim = '"', wchar_t escape = '\\') { in unquote()
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/
H A DStrSubstitutor.java304 final char escape) { in StrSubstitutor()
321 final char escape, final String valueDelimiter) { in StrSubstitutor()
344 final char escape) { in StrSubstitutor()
364 final char escape, final String valueDelimiter) { in StrSubstitutor()
383 final char escape) { in StrSubstitutor()
400 final char escape, final StrMatcher valueDelimiterMatcher) { in StrSubstitutor()
780 final char escape = getEscapeChar(); in substitute() local
/aosp_15_r20/external/python/markupsafe/tests/
Dtest_markupsafe.py6 def test_adding(escape): argument
64 def test_escaping(escape): argument
149 def test_escape_silent(escape, escape_silent): argument
166 def test_escape_return_type(escape): argument
/aosp_15_r20/external/python/markupsafe/src/markupsafe/
D__init__.py127 def escape(cls, s): member in Markup
219 def __init__(self, escape): argument
240 def _escape_argspec(obj, iterable, escape): argument
251 def __init__(self, obj, escape): argument
/aosp_15_r20/external/libcxx/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp78 void round_trip_e ( const CharT *p, char escape ) { in round_trip_e()
90 std::basic_string<CharT, Traits> quote ( const CharT *p, char delim='"', char escape='\\' ) { in quote()
101 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) { in unquote()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp77 void round_trip_e ( const CharT *p, char escape ) { in round_trip_e()
89 std::basic_string<CharT, Traits> quote ( const CharT *p, char delim='"', char escape='\\' ) { in quote()
100 std::basic_string<CharT, Traits> unquote ( const CharT *p, char delim='"', char escape='\\' ) { in unquote()
/aosp_15_r20/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
H A DUnicodeEscaper.java78 protected abstract char[] escape(int cp); in escape() method in UnicodeEscaper
139 public String escape(String string) { in escape() method in UnicodeEscaper
251 public Appendable escape(final Appendable out) { in escape() method in UnicodeEscaper
H A DEscaper.java60 String escape(String string); in escape() method
81 Appendable escape(Appendable out); in escape() method
/aosp_15_r20/out/soong/.intermediates/system/libsysprop/srcs/PlatformProperties_public/android_common/javac/
DPlatformProperties.jar ... .List ret private static java.lang.String escape (java.lang.String) String str private ...
/aosp_15_r20/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
H A DUTF8JsonGenerator.java1466 int escape = escCodes[ch]; in _writeStringSegment2() local
1504 int escape = escCodes[ch]; in _writeStringSegment2() local
1554 int escape = escCodes[ch]; in _writeStringSegmentASCII2() local
1598 int escape = escCodes[ch]; in _writeStringSegmentASCII2() local
1654 int escape = escCodes[ch]; in _writeCustomStringSegment2() local
1711 int escape = escCodes[ch]; in _writeCustomStringSegment2() local
1852 int escape = escCodes[ch]; in _writeUTF8Segment2() local
/aosp_15_r20/external/libchrome/third_party/markupsafe/
H A D__init__.py157 def escape(cls, s): member in Markup
203 def _escape_argspec(obj, iterable, escape): argument
214 def __init__(self, obj, escape): argument
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/nodes/
H A DEntities.java140 public static String escape(String string, OutputSettings out) { in escape() method in Entities
159 public static String escape(String string) { in escape() method in Entities
167 static void escape(Appendable accum, String string, OutputSettings out, in escape() method in Entities
/aosp_15_r20/out/soong/.intermediates/system/libsysprop/srcs/PlatformProperties/android_common_apex10000/javac/
DPlatformProperties.jar ... .List ret private static java.lang.String escape (java.lang.String) String str private ...
/aosp_15_r20/out/soong/.intermediates/system/libsysprop/srcs/PlatformProperties/android_common/javac/
DPlatformProperties.jar ... .List ret private static java.lang.String escape (java.lang.String) String str private ...
/aosp_15_r20/external/libxml2/tools/
H A DgenEscape.py41 escape = '\r&<>' variable
61 escape = '\t\n\r"&<>' variable
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/include/boost/archive/iterators/
Descape.hpp33 class escape : class
101 escape(Base base) : in escape() function in boost::archive::iterators::escape
/aosp_15_r20/external/guava/android/guava/src/com/google/common/escape/
H A DArrayBasedCharEscaper.java105 public final String escape(String s) { in escape() method in ArrayBasedCharEscaper
125 protected final char[] escape(char c) { in escape() method in ArrayBasedCharEscaper
H A DCharEscaperBuilder.java57 public String escape(String s) { in escape() method in CharEscaperBuilder.CharArrayDecorator
70 protected char[] escape(char c) { in escape() method in CharEscaperBuilder.CharArrayDecorator
/aosp_15_r20/external/guava/guava/src/com/google/common/escape/
H A DArrayBasedCharEscaper.java105 public final String escape(String s) { in escape() method in ArrayBasedCharEscaper
125 protected final char[] escape(char c) { in escape() method in ArrayBasedCharEscaper
H A DCharEscaperBuilder.java57 public String escape(String s) { in escape() method in CharEscaperBuilder.CharArrayDecorator
70 protected char[] escape(char c) { in escape() method in CharEscaperBuilder.CharArrayDecorator

12345678910>>...51