/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/queryParser/ |
H A D | QueryParser.cpp | 137 case QueryToken::AND_ : in MatchConjunction() 141 case QueryToken::OR : in MatchConjunction() 160 case QueryToken::PLUS : in MatchModifier() 164 case QueryToken::MINUS : in MatchModifier() 165 case QueryToken::NOT : in MatchModifier() 200 QueryToken* qt = MatchQueryToken(QueryToken::EOF_); in MatchQuery() 254 if(term->Type == QueryToken::TERM && tokens->peek()->Type == QueryToken::COLON){ in MatchClause() 312 QueryToken* term = NULL; in MatchTerm() 313 QueryToken* slop = NULL; in MatchTerm() 326 case QueryToken::TERM: in MatchTerm() [all …]
|
H A D | QueryToken.cpp | 13 QueryToken::QueryToken(): in CL_NS_DEF() 18 QueryToken::QueryToken(TCHAR* value, const int32_t start, const int32_t end, const QueryToken::Type… in QueryToken() function in QueryToken 24 QueryToken::~QueryToken(){ in ~QueryToken() 36 QueryToken::QueryToken(TCHAR* value, const QueryToken::Types type): in QueryToken() function in QueryToken 44 QueryToken::QueryToken(QueryToken::Types type): in QueryToken() function in QueryToken 51 void QueryToken::set(TCHAR* value, const Types type){ in set() 54 void QueryToken::set(TCHAR* value, const int32_t start, const int32_t end, const Types type){ in set() 69 void QueryToken::set(Types type){ in set()
|
H A D | Lexer.cpp | 95 QueryToken* token = _CLNEW QueryToken; in Lex() 105 tokenList->add(_CLNEW QueryToken( QueryToken::EOF_)); in Lex() 109 bool Lexer::GetNextToken(QueryToken* token) { in GetNextToken() 123 token->set(buf, QueryToken::PLUS); in GetNextToken() 126 token->set(buf, QueryToken::MINUS); in GetNextToken() 129 token->set(buf, QueryToken::LPAREN); in GetNextToken() 132 token->set(buf, QueryToken::RPAREN); in GetNextToken() 135 token->set(buf, QueryToken::COLON); in GetNextToken() 138 token->set(buf, QueryToken::NOT); in GetNextToken() 141 token->set(buf, QueryToken::CARAT); in GetNextToken() [all …]
|
H A D | TokenList.cpp | 30 void TokenList::add(QueryToken* token){ in add() 40 void TokenList::push(QueryToken* token){ in push() 50 QueryToken* TokenList::peek() { in peek() 57 push(_CLNEW QueryToken(QueryToken::EOF_)); in peek() 63 QueryToken* TokenList::extract(){ in extract() 68 QueryToken* token = peek(); in extract()
|
H A D | QueryToken.h | 19 class QueryToken:LUCENE_BASE in CL_NS_DEF() 55 QueryToken::Types Type; in CL_NS_DEF() 58 QueryToken(TCHAR* value, const int32_t start, const int32_t end, const Types type); in CL_NS_DEF() 61 QueryToken(TCHAR* value, const Types type); in CL_NS_DEF() 64 QueryToken(Types type); in CL_NS_DEF() 67 QueryToken(); in CL_NS_DEF() 69 ~QueryToken(); in CL_NS_DEF()
|
H A D | TokenList.h | 22 CL_NS(util)::CLVector<QueryToken*> tokens; //todo:,CL_NS(util)::Deletor::Object<QueryToken> in CL_NS_DEF() 27 void add(QueryToken* token); in CL_NS_DEF() 29 void push(QueryToken* token); in CL_NS_DEF() 31 QueryToken* peek(); in CL_NS_DEF() 33 QueryToken* extract(); in CL_NS_DEF()
|
H A D | Lexer.h | 47 bool GetNextToken(QueryToken* token); 53 bool ReadInclusiveRange(const TCHAR prev, QueryToken* token); 56 bool ReadExclusiveRange(const TCHAR prev, QueryToken* token); 59 bool ReadQuoted(const TCHAR prev, QueryToken* token); 61 bool ReadTerm(const TCHAR prev, QueryToken* token);
|
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/queryParser/legacy/ |
H A D | QueryParser.cpp | 136 case QueryToken::AND_ : in MatchConjunction() 140 case QueryToken::OR : in MatchConjunction() 159 case QueryToken::PLUS : in MatchModifier() 163 case QueryToken::MINUS : in MatchModifier() 164 case QueryToken::NOT : in MatchModifier() 199 QueryToken* qt = MatchQueryToken(QueryToken::EOF_); in MatchQuery() 253 if(term->Type == QueryToken::TERM && tokens->peek()->Type == QueryToken::COLON){ in MatchClause() 309 QueryToken* term = NULL; in MatchTerm() 310 QueryToken* slop = NULL; in MatchTerm() 323 case QueryToken::TERM: in MatchTerm() [all …]
|
H A D | QueryToken.cpp | 12 QueryToken::QueryToken(): in CL_NS_DEF2() 17 QueryToken::QueryToken(const TCHAR* value, const int32_t start, const int32_t end, const QueryToken… in QueryToken() function in QueryToken 23 QueryToken::~QueryToken(){ in ~QueryToken() 35 QueryToken::QueryToken(const TCHAR* value, const QueryToken::Types type): in QueryToken() function in QueryToken 43 QueryToken::QueryToken(QueryToken::Types type): in QueryToken() function in QueryToken 50 void QueryToken::set(const TCHAR* value, const Types type){ in set() 53 void QueryToken::set(const TCHAR* value, const int32_t start, const int32_t end, const Types type){ in set() 68 void QueryToken::set(Types type){ in set()
|
H A D | Lexer.cpp | 95 QueryToken* token = _CLNEW QueryToken; in Lex() 105 tokenList->add(_CLNEW QueryToken( QueryToken::EOF_)); in Lex() 109 bool Lexer::GetNextToken(QueryToken* token) { in GetNextToken() 123 token->set(buf, QueryToken::PLUS); in GetNextToken() 126 token->set(buf, QueryToken::MINUS); in GetNextToken() 129 token->set(buf, QueryToken::LPAREN); in GetNextToken() 132 token->set(buf, QueryToken::RPAREN); in GetNextToken() 135 token->set(buf, QueryToken::COLON); in GetNextToken() 138 token->set(buf, QueryToken::NOT); in GetNextToken() 141 token->set(buf, QueryToken::CARAT); in GetNextToken() [all …]
|
H A D | TokenList.cpp | 30 void TokenList::add(QueryToken* token){ in add() 40 void TokenList::push(QueryToken* token){ in push() 50 QueryToken* TokenList::peek() { in peek() 57 push(_CLNEW QueryToken(QueryToken::EOF_)); in peek() 63 QueryToken* TokenList::extract(){ in extract() 68 QueryToken* token = peek(); in extract()
|
H A D | _TokenList.h | 14 class QueryToken; in CL_NS_DEF2() 20 CL_NS(util)::CLVector<QueryToken*> tokens; //todo:,CL_NS(util)::Deletor::Object<QueryToken> 25 void add(QueryToken* token); 27 void push(QueryToken* token); 29 QueryToken* peek(); 31 QueryToken* extract();
|
H A D | QueryToken.h | 13 class CLUCENE_EXPORT QueryToken:LUCENE_BASE in CL_NS_DEF2() 49 QueryToken::Types Type; in CL_NS_DEF2() 52 QueryToken(const TCHAR* value, const int32_t start, const int32_t end, const Types type); in CL_NS_DEF2() 55 QueryToken(const TCHAR* value, const Types type); in CL_NS_DEF2() 58 QueryToken(Types type); in CL_NS_DEF2() 61 QueryToken(); in CL_NS_DEF2() 63 ~QueryToken(); in CL_NS_DEF2()
|
H A D | _Lexer.h | 16 class QueryToken; 45 bool GetNextToken(QueryToken* token); in CL_NS_DEF2() 51 bool ReadInclusiveRange(const TCHAR prev, QueryToken* token); in CL_NS_DEF2() 54 bool ReadExclusiveRange(const TCHAR prev, QueryToken* token); in CL_NS_DEF2() 57 bool ReadQuoted(const TCHAR prev, QueryToken* token); in CL_NS_DEF2() 59 bool ReadTerm(const TCHAR prev, QueryToken* token); in CL_NS_DEF2()
|
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/zendframework/zendsearch/library/ZendSearch/Lucene/Search/ |
H A D | QueryParser.php | 165 QueryToken::getTypes()); 214 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_WORD, $addTermEntry… 215 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_PHRASE, $addPhraseEnt… 216 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_FIELD, $setFieldActi… 217 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_REQUIRED, $setSignActio… 218 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_PROHIBITED, $setSignActio… 219 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_FUZZY_PROX_MARK, $setFuzzyProx… 221 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_SUBQUERY_START, $subqueryStar… 222 …$this->addInputAction(self::ST_COMMON_QUERY_ELEMENT, QueryToken::TT_SUBQUERY_END, $subqueryEndA… 455 case QueryToken::TT_FUZZY_PROX_MARK: [all …]
|
H A D | QueryLexer.php | 385 $token = new QueryToken(QueryToken::TC_SYNTAX_ELEMENT, 390 if ($token->type == QueryToken::TT_FIELD_INDICATOR) { 392 if ($token === null || $token->type != QueryToken::TT_WORD) { 396 $token->type = QueryToken::TT_FIELD; 407 $this->_lexemes[] = new QueryToken(QueryToken::TC_SYNTAX_ELEMENT, 418 $this->_lexemes[] = new QueryToken(QueryToken::TC_WORD, 430 $this->_lexemes[] = new QueryToken(QueryToken::TC_PHRASE, 442 $this->_lexemes[] = new QueryToken(QueryToken::TC_NUMBER,
|
H A D | QueryParserContext.php | 139 if ($sign == QueryToken::TT_REQUIRED) { 141 } elseif ($sign == QueryToken::TT_PROHIBITED) { 286 case QueryToken::TT_AND_LEXEME: 290 case QueryToken::TT_OR_LEXEME: 294 case QueryToken::TT_NOT_LEXEME:
|
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/fts/ |
H A D | fts_query_parser.cpp | 50 QueryToken FTSQueryParser::next() { in next() 52 return QueryToken(QueryToken::INVALID, "", 0, false); in next() 55 QueryToken::Type type = getType(_raw[start]); in next() 58 if (type == QueryToken::WHITESPACE) { in next() 62 if (type == QueryToken::TEXT) { in next() 72 return QueryToken(type, ret, start, old); in next() 78 while (_pos < _raw.size() && getType(_raw[_pos]) == QueryToken::WHITESPACE) { in skipWhitespace() 86 QueryToken::Type FTSQueryParser::getType(char c) const { in getType() 96 return QueryToken::WHITESPACE; in getType() 102 return QueryToken::DELIMITER; in getType() [all …]
|
H A D | fts_query_parser.h | 41 struct QueryToken { struct 43 QueryToken(Type type, StringData data, unsigned offset, bool previousWhiteSpace) in QueryToken() argument 78 QueryToken next(); 81 QueryToken::Type getType(char c) const;
|
H A D | fts_query_impl.cpp | 72 QueryToken t = i.next(); in parse() 74 if (t.type == QueryToken::TEXT) { in parse() 95 } else if (t.type == QueryToken::DELIMITER) { in parse()
|
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/queryParser/ |
H A D | QueryToken.cpp | 13 QueryToken::QueryToken() : in CL_NS_DEF() 25 QueryToken::~QueryToken() in ~QueryToken() 32 TCHAR* QueryToken::toString() const in toString() 42 QueryToken* QueryToken::newToken(const int32_t /*ofKind*/) in newToken() 48 return _CLNEW QueryToken(); in newToken()
|
H A D | QueryToken.h | 15 class CLUCENE_EXPORT QueryToken{ in CL_NS_DEF() 17 QueryToken(); in CL_NS_DEF() 18 ~QueryToken(); in CL_NS_DEF() 56 QueryToken* next; in CL_NS_DEF() 70 QueryToken* specialToken; in CL_NS_DEF() 89 static QueryToken* newToken(const int32_t ofKind); in CL_NS_DEF()
|
H A D | QueryParser.h | 468 QueryToken *token, *jj_nt; 470 QueryToken *_firstToken; 472 QueryToken *jj_scanpos, *jj_lastpos; 494 QueryToken* jj_consume_token(const int32_t kind); 498 QueryToken* getNextToken(); 499 QueryToken* getToken(int32_t index); 524 TCHAR* getParseExceptionMessage(QueryToken* currentToken,
|
H A D | QueryParserTokenManager.h | 15 class QueryToken; 95 QueryToken* jjFillToken(); 105 QueryToken* getNextToken();
|
/dports/security/lego/lego-4.5.3/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/onsmqtt/ |
H A D | query_token.go | 24 func (client *Client) QueryToken(request *QueryTokenRequest) (response *QueryTokenResponse, err err… func 37 response, err := client.QueryToken(request) 59 response, err = client.QueryToken(request)
|