Home
last modified time | relevance | path

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

/dports/audio/strawberry/strawberry-1.0.0/src/collection/
H A Dcollectionquery.cpp97 where_clauses_ << "fts.%fts_table_noprefix MATCH ?"; in CollectionQuery()
106 where_clauses_ << "ctime > ?"; in CollectionQuery()
119 where_clauses_ << "(artist = '' OR album = '' OR title ='')"; in CollectionQuery()
145 where_clauses_ << QString("%1 IN (" + final.join(",") + ")").arg(column);
154 where_clauses_ << QString("%1 %2 %3").arg(column, op, value.toString());
163 where_clauses_ << QString("%1 %2 ?").arg(column, op);
167 where_clauses_ << QString("%1 %2 ?").arg(column, op);
176 where_clauses_ << QString("((artist = ? AND albumartist = '') OR albumartist = ?)");
186 where_clauses_ << QString("+compilation_effective = %1").arg(compilation ? 1 : 0);
201 QStringList where_clauses(where_clauses_);
H A Dcollectionquery.h90 void SetWhereClauses(const QStringList &where_clauses) { where_clauses_ = where_clauses; } in SetWhereClauses()
103 QStringList where_clauses() const { return where_clauses_; } in where_clauses()
119 QStringList where_clauses_; variable
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/library/
H A Dlibraryquery.cpp152 where_clauses_ << "fts.%fts_table_noprefix MATCH ?"; in LibraryQuery()
161 where_clauses_ << "ctime > ?"; in LibraryQuery()
179 where_clauses_ << "(artist = '' OR album = '' OR title ='')"; in LibraryQuery()
203 where_clauses_ << QString("%1 IN (" + final.join(",") + ")").arg(column); in AddWhere()
208 where_clauses_ << QString("%1 %2 %3").arg(column, op, value.toString()); in AddWhere()
210 where_clauses_ << QString("%1 %2 ?").arg(column, op); in AddWhere()
223 where_clauses_ << QString("+effective_compilation = %1") in AddCompilationRequirement()
240 QStringList where_clauses(where_clauses_); in Exec()
H A Dlibraryquery.h105 QStringList where_clauses_; variable