Searched refs:ParserResult (Results 1 – 6 of 6) sorted by relevance
/external/catch2/include/internal/ |
D | catch_commandline.cpp | 37 return ParserResult::runtimeError( "Unrecognised warning: '" + warning + "'" ); in makeCommandLineParser() 39 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser() 44 … return ParserResult::runtimeError( "Unable to load input file: '" + filename + "'" ); in makeCommandLineParser() 60 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser() 70 … return clara::ParserResult::runtimeError( "Unrecognised ordering: '" + order + "'" ); in makeCommandLineParser() 71 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser() 77 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser() 89 …return ParserResult::runtimeError( "colour mode must be one of: auto, yes or no. '" + useColour + … in makeCommandLineParser() 90 return ParserResult::ok( ParseResultType::Matched ); in makeCommandLineParser() 103 …return ParserResult::runtimeError( "keypress argument must be one of: never, start, exit or both. … in makeCommandLineParser() [all …]
|
/external/catch2/include/external/ |
D | clara.hpp | 646 using ParserResult = BasicResult<ParseResultType>; typedef 655 inline auto convertInto( std::string const &source, T& target ) -> ParserResult { in convertInto() 660 … return ParserResult::runtimeError( "Unable to convert '" + source + "' to destination type" ); in convertInto() 662 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 664 inline auto convertInto( std::string const &source, std::string& target ) -> ParserResult { in convertInto() 666 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 668 inline auto convertInto( std::string const &source, bool &target ) -> ParserResult { in convertInto() 676 …return ParserResult::runtimeError( "Expected a boolean value but did not recognise: '" + source + … in convertInto() 677 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 681 …o convertInto( std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult { in convertInto() [all …]
|
/external/catch2/third_party/ |
D | clara.hpp | 646 using ParserResult = BasicResult<ParseResultType>; typedef 655 inline auto convertInto( std::string const &source, T& target ) -> ParserResult { in convertInto() 660 … return ParserResult::runtimeError( "Unable to convert '" + source + "' to destination type" ); in convertInto() 662 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 664 inline auto convertInto( std::string const &source, std::string& target ) -> ParserResult { in convertInto() 666 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 668 inline auto convertInto( std::string const &source, bool &target ) -> ParserResult { in convertInto() 676 …return ParserResult::runtimeError( "Expected a boolean value but did not recognise: '" + source + … in convertInto() 677 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 681 …o convertInto( std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult { in convertInto() [all …]
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 9020 using ParserResult = BasicResult<ParseResultType>; typedef 9029 inline auto convertInto( std::string const &source, T& target ) -> ParserResult { in convertInto() 9034 … return ParserResult::runtimeError( "Unable to convert '" + source + "' to destination type" ); in convertInto() 9036 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9038 inline auto convertInto( std::string const &source, std::string& target ) -> ParserResult { in convertInto() 9040 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9042 inline auto convertInto( std::string const &source, bool &target ) -> ParserResult { in convertInto() 9050 …return ParserResult::runtimeError( "Expected a boolean value but did not recognise: '" + source + … in convertInto() 9051 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9055 …o convertInto( std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult { in convertInto() [all …]
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 9075 using ParserResult = BasicResult<ParseResultType>; typedef 9084 inline auto convertInto( std::string const &source, T& target ) -> ParserResult { in convertInto() 9089 … return ParserResult::runtimeError( "Unable to convert '" + source + "' to destination type" ); in convertInto() 9091 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9093 inline auto convertInto( std::string const &source, std::string& target ) -> ParserResult { in convertInto() 9095 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9097 inline auto convertInto( std::string const &source, bool &target ) -> ParserResult { in convertInto() 9105 …return ParserResult::runtimeError( "Expected a boolean value but did not recognise: '" + source + … in convertInto() 9106 return ParserResult::ok( ParseResultType::Matched ); in convertInto() 9110 …o convertInto( std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult { in convertInto() [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | PNaClTranslator.cpp | 1374 bool ParserResult; in parseFunction() local 1397 ParserResult = ParseThisBlock(); in parseFunction() 1400 if (ParserResult || BlockHasError) in parseFunction()
|