Searched refs:then_result (Results 1 – 2 of 2) sorted by relevance
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 78 const ResultExpr& then_result, in IfThenResultExprImpl() argument 80 : cond_(cond), then_result_(then_result), else_result_(else_result) {} in IfThenResultExprImpl() 296 Elser If(const BoolExpr& cond, const ResultExpr& then_result) { in If() argument 297 return Elser(nullptr).ElseIf(cond, then_result); in If() 309 Elser Elser::ElseIf(const BoolExpr& cond, const ResultExpr& then_result) const { in ElseIf() 310 return Elser(Cons(std::make_pair(cond, then_result), clause_list_)); in ElseIf()
|
D | bpf_dsl.h | 176 SANDBOX_EXPORT Elser If(const BoolExpr& cond, const ResultExpr& then_result); 185 Elser ElseIf(const BoolExpr& cond, const ResultExpr& then_result) const;
|