Home
last modified time | relevance | path

Searched refs:LogicalOr (Results 1 – 5 of 5) sorted by relevance

/openbmc/bmcweb/redfish-core/include/
H A Dfilter_expr_parser_ast.hpp62 struct LogicalOr struct
69 LogicalOr first;
70 std::list<LogicalOr> rest;
78 BOOST_FUSION_ADAPT_STRUCT(redfish::filter_ast::LogicalOr, first, rest); argument
H A Dfilter_expr_parser_grammar.hpp30 using filter_ast::LogicalOr;
47 const rule<class LogicalOrId, LogicalOr> logicalOr("LogicalOr");
H A Dfilter_expr_printer.hpp19 std::string operator()(const filter_ast::LogicalOr& x) const;
/openbmc/bmcweb/redfish-core/src/
H A Dfilter_expr_printer.cpp60 FilterExpressionPrinter::operator()(const filter_ast::LogicalOr& x) const in operator ()()
90 for (const filter_ast::LogicalOr& oper : x.rest) in operator ()()
H A Dfilter_expr_executor.cpp169 bool operator()(const filter_ast::LogicalOr& x);
357 bool ApplyFilter::operator()(const filter_ast::LogicalOr& x) in operator ()()
370 for (const filter_ast::LogicalOr& bOp : x.rest) in operator ()()