Home
last modified time | relevance | path

Searched refs:quoted_string (Results 1 – 25 of 36) sorted by relevance

12

/third_party/boost/libs/spirit/workbench/qi/
Dkeywords.cpp164 quoted_string %= lexeme[+(char_-' ')]; in permutation_parser()
170 quoted_string in permutation_parser()
178 qi::rule<Iterator, std::string(), ascii::space_type> quoted_string; member
200 quoted_string %= lexeme[+(char_-' ')]; in alternative_parser()
206 quoted_string [at_c<0>(_val)=_1] in alternative_parser()
213 qi::rule<Iterator, std::string(), ascii::space_type> quoted_string; member
242 quoted_string %= lexeme[+(char_-' ')]; in tst_parser()
256quoted_string [at_c<0>(_val)=_1][phx::ref(currentObj)=&_val] in tst_parser()
264quoted_string [at_c<0>(_val)=_1][phx::ref(currentObj)=&_val] in tst_parser()
272quoted_string [at_c<0>(_val)=_1][phx::ref(currentObj)=&_val] in tst_parser()
[all …]
/third_party/boost/libs/spirit/example/x3/minimal/
Demployee_def.hpp35 auto const quoted_string = lexeme['"' >> +(char_ - '"') >> '"']; variable
41 >> quoted_string >> ','
42 >> quoted_string >> ','
/third_party/boost/libs/spirit/example/qi/
Demployee.cpp78 quoted_string %= lexeme['"' >> +(char_ - '"') >> '"']; in employee_parser()
84 >> quoted_string >> ',' in employee_parser()
85 >> quoted_string >> ',' in employee_parser()
91 qi::rule<Iterator, std::string(), ascii::space_type> quoted_string; member
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_full/rexpr/
Drexpr_def.hpp56 auto const quoted_string = variable
60 quoted_string | rexpr_inner;
63 quoted_string > '=' > rexpr_value;
/third_party/boost/libs/spirit/example/x3/
Demployee.cpp67 auto const quoted_string = lexeme['"' >> +(char_ - '"') >> '"']; variable
73 >> quoted_string >> ','
74 >> quoted_string >> ','
Derror_handling.cpp112 x3::rule<quoted_string_class, std::string> const quoted_string = "quoted_string"; variable
117 auto const person_def = quoted_string > ',' > quoted_string;
129 BOOST_SPIRIT_DEFINE(quoted_string, person, employee);
Dannotation.cpp112 x3::rule<quoted_string_class, std::string> const quoted_string = "quoted_string"; variable
117 auto const person_def = quoted_string >> ',' >> quoted_string;
129 BOOST_SPIRIT_DEFINE(quoted_string, person, employee);
/third_party/boost/libs/spirit/doc/qi/
Demployee.qbk67 rule<Iterator, std::string(), space_type> quoted_string;
70 Declares two rules: `quoted_string` and `start`. `start` has the same template
71 parameters as the grammar itself. `quoted_string` has a `std::string` attribute.
172 So, going back to our `quoted_string` rule:
174 quoted_string %= lexeme['"' >> +(char_ - '"') >> '"'];
178 quoted_string = lexeme['"' >> +(char_ - '"') >> '"'][_val = _1];
180 The attribute of the `quoted_string` rule: `std::string` *is compatible* with
196 >> quoted_string >> ','
197 >> quoted_string >> ','
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_min/
Drexpr.cpp141 auto const quoted_string = variable
145 quoted_string | rexpr;
148 quoted_string >> '=' >> rexpr_value;
/third_party/boost/libs/spirit/doc/x3/tutorial/
Drexpr.qbk173 auto const quoted_string =
177 quoted_string | rexpr;
180 quoted_string >> '=' >> rexpr_value;
199 To make the grammar clean, we capture the `quoted_string` production using
202 `rexpr_value` is a `quoted_string` followed by the assignment operator `'='`,
203 followed by a `rexpr_value`. `rexpr_value` is a `quoted_string` /OR/ a `rexpr`.
Derror_handling.qbk182 x3::rule<quoted_string_class, std::string> const quoted_string = "quoted_string";
187 auto const person_def = quoted_string > ',' > quoted_string;
199 BOOST_SPIRIT_DEFINE(quoted_string, person, employee);
212 auto const person_def = quoted_string > ',' > quoted_string;
235 calls (i.e. the `person` and `quoted_string` rules).
Demployee.qbk70 auto const quoted_string = lexeme['"' >> +(char_ - '"') >> '"'];
76 >> quoted_string >> ','
77 >> quoted_string >> ','
194 >> quoted_string >> ','
195 >> quoted_string >> ','
Dannotation.qbk167 x3::rule<quoted_string_class, std::string> const quoted_string = "quoted_string";
172 auto const person_def = quoted_string >> ',' >> quoted_string;
184 BOOST_SPIRIT_DEFINE(quoted_string, person, employee);
193 x3::rule<quoted_string_class, std::string> const quoted_string = "quoted_string";
200 * We split the single employee rule into three smaller rules: `quoted_string`,
Dminimal.qbk145 auto const quoted_string = lexeme['"' >> +(char_ - '"') >> '"'];
151 >> quoted_string >> ','
152 >> quoted_string >> ','
/third_party/glib/glib/
Dgshell.c269 g_shell_unquote (const gchar *quoted_string, in g_shell_unquote() argument
277 g_return_val_if_fail (quoted_string != NULL, NULL); in g_shell_unquote()
279 unquoted = g_strdup (quoted_string); in g_shell_unquote()
Dgshell.h47 gchar* g_shell_unquote (const gchar *quoted_string,
/third_party/boost/libs/graph/src/
Dread_graphviz_new.cpp82 quoted_string, // Only used internally in tokenizer enumerator
161 case token::quoted_string: in operator <<()
376 return token(token::quoted_string, str); in get_token_raw()
440 if (t.type != token::quoted_string) in get_token()
447 if (t2.type != token::quoted_string) in get_token()
/third_party/libsoup/libsoup/
Dsoup-headers.c653 decode_quoted_string (char *quoted_string) in decode_quoted_string() argument
657 src = quoted_string + 1; in decode_quoted_string()
658 dst = quoted_string; in decode_quoted_string()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspmessage.c1337 decode_quoted_string (gchar * quoted_string) in decode_quoted_string() argument
1341 src = quoted_string + 1; in decode_quoted_string()
1342 dst = quoted_string; in decode_quoted_string()
/third_party/python/Lib/email/
D_header_value_parser.py1290 quoted_string = QuotedString()
1293 quoted_string.append(token)
1295 quoted_string.append(token)
1298 quoted_string.append(token)
1299 return quoted_string, value
/third_party/pcre2/pcre2/testdata/
Dtestinput15923 (?<local_part> (?&dot_atom) | (?&quoted_string) )
5929 (?<quoted_string> (?&CFWS)?+ " (?: (?&FWS)?+ (?&qcontent))* (?&FWS)?+ "
5933 (?<word> (?&atom) | (?&quoted_string) )
5973 (?&quoted_string) |
5996 (?&quoted_string) |
6047 (?&quoted_string)
6052 (?<quoted_string> (?: \\Q (?: (?!\\E | \k'delimiter') . )++ (?: \\E | ) ) )
6117quoted_string) | (?&quoted_string_empty) | (?&special_escape) | (?&verb) )* )(?<callout> \(\?C (?:…
Dtestoutput19477 (?<local_part> (?&dot_atom) | (?&quoted_string) )
9483 (?<quoted_string> (?&CFWS)?+ " (?: (?&FWS)?+ (?&qcontent))* (?&FWS)?+ "
9487 (?<word> (?&atom) | (?&quoted_string) )
9538 (?&quoted_string) |
9561 (?&quoted_string) |
9612 (?&quoted_string)
9617 (?<quoted_string> (?: \\Q (?: (?!\\E | \k'delimiter') . )++ (?: \\E | ) ) )
9696quoted_string) | (?&quoted_string_empty) | (?&special_escape) | (?&verb) )* )(?<callout> \(\?C (?:…
9697quoted_string) | (?&quoted_string_empty) | (?&special_escape) | (?&verb) )* )(?<callout> \(\?C (?:…
/third_party/ejdb/src/jql/
DREADME.md27 STR = { quoted_string | unquoted_string };
/third_party/ejdb/
DREADME.md199 STR = { quoted_string | unquoted_string };
/third_party/skia/third_party/externals/microhttpd/
Dltmain.sh4997 char *quoted_string;

12