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

1 2 3 4 5 6 7

  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted_char.fail.cpp 12 // quoted
23 ss << std::quoted(p);
25 ss >> std::quoted(s);
quoted_traits.fail.cpp 12 // quoted
29 ss << std::quoted(p);
31 ss >> std::quoted(s);
quoted.pass.cpp 12 // quoted
32 auto q = std::quoted(str);
43 ss << std::quoted(p);
45 ss >> std::quoted(s);
54 ss << std::quoted(p);
56 ss >> std::quoted(s);
63 ss << std::quoted(p, delim);
65 ss >> std::quoted(s, delim);
71 ss << std::quoted(p, '"', escape );
73 ss >> std::quoted(s, '"', escape )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/quoted.manip/
quoted_char.fail.cpp 12 // quoted
23 ss << std::quoted(p);
25 ss >> std::quoted(s);
quoted_traits.fail.cpp 12 // quoted
29 ss << std::quoted(p);
31 ss >> std::quoted(s);
quoted.pass.cpp 12 // quoted
32 auto q = std::quoted(str);
43 ss << std::quoted(p);
45 ss >> std::quoted(s);
54 ss << std::quoted(p);
56 ss >> std::quoted(s);
63 ss << std::quoted(p, delim);
65 ss >> std::quoted(s, delim);
71 ss << std::quoted(p, '"', escape );
73 ss >> std::quoted(s, '"', escape )
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
X500NameTokenizer.java 44 boolean quoted = false;
57 quoted = !quoted;
64 if (escaped || quoted)
  /external/libcxx/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 12 // quoted
20 // quoted is C++14 only
36 ss << std::quoted(sv);
38 ss >> std::quoted(s);
49 ss << std::quoted(sv);
51 ss >> std::quoted(s);
60 ss << std::quoted(sv, delim);
62 ss >> std::quoted(s, delim);
70 ss << std::quoted(sv, '"', escape );
72 ss >> std::quoted(s, '"', escape )
    [all...]
  /external/linux-tools-perf/src/tools/perf/util/
alias.c 29 char quoted = 0; local
37 if (!quoted && isspace(c)) {
47 } else if (!quoted && (c == '\'' || c == '"')) {
48 quoted = c;
50 } else if (c == quoted) {
51 quoted = 0;
54 if (c == '\\' && quoted != '\'') {
70 if (quoted) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 45 boolean quoted = false;
58 quoted = !quoted;
65 if (escaped || quoted)
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 47 * Indicates that the attribute value is Javascript-quoted. Only takes
50 * HTML quoted.
71 * Indicates that the parser is inside a quoted {@code String}. Only
186 * @param quoted whether the attribute value is enclosed in double quotes
194 boolean quoted, Set<AttributeOptions> options) {
201 quoted ? parserInDefaultAttrQ : parserInDefaultAttr);
206 quoted ? parserInUriAttrQPartial : parserInUriAttrPartial);
209 quoted ? parserInUriAttrQComplete : parserInUriAttrComplete);
213 // inside a Javascript quoted string that is in an unquoted HTML
216 // quoted attribute values are always HTML quoted
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonEvent.java 188 * Also understands "\"quoted\" multiword responses" and tries them as a single field
206 boolean quoted = false;
210 quoted = true;
215 char terminator = quoted ? '\"' : ' ';
227 if (!quoted) {
246 quoted = true;
249 quoted = false;
256 ", length=" + length + ", quoted=" + quoted);
  /external/nist-sip/java/gov/nist/core/
ParserCore.java 59 boolean quoted = false;
70 quoted = true;
83 if (quoted) nv.setQuotedValue();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 20 """CREATE TABLE "quoted""table"("quoted""field" text);"""
22 """INSERT INTO "quoted""table" VALUES('quoted''value');"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dump.py 20 """CREATE TABLE "quoted""table"("quoted""field" text);"""
22 """INSERT INTO "quoted""table" VALUES('quoted''value');"""
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 287 * depending on the quoted arg.
289 public String getTargetStringLiteralFromString(String s, boolean quoted) {
295 if ( quoted ) {
310 if ( quoted ) {
DelphiTarget.java 84 public String getTargetStringLiteralFromString(String s, boolean quoted) {
89 if ( quoted ) {
110 if ( quoted ) {
  /external/llvm/utils/lit/lit/
ShCommands.py 19 quoted = "'%s'" % arg
21 quoted = '"%s"' % arg
24 file.write(quoted)
28 dequoted = list(ShUtil.ShLexer(quoted).lex())
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.h 37 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
42 * Same, but use line breaks. quoted: -1 remove, 0 as is, 1 add quotes
44 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
  /external/jetty/src/java/org/eclipse/jetty/server/
CookieCutter.java 133 boolean quoted=false;
141 // Handle quoted values for name or value
142 if (quoted)
154 quoted=false;
191 quoted=true;
236 quoted=true;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 5 """Quoted-printable content transfer encoding per RFCs 2045-2047.
8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
13 Quoted-printable is very space-inefficient for encoding binary files; use the
17 with quoted-printable encoding.
118 """Encode a single header line with quoted-printable (like) encoding.
120 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
154 quoted = []
164 _max_append(quoted, '_', max_encoded)
167 _max_append(quoted, c, max_encoded)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 5 """Quoted-printable content transfer encoding per RFCs 2045-2047.
8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
13 Quoted-printable is very space-inefficient for encoding binary files; use the
17 with quoted-printable encoding.
118 """Encode a single header line with quoted-printable (like) encoding.
120 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
154 quoted = []
164 _max_append(quoted, '_', max_encoded)
167 _max_append(quoted, c, max_encoded)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 155 boolean quoted = false;
170 quoted = true;
179 if (quoted)
  /external/openssh/
auth-rsa.c 208 int quoted = 0; local
210 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
214 quoted = !quoted;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
MIMEContainer.java 109 boolean quoted = false;
113 if (text.equalsIgnoreCase("quoted-printable")) {
114 quoted = true;
130 mText = recode(getBody(in, boundary, quoted, eof), charset);
253 private static String getBody(LineNumberReader in, String boundary, boolean quoted, AtomicBoolean eof)
274 if (quoted) {
314 throw new IOException("Bad codepoint " + (int)ch + " in quoted printable @ " + line);

Completed in 6672 milliseconds

1 2 3 4 5 6 7