Home
last modified time | relevance | path

Searched refs:string_rule (Results 1 – 6 of 6) sorted by relevance

/dports/devel/hyperscan/boost_1_75_0/libs/spirit/test/x3/
H A Dcontainer_support.cpp57 x3::rule<class string_rule, std::string> const string_rule("string"); variable
59 auto const pair_rule_def = string_rule > x3::lit('=') > string_rule;
62 BOOST_SPIRIT_DEFINE(pair_rule, string_rule) in BOOST_SPIRIT_DEFINE() argument
126 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_sequence_support()
131 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_sequence_support()
150 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_set_support()
155 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_set_support()
174 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_multiset_support()
179 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_multiset_support()
198 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_string_support()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/spirit/test/x3/
H A Dcontainer_support.cpp28 x3::rule<class string_rule, std::string> const string_rule("string"); variable
30 auto const pair_rule_def = string_rule > x3::lit('=') > string_rule;
33 BOOST_SPIRIT_DEFINE(pair_rule, string_rule) in BOOST_SPIRIT_DEFINE() argument
97 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_sequence_support()
102 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_sequence_support()
121 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_set_support()
126 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_set_support()
145 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_multiset_support()
150 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_multiset_support()
169 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_string_support()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/spirit/test/x3/
H A Dcontainer_support.cpp28 x3::rule<class string_rule, std::string> const string_rule("string"); variable
30 auto const pair_rule_def = string_rule > x3::lit('=') > string_rule;
33 BOOST_SPIRIT_DEFINE(pair_rule, string_rule) in BOOST_SPIRIT_DEFINE() argument
97 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_sequence_support()
102 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_sequence_support()
121 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_set_support()
126 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_set_support()
145 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_multiset_support()
150 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_multiset_support()
169 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_string_support()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/spirit/test/x3/
H A Dcontainer_support.cpp28 x3::rule<class string_rule, std::string> const string_rule("string"); variable
30 auto const pair_rule_def = string_rule > x3::lit('=') > string_rule;
33 BOOST_SPIRIT_DEFINE(pair_rule, string_rule) in BOOST_SPIRIT_DEFINE() argument
97 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_sequence_support()
102 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_sequence_support()
121 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_set_support()
126 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_set_support()
145 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_multiset_support()
150 auto const cic_rule = string_rule >> +(',' >> string_rule); in test_multiset_support()
169 auto const seq_rule = string_rule >> ',' >> string_rule >> ',' >> string_rule; in test_string_support()
[all …]
/dports/cad/openroad/OpenROAD-2.0/src/gui/src/
H A DtclCmdHighlighter.cpp194 string_rule.rules.push_back(buildRule("\".*?"+not_escaped+"\"")); // complete string in initOther()
195 string_rule.rules.push_back(buildRule("(\".*?$)")); // string at end of line in initOther()
196 string_rule.rules.push_back(buildRule("^.*?"+not_escaped+"\"")); //start of line in initOther()
197 string_rule.rules.push_back(buildRule(".*")); //whole line in initOther()
198 string_rule.format = &string_format_; in initOther()
199 string_rule.args_format = nullptr; in initOther()
307 offset = highlightBlockWithRule(text, 0, string_rule.rules[2]->pattern, string_rule.format); in highlightBlockWithString()
312 highlightBlockWithRule(text, 0, string_rule.rules[3]->pattern, string_rule.format); in highlightBlockWithString()
318 …complete_offset = highlightBlockWithRule(text, offset, string_rule.rules[0]->pattern, string_rule.… in highlightBlockWithString()
323 …if (highlightBlockWithRule(text, offset, string_rule.rules[1]->pattern, string_rule.format) != -1)… in highlightBlockWithString()
H A DtclCmdHighlighter.h111 SyntaxRuleGroup string_rule; variable