Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/external/starlark-go/syntax/
Dquote.go48 func unquote(quoted string) (s string, triple, isByte bool, err error) {
51 if strings.HasPrefix(quoted, "r") {
53 quoted = quoted[1:]
56 if strings.HasPrefix(quoted, "b") {
58 quoted = quoted[1:]
61 if len(quoted) < 2 {
66 if quoted[0] != '"' && quoted[0] != '\'' || quoted[0] != quoted[len(quoted)-1] {
72 quote := quoted[0]
73 …if len(quoted) >= 6 && quoted[1] == quote && quoted[2] == quote && quoted[:3] == quoted[len(quoted
75 quoted = quoted[3 : len(quoted)-3]
[all …]
/external/llvm-project/libcxx/test/std/strings/string.view/string.view.nonmem/
Dquoted.pass.cpp37 ss << std::quoted(sv); in round_trip()
39 ss >> std::quoted(s); in round_trip()
50 ss << std::quoted(sv); in round_trip_ws()
52 ss >> std::quoted(s); in round_trip_ws()
61 ss << std::quoted(sv, delim); in round_trip_d()
63 ss >> std::quoted(s, delim); in round_trip_d()
71 ss << std::quoted(sv, '"', escape ); in round_trip_e()
73 ss >> std::quoted(s, '"', escape ); in round_trip_e()
81 ss << std::quoted(p, delim, escape); in quote()
91 ss >> std::quoted(s, delim, escape); in unquote()
[all …]
/external/libcxx/test/std/strings/string.view/string.view.nonmem/
Dquoted.pass.cpp38 ss << std::quoted(sv); in round_trip()
40 ss >> std::quoted(s); in round_trip()
51 ss << std::quoted(sv); in round_trip_ws()
53 ss >> std::quoted(s); in round_trip_ws()
62 ss << std::quoted(sv, delim); in round_trip_d()
64 ss >> std::quoted(s, delim); in round_trip_d()
72 ss << std::quoted(sv, '"', escape ); in round_trip_e()
74 ss >> std::quoted(s, '"', escape ); in round_trip_e()
82 ss << std::quoted(p, delim, escape); in quote()
92 ss >> std::quoted(s, delim, escape); in unquote()
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/Attestation/
DQuote.c57 TPMS_ATTEST quoted; in TPM2_Quote() local
70 FillInAttestInfo(in->signHandle, &in->inScheme, &in->qualifyingData, &quoted); in TPM2_Quote()
74 quoted.type = TPM_ST_ATTEST_QUOTE; in TPM2_Quote()
86 &quoted.attested.quote.pcrDigest); in TPM2_Quote()
90 quoted.attested.quote.pcrSelect = in->PCRselect; in TPM2_Quote()
94 return SignAttestInfo(signObject, &in->inScheme, &quoted, &in->qualifyingData, in TPM2_Quote()
95 &out->quoted, &out->signature); in TPM2_Quote()
/external/llvm-project/libcxx/test/std/input.output/iostream.format/quoted.manip/
Dquoted.pass.cpp30 auto q = std::quoted(str); in both_ways()
44 ss << std::quoted(p); in round_trip()
46 ss >> std::quoted(s); in round_trip()
58 ss << std::quoted(p); in round_trip_ws()
60 ss >> std::quoted(s); in round_trip_ws()
70 ss << std::quoted(p, d); in round_trip_d()
72 ss >> std::quoted(s, d); in round_trip_d()
81 ss << std::quoted(p, CharT('"'), e ); in round_trip_e()
83 ss >> std::quoted(s, CharT('"'), e ); in round_trip_e()
93 ss << std::quoted(p, d, e); in quote()
[all …]
/external/libcxx/test/std/input.output/iostream.format/quoted.manip/
Dquoted.pass.cpp31 auto q = std::quoted(str); in both_ways()
45 ss << std::quoted(p); in round_trip()
47 ss >> std::quoted(s); in round_trip()
59 ss << std::quoted(p); in round_trip_ws()
61 ss >> std::quoted(s); in round_trip_ws()
71 ss << std::quoted(p, d); in round_trip_d()
73 ss >> std::quoted(s, d); in round_trip_d()
82 ss << std::quoted(p, CharT('"'), e ); in round_trip_e()
84 ss >> std::quoted(s, CharT('"'), e ); in round_trip_e()
94 ss << std::quoted(p, d, e); in quote()
[all …]
/external/tpm2-tss/src/tss2-esys/api/
DEsys_Quote.c75 TPM2B_ATTEST **quoted, in Esys_Quote() argument
95 r = Esys_Quote_Finish(esysContext, quoted, signature); in Esys_Quote()
252 TPM2B_ATTEST **quoted, in Esys_Quote_Finish() argument
257 esysContext, quoted, signature); in Esys_Quote_Finish()
273 if (quoted != NULL) { in Esys_Quote_Finish()
274 *quoted = calloc(sizeof(TPM2B_ATTEST), 1); in Esys_Quote_Finish()
275 if (*quoted == NULL) { in Esys_Quote_Finish()
339 (quoted != NULL) ? *quoted : NULL, in Esys_Quote_Finish()
350 if (quoted != NULL) in Esys_Quote_Finish()
351 SAFE_FREE(*quoted); in Esys_Quote_Finish()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DAbstractLauncher.java71 String quoted = null; in tokenizeCommand() local
76 if (quoted != null) { in tokenizeCommand()
78 tokenList.add(quoted); in tokenizeCommand()
79 quoted = null; in tokenizeCommand()
81 quoted += token; in tokenizeCommand()
85 quoted = pending; in tokenizeCommand()
95 quoted = ""; in tokenizeCommand()
116 if (quoted != null) { in tokenizeCommand()
117 tokenList.add(quoted); in tokenizeCommand()
/external/llvm-project/lldb/source/Utility/
DArgs.cpp24 static llvm::StringRef ParseDoubleQuotes(llvm::StringRef quoted, in ParseDoubleQuotes() argument
30 size_t regular = quoted.find_first_of(k_escapable_characters); in ParseDoubleQuotes()
31 result += quoted.substr(0, regular); in ParseDoubleQuotes()
32 quoted = quoted.substr(regular); in ParseDoubleQuotes()
35 if (quoted.empty() || quoted.front() == '"') in ParseDoubleQuotes()
39 quoted = quoted.drop_front(); in ParseDoubleQuotes()
41 if (quoted.empty()) { in ParseDoubleQuotes()
49 if (strchr(k_escapable_characters, quoted.front()) == nullptr) in ParseDoubleQuotes()
52 result += quoted.front(); in ParseDoubleQuotes()
53 quoted = quoted.drop_front(); in ParseDoubleQuotes()
[all …]
/external/jsilver/src/com/google/streamhtmlparser/
DHtmlParserFactory.java194 boolean quoted, Set<AttributeOptions> options) { in createParserInAttribute() argument
201 quoted ? parserInDefaultAttrQ : parserInDefaultAttr); in createParserInAttribute()
206 quoted ? parserInUriAttrQPartial : parserInUriAttrPartial); in createParserInAttribute()
209 quoted ? parserInUriAttrQComplete : parserInUriAttrComplete); in createParserInAttribute()
217 if (quoted) { in createParserInAttribute()
228 quoted ? parserInStyleAttrQ : parserInStyleAttr); in createParserInAttribute()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DX500NameTokenizer.java44 boolean quoted = false; in nextToken()
57 quoted = !quoted; in nextToken()
64 if (escaped || quoted) in nextToken()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/
DX500NameTokenizer.java46 boolean quoted = false; in nextToken()
59 quoted = !quoted; in nextToken()
66 if (escaped || quoted) in nextToken()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x500/style/
DX500NameTokenizer.java46 boolean quoted = false; in nextToken()
59 quoted = !quoted; in nextToken()
66 if (escaped || quoted) in nextToken()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/
DX509NameTokenizer.java47 boolean quoted = false; in nextToken()
60 quoted = !quoted; in nextToken()
67 if (escaped || quoted) in nextToken()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DX509NameTokenizer.java45 boolean quoted = false; in nextToken()
58 quoted = !quoted; in nextToken()
65 if (escaped || quoted) in nextToken()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DX509NameTokenizer.java47 boolean quoted = false; in nextToken()
60 quoted = !quoted; in nextToken()
67 if (escaped || quoted) in nextToken()
/external/desugar/java/com/google/devtools/common/options/
DShellQuotedParamsFilePreProcessor.java92 boolean quoted = false; in readArg()
96 if (quoted) { in readArg()
106 quoted = false; in readArg()
114 quoted = true; in readArg()
131 if (quoted) { in readArg()
/external/python/cpython2/Doc/library/
Dquopri.rst1 :mod:`quopri` --- Encode and decode MIME quoted-printable data
5 :synopsis: Encode and decode files using the MIME quoted-printable encoding.
9 pair: quoted-printable; encoding
10 single: MIME; quoted-printable encoding
16 This module performs quoted-printable transport encoding and decoding, as
19 The quoted-printable encoding is designed for data where there are relatively
37 Encode the contents of the *input* file and write the resulting quoted-printable
/external/python/cpython3/Doc/library/
Dquopri.rst1 :mod:`quopri` --- Encode and decode MIME quoted-printable data
5 :synopsis: Encode and decode files using the MIME quoted-printable encoding.
10 pair: quoted-printable; encoding
11 single: MIME; quoted-printable encoding
15 This module performs quoted-printable transport encoding and decoding, as
18 The quoted-printable encoding is designed for data where there are relatively
35 Encode the contents of the *input* file and write the resulting quoted-printable
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
DCollationMapper.java163 boolean quoted = false; in findCommentStart()
167 quoted = !quoted; in findCommentStart()
171 if (quoted) { in findCommentStart()
177 if (!quoted) { in findCommentStart()
186 checkArgument(!quoted, "mismatched quotes in: %s", s); in findCommentStart()
/external/llvm-project/clang/test/Modules/
Ddouble-quotes.m26 // CHECK: double-quoted include "A0.h" in framework header, expected angle-bracketed instead
27 // CHECK: double-quoted include "B.h" in framework header, expected angle-bracketed instead
28 // CHECK: double-quoted include "B.h" in framework header, expected angle-bracketed instead
38 // expected-warning@Inputs/double-quotes/A.framework/Headers/A.h:1{{double-quoted include "A0.h" in…
39 // expected-warning@Inputs/double-quotes/A.framework/Headers/A.h:2{{double-quoted include "B.h" in …
40 // expected-warning@Inputs/double-quotes/flat-header-path/Z.h:1{{double-quoted include "B.h" in fra…
/external/libcups/cgi-bin/
Dsearch.c34 int quoted; /* Word is quoted */ in cgiCompileSearch() local
101 quoted = *qptr ++; in cgiCompileSearch()
102 for (qend = qptr; *qend && *qend != quoted; qend ++); in cgiCompileSearch()
125 quoted = 0; in cgiCompileSearch()
269 if (quoted) in cgiCompileSearch()
/external/python/cpython2/Lib/
Dshlex.py121 quoted = False
140 if self.token or (self.posix and quoted):
162 if self.token or (self.posix and quoted):
167 quoted = True
207 if self.token or (self.posix and quoted):
216 if self.token or (self.posix and quoted):
233 if self.token or (self.posix and quoted):
239 if self.posix and not quoted and result == '':
/external/llvm-project/llvm/test/CodeGen/MIR/X86/
Dmissing-closing-quote.mir5 @"quoted name" = external global i32
9 %a = load i32, i32* @"quoted name"
19 $rax = MOV64rm $rip, 1, _, @"quoted name, _
/external/llvm/test/CodeGen/MIR/X86/
Dmissing-closing-quote.mir5 @"quoted name" = external global i32
9 %a = load i32, i32* @"quoted name"
19 %rax = MOV64rm %rip, 1, _, @"quoted name, _

12345678910>>...19