Home | History | Annotate | Download | only in kati

Lines Matching refs:IsTrue

40   virtual bool IsTrue(const string& path, unsigned char type) const = 0;
52 virtual bool IsTrue(const string& path, unsigned char) const override {
64 virtual bool IsTrue(const string&, unsigned char type) const override {
76 virtual bool IsTrue(const string& path, unsigned char type) const override {
77 return !c_->IsTrue(path, type);
88 virtual bool IsTrue(const string& path, unsigned char type) const override {
89 if (c1_->IsTrue(path, type))
90 return c2_->IsTrue(path, type);
102 virtual bool IsTrue(const string& path, unsigned char type) const override {
103 if (!c1_->IsTrue(path, type))
104 return c2_->IsTrue(path, type);
137 if (fc.print_cond && !fc.print_cond->IsTrue(path, type))
238 if (fc.prune_cond && fc.prune_cond->IsTrue(*path, DT_DIR)) {