Home
last modified time | relevance | path

Searched refs:test_parser (Results 1 – 25 of 34) sorted by relevance

12

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/qi/
Dreference.cpp28 void test_parser( in test_parser() function
338 test_parser("x", 'x'); // plain literal in main()
339 test_parser("x", lit('x')); // explicit literal in main()
340 test_parser("x", char_('x')); // ascii::char_ in main()
356 test_parser("x", phx::val('x')); // direct in main()
357 test_parser("5", in main()
369 test_parser("boost", "boost"); // plain literal in main()
370 test_parser("boost", lit("boost")); // explicit literal in main()
371 test_parser("boost", string("boost")); // ascii::string in main()
381 test_parser("boost", s); // direct in main()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/lex/
Dstate_switcher.cpp51 BOOST_TEST(test_parser("ident", lex.identifier, lex)); in main()
52 BOOST_TEST(!test_parser("ident", set_state("WS") >> lex.identifier, lex)); in main()
53 BOOST_TEST(!test_parser("ident", in_state("WS")[lex.identifier], lex)); in main()
55 BOOST_TEST(test_parser("\t \n", set_state("WS") >> lex.white_space, lex)); in main()
56 BOOST_TEST(test_parser("\t \n", in_state("WS")[lex.white_space], lex)); in main()
57 BOOST_TEST(!test_parser("\t \n", lex.white_space, lex)); in main()
64 BOOST_TEST(test_parser(",ident", lex.identifier, lex, in main()
66 BOOST_TEST(!test_parser(";ident", set_state("WS") >> lex.identifier, in main()
68 BOOST_TEST(!test_parser(",ident", in_state("WS")[lex.identifier], in main()
71 BOOST_TEST(test_parser(",\t \n", set_state("WS") >> lex.white_space, in main()
[all …]
Dtest_parser.hpp16 inline bool test_parser(Char const* in, Parser const& p, Lexer& lex, in test_parser() function
37 inline bool test_parser(Char const* in, Parser const& p, Lexer& lex, in test_parser() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/workbench/qi/
Dattr_vs_actions.cpp54 struct test_parser : grammar<Iterator, std::vector<test_attr>() > struct
56 test_parser() : test_parser::base_type(start) in test_parser() argument
71 typedef test_parser<iterator_type> test_parser; in main() typedef
73 test_parser g; in main()
/aosp_15_r20/external/cronet/build/lacros/
H A Dtest_runner.py817 test_parser = subparsers.add_parser('test', help='Run tests')
818 test_parser.set_defaults(func=_RunTest)
820 test_parser.add_argument(
826 version_group = test_parser.add_mutually_exclusive_group()
840 debugger_group = test_parser.add_mutually_exclusive_group()
852 test_parser.add_argument(
858 test_parser.add_argument(
863 test_parser.add_argument('--combine-ash-logs-on-bots',
866 test_parser.add_argument(
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_lib2to3.py4 test_parser, test_main as test_main_)
11 for m in (test_fixers, test_pytree,test_util, test_refactor, test_parser,
/aosp_15_r20/external/python/bumble/tests/
Dtransport_test.py33 def test_parser(): function
76 test_parser()
/aosp_15_r20/external/emboss/compiler/front_end/
H A Dparser_test.py131 test_parser = parser.generate_parser(
137 parse_result = test_parser.parse([parser_types.Token("s", "s", None),
/aosp_15_r20/external/python/pyyaml/tests/lib/
Dtest_structure.py74 def test_parser(data_filename, canonical_filename, verbose=False): function
90 test_parser.unittest = ['.data', '.canonical']
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/property_tree/test/
Dtest_json_parser2.cpp28 struct test_parser struct
39 test_parser() : parser(callbacks, encoding) {} in test_parser() argument
111 : test_parser< argument
119 : test_parser<
/aosp_15_r20/external/autotest/contrib/
H A Dsuite_utils.py148 self.test_parser = TestParser()
166 self.tests, self.suites = self.test_parser.get_all_test_objects(
/aosp_15_r20/external/rust/android-crates-io/crates/unsafe-libyaml/tests/
Dtest_parser.rs32 unsafe_libyaml_test_suite::test_parser!();
/aosp_15_r20/external/tensorflow/tensorflow/tools/docs/
H A Dfenced_doctest_test.py229 def test_parser(self, expected_example_tuples: ExampleTuples, string: str): member in G3DoctestTest
/aosp_15_r20/external/python/asn1crypto/tests/
D__init__.py103 from .test_parser import ParserTests
Dtest_parser.py15 def test_parser(self): member in ParserTests
/aosp_15_r20/external/python/cpython2/Demo/parser/
DREADME25 test_parser.py program to put the parser module through its paces.
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/repository/example/qi/
Dkeywords.cpp23 void test_parser( in test_parser() function
/aosp_15_r20/art/build/apex/
H A Dart_apex_test.py869 def art_apex_test_default(test_parser): argument
879 test_args = test_parser.parse_args(['unused']) # For consistency.
/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/
Dsignature.rs241 fn test_parser() { in test_parser() function
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/
Dsignature.rs241 fn test_parser() { in test_parser() function
/aosp_15_r20/external/python/cpython3/Lib/test/test_email/
Dtest_policy.py321 def test_parser(self): member in TestPolicyPropagation
/aosp_15_r20/external/rust/android-crates-io/crates/yaml-rust/src/
Dyaml.rs396 fn test_parser() { in test_parser() function
/aosp_15_r20/external/python/dateutil/dateutil/test/
Dtest_parser.py96 def test_parser(parsable_text, expected_datetime, assertion_message): function
/aosp_15_r20/external/mbedtls/tests/scripts/
H A Dtest_generate_test_code.py1267 def test_parser(self): member in ParseTestData
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/scripts/
H A Dtest_generate_test_code.py1267 def test_parser(self): member in ParseTestData

12