Lines Matching defs:search
23 * The fulltext search
247 * The third parameter allows to search in titles as well.
257 * @param bool $in_title search in title?
355 * @param array $results search results in the form pageid => value
384 * from the search index. This function is a wrapper around stripos with
387 * @param string $search searched title
391 function _ft_pageLookupTitleCompare($search, $title)
393 if (Clean::isASCII($search)) {
394 $pos = stripos($title, $search);
398 PhpString::strtolower($search)
563 * Wraps a search term in regex boundary checks.
687 * Parses a search query and builds an array of search formulas
693 * @param string $query search query
694 * @return array of search formulas
699 * parse a search query and transform it into intermediate representation
701 * in a search query, you can use the following expressions:
719 * e.g. a query [ aa "bb cc" @dd:ee ] means "search pages which contain
761 // treat ideographic spaces (U+3000) as search term separators
926 * Transforms given search term into intermediate representation
968 * Recreate a search query string based on parsed parts, doesn't support negated phrases and `OR` searches