Lines Matching refs:and

27  * refactored into ft_pageSearch(), _ft_pageSearch() and trigger_event()
133 case 'AND': // and operation
210 * Uses the relation media metadata property and the metadata index.
212 * Note that before 2013-07-31 the second parameter was the maximum number of results and
217 * @param bool $ignore_perms Ignore hidden pages and acls (optional, default: false)
245 * By default it only matches the pagename and ignores the
385 * adapted argument order and return value.
412 * @return int Returns < 0 if $a is less than $b; > 0 if $a is greater than $b, and 0 if they are equal.
432 * @return int Returns < 0 if $a is newer than $b, > 0 if $b is newer than $a and 0 if they are of the same age
518 // make it so and break out of this loop - there is no need for the
524 // establish context start and end points, try to append to previous
601 * Combine found documents and sum up their scores
635 * Unites found documents and sum up their scores
687 * Parses a search query and builds an array of search formulas
699 * parse a search query and transform it into intermediate representation
716 * and ('and' is the default operator: you can always omit this)
717 * or (or pipe symbol '|', lower precedence than 'and')
720 * a word 'aa', a phrase 'bb cc' and are within a namespace 'dd:ee'".
727 * AND - logical and
746 // phrase-include and phrase-exclude
782 } elseif ($token === 'and') {
783 // logical-and (do nothing)
907 $q['and'][] = $body; // for backward compatibility
918 foreach (['words', 'phrases', 'highlight', 'ns', 'notns', 'and', 'not'] as $key) {
928 * This function is used in ft_queryParser() and not for general purpose use.
968 * Recreate a search query string based on parsed parts, doesn't support negated phrases and `OR` searches
970 * @param array $and
978 function ft_queryUnparser_simple(array $and, array $not, array $phrases, array $ns, array $notns)
980 $query = implode(' ', $and);