Home
last modified time | relevance | path

Searched refs:_query (Results 1 – 19 of 19) sorted by relevance

/plugin/sphinxsearch-was/
H A DSphinxSearch.php12 private $_query = ''; variable in SphinxSearch
37 $this->_query = "(@(namespace,pagename) $starKeyword) | (@(body,title) {$keywords})";
48 …$this->_query = "(@(namespace,pagename) {$categories}) & ((@(body,title) {$keywords}) | (@(namespa…
58 $this->_query = "(@(namespace,pagename) $categories $starKeyword)";
60 $this->_query = "(@(namespace,pagename) $starKeyword)";
66 $this->_query = "(@(pagename) {$this->_query})";
84 $this->_result = $this->_sphinx->Query($this->_query, $this->_index);
239 return $this->_query;
/plugin/sphinxsearch/
H A DSphinxSearch.php12 private $_query = ''; variable in SphinxSearch
37 $this->_query = "(@(namespace,pagename) $starKeyword) | (@(body,title) {$keywords})";
48 …$this->_query = "(@(namespace,pagename) {$categories}) & ((@(body,title) {$keywords}) | (@(namespa…
58 $this->_query = "(@(namespace,pagename) $categories $starKeyword)";
60 $this->_query = "(@(namespace,pagename) $starKeyword)";
67 $this->_query = "(@(pagename) {$this->_query})";
83 $this->_result = $this->_sphinx->Query($this->_query, $this->_index);
235 return $this->_query;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DSimple.php18 protected $_query = []; variable in Elastica\\Query\\Simple
34 $this->_query = $query;
44 return $this->_query;
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResultSet.php29 private $_query; variable in Elastica\\ResultSet
50 $this->_query = $query;
212 return $this->_query;
H A DSearch.php59 protected $_query;
174 $this->_query = Query::create($query);
295 if (null === $this->_query) {
296 $this->_query = new Query(new MatchAll());
299 return $this->_query;
57 protected $_query; global() variable in Elastica\\Search
/plugin/adfs/phpsaml/lib/Saml2/
H A DLogoutResponse.php89 $issuerNodes = $this->_query('/samlp:LogoutResponse/saml:Issuer');
103 $entries = $this->_query('/samlp:LogoutResponse/samlp:Status/samlp:StatusCode');
222 private function _query($query) function in OneLogin_Saml2_LogoutResponse
H A DResponse.php998 … $expectedSignatureNodes = $this->_query(OneLogin_Saml2_Utils::ASSERTION_SIGNATURE_XPATH);
1068 private function _query($query) function in OneLogin_Saml2_Response
/plugin/phpbblinks/
H A Daction.php215 $r = $this->_query($q);
231 $r = $this->_query($q);
279 function _query($q) { function in action_plugin_phpbblinks
/plugin/authjoomla/
H A Dauth.php52 $result = $this->_query($sql, ['session' => $session]);
/plugin/sqlcomp/
H A Dsyntax.php124 $renderer->doc .= utf8_encode($this->_query($data));
222 private function _query($data,$type=null) { function in syntax_plugin_sqlcomp
/plugin/diagramsnet/lib/js/dropbox/
H A DDropbox-sdk.min.js9_query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",funct…
/plugin/scrape/
H A DphpQuery-onefile.php
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js9230 this._query = '?';
9276 this._query = base._query;
9290 this._query = '?';
9298 this._query = base._query;
9549 this._query = '?';
9566 this._query += percentEscapeQuery(c);
9591 this._query = '';
9624 …is._isRelative ? '//' + authority + this.host : '') + this.pathname + this._query + this._fragment;
9694 return this._isInvalid || !this._query || this._query === '?' ? '' : this._query;
9702 this._query = '?';
H A Dpdf.worker.js10399 this._query = '?';
10445 this._query = base._query;
10459 this._query = '?';
10467 this._query = base._query;
10718 this._query = '?';
10735 this._query += percentEscapeQuery(c);
10760 this._query = '';
10793 …is._isRelative ? '//' + authority + this.host : '') + this.pathname + this._query + this._fragment;
10863 return this._isInvalid || !this._query || this._query === '?' ? '' : this._query;
10871 this._query = '?';
H A Dpdf.js.map1_query = '?';\n state = 'query';\n } else if (c === '#') {\n this._…
H A Dpdf.worker.js.map1_query = '?';\n state = 'query';\n } else if (c === '#') {\n this._…
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js7028 var query = this._query;
7166 if (this._query === '') {
H A Dviewer.js.map1_query() {\n if (this._state.query !== this._rawQuery) {\n this._rawQuery = this._state.qu…
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md718 - Changed visibility from protected to private Elastica\ResultSet::$_query as accessing this property in an extended class is deprecated.