Home
last modified time | relevance | path

Searched refs:term (Results 1 – 25 of 565) sorted by relevance

12345678910>>...23

/plugin/toolbox/
H A DToolboxFindAndReplace.js108 if (term == '') return false;
154 if (term == '') return false;
158 var re = makeRegexp(term, 'g');
208 function findNextPosition(term, pos) { argument
210 var re = makeRegexp(term);
217 return [-1, term];
221 return [-1, term];
239 function makeRegexp(term, flags) { argument
243 term = quoteRE(term);
249 term = '(?:\\b)' + term + '(?:\\b)';
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DSpanTerm.php11 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-span-term-query.html
16 * @param array $term Calls setRawTerm with the given $term array
18 public function __construct(array $term = []) argument
20 $this->setRawTerm($term);
24 * Set term can be used instead of setTerm if some more special
25 * values for a term have to be set.
27 * @param array $term Term array
31 public function setRawTerm(array $term): self argument
33 return $this->setParams($term);
[all...]
H A DTerm.php10 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
15 * @param array $term Calls setTerm with the given $term array
17 public function __construct(array $term = []) argument
19 $this->setRawTerm($term);
23 * Set term can be used instead of addTerm if some more special
24 * values for a term have to be set.
26 * @param array $term Term array
30 public function setRawTerm(array $term): self argument
32 return $this->setParams($term);
[all...]
H A DTerms.php46 * Adds a single term to the list.
48 * @param bool|float|int|string $term
50 public function addTerm($term): self argument
52 if (!\is_scalar($term)) {
53 throw new \TypeError(\sprintf('Argument 1 passed to "%s()" must be a scalar, %s given.', __METHOD__, \is_object($term) ? \get_class($term) : \gettype($term)));
62 return $this->addParam($this->field, $term);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DUtil.php83 * @param string $term Query term to replace and escape
85 * @return string Replaced and escaped query term
87 public static function replaceBooleanWordsAndEscapeTerm($term) argument
89 $result = $term;
101 * @param string $term Query term to escape
103 * @return string Escaped query term
105 public static function escapeTerm($term) argument
107 $result = $term;
136 replaceBooleanWords($term) global() argument
[all...]
/plugin/bureaucracy-au/script/
H A Duser.js35 function extractLast(term) { argument
36 return split(term).pop();
46 return req.term
66 return extractLast(req.term)
71 var term = extractLast(this.value);
72 return term.length >= 2;
/plugin/bureaucracyau/script/
H A Duser.js35 function extractLast(term) { argument
36 return split(term).pop();
46 return req.term
66 return extractLast(req.term)
71 var term = extractLast(this.value);
72 return term.length >= 2;
/plugin/bureaucracy/script/
H A Duser.js35 function extractLast(term) { argument
36 return split(term).pop();
46 return req.term
66 return extractLast(req.term)
71 var term = extractLast(this.value);
72 return term.length >= 2;
/plugin/data-au/
H A Dscript.js74 function extractLast(term) { argument
75 return split(term).pop();
88 return req.term;
113 return extractLast(req.term);
120 var term = extractLast(this.value);
121 if (term.length < 2) {
/plugin/data/
H A Dscript.js48 * @param {Object} request object, with single 'term' property
50 * @param {Function} getTerm callback, argument: the request Object, returns: search term
74 function extractLast(term) { argument
75 return split(term).pop();
88 return req.term;
113 return extractLast(req.term);
120 var term = extractLast(this.value);
121 if (term.length < 2) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D06afce2955f9094d96d27067ebca32e8.asciidoc10 'term' => [
15 'term' => [
29 'term' => [
34 'term' => [
H A Dd0a8a938a2fa913b6fdbc871079a59dd.asciidoc1 // query-dsl/term-query.asciidoc:28
8 'term' => [
H A Dcdedd5f33f7e5f7acde561e97bff61de.asciidoc1 // query-dsl/term-query.asciidoc:132
9 'term' => [
/plugin/emoji/
H A Dscript.js38 search: function(term, addTerm) { argument
41 if(shortname.indexOf(term) > -1) {
43 … } else if((data.aliases !== null) && (data.aliases.indexOf(term) > -1)) {
45 … } else if((data.keywords !== null) && (data.keywords.indexOf(term) > -1)) {
50 if(term.length >= 3) {
/plugin/elasticsearch/action/
H A Dsearch.php150 $term = new \Elastica\Query\Term();
151 $term->setTerm('namespace', $ns);
152 $nsSubquery->addShould($term);
323 $term = new \Elastica\Query\Term();
324 $term->setTerm('groups_include', $group);
325 $includeSubquery->addShould($term);
329 $term = new \Elastica\Query\Term();
330 $term->setTerm('users_include', $_SERVER['REMOTE_USER']);
331 $userIncludeSubquery->addMust($term);
339 $term
[all...]
/plugin/tagging/
H A Dscript.js100 function extractLast(term) { argument
101 return split(term).pop();
115 term: extractLast(request.term)
120 var term = extractLast(this.value);
121 if (term.length < 2) {
/plugin/recommend/
H A Dscript.js78 let term = request.term;
79 term = commasplit(term).pop();
83 payload['search'] = term;
/plugin/struct/script/
H A DEntryEditor.js72 var term = request.term;
74 term = extractLast(term);
76 struct_ajax(name, cb, {search: term});
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.background.color.inc.php35 foreach ($terms as $term) {
36 if ($term === 'inherit') {
40 $color =& parse_color_declaration($term);
/plugin/linksuggest/
H A Dscript.js28 search: function (term, callback) {
37 q: term,
102 search: function (term, callback) {
111 q: term,
147 search: function (term, callback) {
157 q: term,
11 AnonymousFunctionb846711c0200(term, callback) global() argument
85 AnonymousFunctionb846711c0900(term, callback) global() argument
130 AnonymousFunctionb846711c0f00(term, callback) global() argument
/plugin/searchtablejs/
H A Dscript.js15 filtersingle: function(term, _id, cellNr) { argument
16 var suche = term.value.toLowerCase();
46 filterall: function(term, _id) { argument
47 var searchstr = term.value.toLowerCase();
/plugin/discoursesearch/
H A Dasyncsearch.js40 $.getJSON( url + "/search/query.json?term=" + _.term ).done( function( data ) {
69 $.asyncsearch.addProvider(function( term, successHandler ) { argument
72 discoursesearchprovider.term = term;
/plugin/watchcycle/
H A Daction.php253 $term = $INPUT->str('param');
255 if (empty($term)) return [];
261 $foundUsers = $auth->retrieveUsers(0, 50, ['user' => $term]);
263 $users = array_map(function ($name, $user) use ($term) {
281 array_map(function ($grp) use ($term) {
283 if (strpos($grp, $term) !== false) {
/plugin/asiansearch/
H A Daction.php217 function revised_ft_snippet_re_preprocess($term) argument
219 if (preg_match('/' . IDX_ASIAN . '/u', $term)) {
220 return $term;
222 return ft_snippet_re_preprocess($term);
/plugin/structcombolookup/
H A Dscript.js98 var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
101 if ( this.value && ( !request.term || matcher.test(text) ) )
142 this.input.autocomplete( "instance" ).term = "";

12345678910>>...23