xapian-core
1.4.26
|
ExpandDecider subclass which rejects terms using two ExpandDeciders. More...
#include <expanddecider.h>
Public Member Functions | |
ExpandDeciderAnd (const ExpandDecider &first_, const ExpandDecider &second_) | |
Terms will be checked with first, and if accepted, then checked with second. More... | |
ExpandDeciderAnd (const ExpandDecider *first_, const ExpandDecider *second_) | |
Compatibility method. More... | |
virtual bool | operator() (const std::string &term) const |
Do we want this term in the ESet? More... | |
Public Member Functions inherited from Xapian::ExpandDecider | |
ExpandDecider () | |
Default constructor. More... | |
virtual | ~ExpandDecider () |
Virtual destructor, because we have virtual methods. More... | |
ExpandDecider * | release () |
Start reference counting this object. More... | |
const ExpandDecider * | release () const |
Start reference counting this object. More... | |
Public Member Functions inherited from Xapian::Internal::opt_intrusive_base | |
opt_intrusive_base (const opt_intrusive_base &) | |
opt_intrusive_base & | operator= (const opt_intrusive_base &) |
opt_intrusive_base () | |
Construct object which is initially not reference counted. More... | |
virtual | ~opt_intrusive_base () |
void | ref () const |
void | unref () const |
Private Attributes | |
Internal::opt_intrusive_ptr< const ExpandDecider > | first |
Internal::opt_intrusive_ptr< const ExpandDecider > | second |
Additional Inherited Members | |
Public Attributes inherited from Xapian::Internal::opt_intrusive_base | |
unsigned | _refs |
Reference count. More... | |
Protected Member Functions inherited from Xapian::Internal::opt_intrusive_base | |
void | release () const |
Start reference counting. More... | |
ExpandDecider subclass which rejects terms using two ExpandDeciders.
Terms are only accepted if they are accepted by both of the specified ExpandDecider objects.
Definition at line 88 of file expanddecider.h.
|
inline |
Terms will be checked with first, and if accepted, then checked with second.
first_ | First ExpandDecider object to test with. |
second_ | ExpandDecider object to test with if first_ accepts. |
Definition at line 98 of file expanddecider.h.
|
inline |
Compatibility method.
first_ | First ExpandDecider object to test with. |
second_ | ExpandDecider object to test with if first_ accepts. |
Definition at line 107 of file expanddecider.h.
|
virtual |
Do we want this term in the ESet?
term | The term to test. |
Implements Xapian::ExpandDecider.
Definition at line 33 of file expanddecider.cc.
|
private |
Definition at line 89 of file expanddecider.h.
|
private |
Definition at line 89 of file expanddecider.h.