Home
last modified time | relevance | path

Searched refs:get_wdf (Results 1 – 25 of 312) sorted by relevance

12345678910>>...13

/dports/databases/xapian-core/xapian-core-1.4.18/tests/
H A Ddbcheck.cc74 ", wdf=" + str(p.get_wdf()) + in postlist_to_string()
97 result += "Term(" + *t + ", wdf=" + str(t.get_wdf()) + posrepr; in docterms_to_string()
150 TEST_EQUAL(dociter.get_wdf(), 1); in dbcheck()
170 auto wdf = t.get_wdf(); in dbcheck()
175 TEST_EQUAL(t.get_wdf(), t2.get_wdf()); in dbcheck()
198 str(t.get_wdf()) + "/" + str(doclen) + in dbcheck()
265 cf_count += p.get_wdf(); in dbcheck()
273 str(p.get_wdf()) + "/" + in dbcheck()
275 if (wdf_upper_bound < p.get_wdf()) in dbcheck()
276 wdf_upper_bound = p.get_wdf(); in dbcheck()
H A Dapi_termgen.cc712 if (it.get_wdf() != it.positionlist_count()) { in format_doc_termlist()
714 output += str(it.get_wdf()); in format_doc_termlist()
724 } else if (it.get_wdf() != 0) { in format_doc_termlist()
727 output += str(it.get_wdf()); in format_doc_termlist()
/dports/databases/xapian-core12/xapian-core-1.2.25/tests/
H A Ddbcheck.cc73 ", wdf=" + str(p.get_wdf()) + in postlist_to_string()
96 result += "Term(" + *t + ", wdf=" + str(t.get_wdf()) + posrepr + ")"; in docterms_to_string()
160 TEST_EQUAL(dociter.get_wdf(), 1); in dbcheck()
178 wdf_sum += t.get_wdf(); in dbcheck()
181 TEST_EQUAL(t.get_wdf(), t2.get_wdf()); in dbcheck()
204 str(t.get_wdf()) + "/" + str(doclen) + in dbcheck()
264 cf_count += p.get_wdf(); in dbcheck()
272 str(p.get_wdf()) + "/" + str(p.get_doclength()) + in dbcheck()
274 if (wdf_upper_bound < p.get_wdf()) in dbcheck()
275 wdf_upper_bound = p.get_wdf(); in dbcheck()
H A Dtermgentest.cc674 if (it.get_wdf() != it.positionlist_count()) { in format_doc_termlist()
676 output += str(it.get_wdf()); in format_doc_termlist()
686 } else if (it.get_wdf() != 0) { in format_doc_termlist()
689 output += str(it.get_wdf()); in format_doc_termlist()
/dports/databases/xapian-core/xapian-core-1.4.18/matcher/
H A Dexactphrasepostlist.cc70 return terms[a]->get_wdf() < terms[b]->get_wdf(); in operator ()()
133 ExactPhrasePostList::get_wdf() const in get_wdf() function in ExactPhrasePostList
140 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
142 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dnearpostlist.cc54 return a->get_wdf() < b->get_wdf(); in operator ()()
151 NearPostList::get_wdf() const in get_wdf() function in NearPostList
193 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
195 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dphrasepostlist.cc90 PhrasePostList::get_wdf() const in get_wdf() function in PhrasePostList
97 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
99 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dsynonympostlist.cc85 Xapian::termcount wdf = get_wdf(); in get_weight()
114 SynonymPostList::get_wdf() const { in get_wdf() function in SynonymPostList
116 RETURN(subtree->get_wdf()); in get_wdf()
H A Dandmaybepostlist.cc218 AndMaybePostList::get_wdf() const in get_wdf() function in AndMaybePostList
221 if (lhead == rhead) RETURN(l->get_wdf() + r->get_wdf()); in get_wdf()
222 RETURN(l->get_wdf()); in get_wdf()
/dports/databases/xapian-core12/xapian-core-1.2.25/matcher/
H A Dexactphrasepostlist.cc72 return terms[a]->get_wdf() < terms[b]->get_wdf(); in operator ()()
135 ExactPhrasePostList::get_wdf() const in get_wdf() function in ExactPhrasePostList
142 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
144 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dnearpostlist.cc54 return a->get_wdf() < b->get_wdf(); in operator ()()
150 NearPostList::get_wdf() const in get_wdf() function in NearPostList
192 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
194 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dphrasepostlist.cc91 PhrasePostList::get_wdf() const in get_wdf() function in PhrasePostList
98 Xapian::termcount wdf = (*i)->get_wdf(); in get_wdf()
100 wdf = min(wdf, (*i)->get_wdf()); in get_wdf()
H A Dsynonympostlist.cc81 Xapian::termcount wdf = get_wdf(); in get_weight()
116 SynonymPostList::get_wdf() const { in get_wdf() function in SynonymPostList
118 RETURN(subtree->get_wdf()); in get_wdf()
H A Dandmaybepostlist.cc208 AndMaybePostList::get_wdf() const in get_wdf() function in AndMaybePostList
211 if (lhead == rhead) RETURN(l->get_wdf() + r->get_wdf()); in get_wdf()
212 RETURN(l->get_wdf()); in get_wdf()
/dports/databases/xapian-core/xapian-core-1.4.18/expand/
H A Dortermlist.cc74 OrTermList::get_wdf() const in get_wdf() function in OrTermList
79 if (cmp < 0) RETURN(left->get_wdf()); in get_wdf()
80 if (cmp > 0) RETURN(right->get_wdf()); in get_wdf()
81 RETURN(left->get_wdf() + right->get_wdf()); in get_wdf()
/dports/databases/xapian-core12/xapian-core-1.2.25/expand/
H A Dortermlist.cc74 OrTermList::get_wdf() const in get_wdf() function in OrTermList
78 if (left_current < right_current) RETURN(left->get_wdf()); in get_wdf()
79 if (left_current > right_current) RETURN(right->get_wdf()); in get_wdf()
80 RETURN(left->get_wdf() + right->get_wdf()); in get_wdf()
/dports/databases/xapian-bindings12/xapian-bindings-1.2.25/perl/t/
H A Dtermgenerator.t28 ok( $ti->get_wdf(), 1 );
36 ok( $ti->get_wdf(), 2 );
44 ok( $ti->get_wdf(), 2 );
54 ok( $ti->get_wdf(), 1 );
/dports/databases/py-xapian/xapian-bindings-1.4.18/perl/t/
H A Dtermgenerator.t33 ok( $ti->get_wdf(), 1 );
41 ok( $ti->get_wdf(), 2 );
49 ok( $ti->get_wdf(), 2 );
59 ok( $ti->get_wdf(), 1 );
/dports/databases/php-xapian/xapian-bindings-1.4.18/perl/t/
H A Dtermgenerator.t33 ok( $ti->get_wdf(), 1 );
41 ok( $ti->get_wdf(), 2 );
49 ok( $ti->get_wdf(), 2 );
59 ok( $ti->get_wdf(), 1 );
/dports/databases/p5-Xapian/xapian-bindings-1.4.18/perl/t/
H A Dtermgenerator.t33 ok( $ti->get_wdf(), 1 );
41 ok( $ti->get_wdf(), 2 );
49 ok( $ti->get_wdf(), 2 );
59 ok( $ti->get_wdf(), 1 );
/dports/databases/lua-xapian/xapian-bindings-1.4.18/perl/t/
H A Dtermgenerator.t33 ok( $ti->get_wdf(), 1 );
41 ok( $ti->get_wdf(), 2 );
49 ok( $ti->get_wdf(), 2 );
59 ok( $ti->get_wdf(), 1 );
/dports/databases/p5-Search-Xapian/Search-Xapian-1.2.25.4/t/
H A Dtermgenerator.t30 ok( $ti->get_wdf(), 1 );
38 ok( $ti->get_wdf(), 2 );
46 ok( $ti->get_wdf(), 2 );
56 ok( $ti->get_wdf(), 1 );
/dports/databases/p5-Search-Xapian12/Search-Xapian-1.2.25.2/t/
H A Dtermgenerator.t30 ok( $ti->get_wdf(), 1 );
38 ok( $ti->get_wdf(), 2 );
46 ok( $ti->get_wdf(), 2 );
56 ok( $ti->get_wdf(), 1 );
/dports/databases/xapian-core/xapian-core-1.4.18/backends/multi/
H A Dmulti_termlist.cc61 Xapian::termcount MultiTermList::get_wdf() const in get_wdf() function in MultiTermList
63 return tl->get_wdf(); in get_wdf()
/dports/databases/xapian-core/xapian-core-1.4.18/backends/chert/
H A Dchert_alldocspostlist.cc55 RETURN(ChertPostList::get_wdf()); in get_doclength()
59 ChertAllDocsPostList::get_wdf() const in get_wdf() function in ChertAllDocsPostList

12345678910>>...13