Home
last modified time | relevance | path

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

/build/kati/
Dfind.cc104 AndCond(FindCond* c1, FindCond* c2) : c1_(c1), c2_(c2) {} in AndCond()
107 return c2_->IsTrue(path, type); in IsTrue()
114 unique_ptr<FindCond> c1_, c2_; member in __anon336b8ed40111::AndCond
119 OrCond(FindCond* c1, FindCond* c2) : c1_(c1), c2_(c2) {} in OrCond()
122 return c2_->IsTrue(path, type); in IsTrue()
126 return c1_->Countable() && c2_->Countable(); in Countable()
130 return c1_->Count() + c2_->Count(); in Count()
134 unique_ptr<FindCond> c1_, c2_; member in __anon336b8ed40111::OrCond