Home
last modified time | relevance | path

Searched refs:TokenList (Results 1 – 25 of 1096) sorted by relevance

12345678910>>...44

/dports/science/nwchem-data/nwchem-7.0.2-release/src/config/win32/
H A DTokenList.cpp17 TokenList::TokenList() { } in TokenList() function in TokenList
19 TokenList::TokenList(const string& Str, const char* Sep) in TokenList() function in TokenList
58 bool TokenList::assign(istream& is, const char* Sep) in assign()
73 bool operator>>(istream& is, TokenList& TL) in operator >>()
80 void TokenList::operator+=(const TokenList& TL) in operator +=()
94 TokenList::const_iterator TokenList::begin() const { return Tokens.begin(); } in begin()
95 TokenList::const_iterator TokenList::end() const { return Tokens.end(); } in end()
96 TokenList::const_reverse_iterator TokenList::rbegin() const { return Tokens.rbegin(); } in rbegin()
97 TokenList::const_reverse_iterator TokenList::rend() const { return Tokens.rend(); } in rend()
103 void TokenList::erase() in erase()
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/config/win32/
H A DTokenList.cpp17 TokenList::TokenList() { } in TokenList() function in TokenList
19 TokenList::TokenList(const string& Str, const char* Sep) in TokenList() function in TokenList
58 bool TokenList::assign(istream& is, const char* Sep) in assign()
73 bool operator>>(istream& is, TokenList& TL) in operator >>()
80 void TokenList::operator+=(const TokenList& TL) in operator +=()
94 TokenList::const_iterator TokenList::begin() const { return Tokens.begin(); } in begin()
95 TokenList::const_iterator TokenList::end() const { return Tokens.end(); } in end()
96 TokenList::const_reverse_iterator TokenList::rbegin() const { return Tokens.rbegin(); } in rbegin()
97 TokenList::const_reverse_iterator TokenList::rend() const { return Tokens.rend(); } in rend()
103 void TokenList::erase() in erase()
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/parser/
H A Dtoken.cpp217 TokenList::TokenList() in TokenList() function in TokenList
222 TokenList::TokenList(const QList<TokenPtr>& other) in TokenList() function in TokenList
342 void TokenList::insert(int i, const TokenList &list) in insert()
353 TokenList &TokenList::operator =(const QList<TokenPtr> &other) in operator =()
385 void TokenList::replace(int startIdx, const TokenList& newTokens) in replace()
467 TokenList& TokenList::trimLeft() in trimLeft()
475 TokenList& TokenList::trimRight() in trimRight()
483 TokenList& TokenList::trim() in trim()
513 TokenList TokenList::filter(Token::Type type) const in filter()
523 TokenList TokenList::filterOut(Token::Type type) const in filterOut()
[all …]
H A Dtoken.h312 class API_EXPORT TokenList : public QList<TokenPtr>
318 TokenList();
324 TokenList(const QList<TokenPtr>& other);
471 void insert(int i, const TokenList& list);
487 TokenList& operator=(const QList<TokenPtr>& other);
589 TokenList &trimLeft();
596 TokenList &trimRight();
603 TokenList &trim();
640 TokenList filter(Token::Type type) const;
641 TokenList filterOut(Token::Type type) const;
[all …]
/dports/devel/swig/swig-4.0.2/Source/Doxygen/
H A Ddoxyparser.h82 typedef std::vector<Token> TokenList; typedef
83 typedef TokenList::const_iterator TokenListCIt;
84 typedef TokenList::iterator TokenListIt;
86 TokenList m_tokenList;
183 TokenListCIt getOneLine(const TokenList &tokList);
189 std::string getStringTilCommand(const TokenList &tokList);
196 std::string getStringTilEndCommand(const std::string &theCommand, const TokenList &tokList);
203 TokenListCIt getEndOfParagraph(const TokenList &tokList);
210 TokenListCIt getEndOfSection(const std::string &theCommand, const TokenList &tokList);
219 TokenListCIt getEndCommand(const std::string &theCommand, const TokenList &tokList);
[all …]
/dports/databases/pg_similarity/pg_similarity-be1a8b0/
H A Dtokenizer.h30 typedef struct TokenList struct
36 } TokenList; argument
38 TokenList *initTokenList(int isset);
39 void destroyTokenList(TokenList *t);
40 int addToken(TokenList *t, char *s);
41 int removeToken(TokenList *t);
42 Token *searchToken(TokenList *t, char *s);
43 void printToken(TokenList *t);
45 void tokenizeByNonAlnum(TokenList *t, char *s);
46 void tokenizeBySpace(TokenList *t, char *s);
[all …]
/dports/audio/string-machine-lv2/string-machine-0.1.0/tools/layout-tool/sources/
H A Dreader.cpp6 typedef std::vector<std::string> TokenList; typedef
8 static Layout read_tokens_layout(TokenList::iterator &tok_it, TokenList::iterator tok_end);
16 TokenList::iterator tok_it = tokens.begin(); in read_file_layout()
17 TokenList::iterator tok_end = tokens.end(); in read_file_layout()
21 static std::string consume_next_token(TokenList::iterator &tok_it, TokenList::iterator tok_end) in consume_next_token()
28 static void ensure_next_token(const char *text, TokenList::iterator &tok_it, TokenList::iterator to… in ensure_next_token()
35 static std::string consume_enclosed_string(TokenList::iterator &tok_it, TokenList::iterator tok_end) in consume_enclosed_string()
51 static std::string consume_any_string(TokenList::iterator &tok_it, TokenList::iterator tok_end) in consume_any_string()
59 static int consume_int_token(TokenList::iterator &tok_it, TokenList::iterator tok_end) in consume_int_token()
65 static void consume_properties(LayoutItem &item, TokenList::iterator &tok_it, TokenList::iterator t… in consume_properties()
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/parser/ast/
H A Dsqlitestatement.cpp189 return TokenList(); in getColumnTokensInStatement()
194 return TokenList(); in getTableTokensInStatement()
199 return TokenList(); in getDatabaseTokensInStatement()
210 return TokenList(); in rebuildTokensFromContents()
239 TokenList SqliteStatement::extractPrintableTokens(const TokenList &tokens, bool skipMeaningless) in extractPrintableTokens()
241 TokenList list; in extractPrintableTokens()
281 TokenList list; in getTokenListFromNamedKey()
391 TokenList list; in getDbTokenListFromFullname()
401 TokenList list; in getObjectTokenListFromFullname()
411 TokenList list; in getDbTokenListFromNmDbnm()
[all …]
H A Dsqlitestatement.h220 TokenList getContextColumnTokens(bool checkParent = true, bool checkChilds = true);
221 TokenList getContextTableTokens(bool checkParent = true, bool checkChilds = true);
261 TokenList tokens;
282 QHash<QString,TokenList> tokensMap;
296 virtual TokenList getColumnTokensInStatement();
297 virtual TokenList getTableTokensInStatement();
298 virtual TokenList getDatabaseTokensInStatement();
300 virtual TokenList rebuildTokensFromContents();
303 … static TokenList extractPrintableTokens(const TokenList& tokens, bool skipMeaningless = true);
305 TokenList getTokenListFromNamedKey(const QString& tokensMapKey, int idx = 0);
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/Plugins/SqlEnterpriseFormatter/
H A Dsqlenterpriseformatter.cpp170 QList<TokenList> SqlEnterpriseFormatter::tokensByLines(const TokenList &tokens, bool includeSpaces) in tokensByLines()
172 QList<TokenList> tokensInLines; in tokensByLines()
173 TokenList tokensInLine; in tokensByLines()
191 TokenList SqlEnterpriseFormatter::adjustCommentsToEnd(const TokenList &inputTokens) in adjustCommentsToEnd()
194 TokenList newTokens; in adjustCommentsToEnd()
195 TokenList commentTokensForLine; in adjustCommentsToEnd()
222 TokenList SqlEnterpriseFormatter::wrapOnlyComments(const TokenList &inputTokens) in wrapOnlyComments()
225 TokenList newTokens; in wrapOnlyComments()
244 TokenList SqlEnterpriseFormatter::optimizeInnerComments(const TokenList &inputTokens) in optimizeInnerComments()
250 TokenList SqlEnterpriseFormatter::optimizeEndLineComments(const TokenList &inputTokens) in optimizeEndLineComments()
[all …]
H A Dsqlenterpriseformatter.h89 QList<Comment*> collectComments(const TokenList& tokens);
91 QList<TokenList> tokensByLines(const TokenList& tokens, bool includeSpaces = false);
92 TokenList adjustCommentsToEnd(const TokenList& inputTokens);
93 TokenList wrapOnlyComments(const TokenList& inputTokens);
94 TokenList optimizeInnerComments(const TokenList& inputTokens);
95 TokenList optimizeEndLineComments(const TokenList& inputTokens);
96 void indentMultiLineComments(const TokenList& inputTokens);
/dports/audio/harp/harp-0.6.0/
H A Dlex.h43 typedef struct TokenList{ struct
45 struct TokenList *next; argument
46 }TokenList; typedef
51 int split_token(TokenList *token, const int start, const int word_i);
52 int identify(TokenList *token,State *q);
53 int identify_full(TokenList *token, State *q);
55 TokenList* create_tokens(char *str);
60 void free_tokens(TokenList *t);
61 TokenList* lex(const char *str);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/queryParser/
H A DTokenList.cpp16 TokenList::TokenList(){ in CL_NS_DEF()
22 TokenList::~TokenList(){ in ~TokenList()
30 void TokenList::add(QueryToken* token){ in add()
40 void TokenList::push(QueryToken* token){ in push()
50 QueryToken* TokenList::peek() { in peek()
63 QueryToken* TokenList::extract(){ in extract()
75 int32_t TokenList::count() const in count()
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/queryParser/legacy/
H A DTokenList.cpp16 TokenList::TokenList(){ in CL_NS_DEF2()
22 TokenList::~TokenList(){ in ~TokenList()
30 void TokenList::add(QueryToken* token){ in add()
40 void TokenList::push(QueryToken* token){ in push()
50 QueryToken* TokenList::peek() { in peek()
63 QueryToken* TokenList::extract(){ in extract()
75 int32_t TokenList::count() const in count()
/dports/editors/texstudio/texstudio-4.1.2/src/latexparser/
H A Dlatexparsing.h15 TokenList simpleLexLatexLine(QDocumentLineHandle *dlh); ///< first pass lexing of text line
17 int findCommandWithArgsFromTL(const TokenList &tl, Token &cmd, TokenList &args, int offset, bool pa…
19 QString getArg(TokenList tl, QDocumentLineHandle *dlh, int argNumber, ArgumentList::ArgType type, b…
20 QString getArg(const TokenList &tl, Token::TokenType type);
24 int getTokenAtCol(TokenList &tl, int pos, bool first = false);
25 TokenList getArgContent(Token &tk);
26 TokenList getArgContent(TokenList &tl, int pos, int level, int runAwayPrevention = 10);
29 Token getCommandTokenFromToken(TokenList tl, Token tk);
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/email/
H A D_header_value_parser.pyi26 class TokenList(List[Union[TokenList, Terminal]]):
54 class Phrase(TokenList):
57 class Word(TokenList):
63 class Atom(TokenList):
66 class Token(TokenList):
107 class Address(TokenList):
130 class Group(TokenList):
168 class Mailbox(TokenList):
190 class Domain(TokenList):
275 class Value(TokenList):
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/email/
H A D_header_value_parser.pyi26 class TokenList(List[Union[TokenList, Terminal]]):
54 class Phrase(TokenList):
57 class Word(TokenList):
63 class Atom(TokenList):
66 class Token(TokenList):
107 class Address(TokenList):
130 class Group(TokenList):
168 class Mailbox(TokenList):
190 class Domain(TokenList):
275 class Value(TokenList):
[all …]
/dports/devel/cppcheck/cppcheck-2.6.3/lib/
H A Dpreprocessor.h91 void inlineSuppressions(const simplecpp::TokenList &tokens);
93 void setDirectives(const simplecpp::TokenList &tokens);
103 std::set<std::string> getConfigs(const simplecpp::TokenList &tokens) const;
107 bool loadFiles(const simplecpp::TokenList &rawtokens, std::vector<std::string> &files);
111 void setPlatformInfo(simplecpp::TokenList *tokens) const;
145 …simplecpp::TokenList preprocess(const simplecpp::TokenList &tokens1, const std::string &cfg, std::…
147 …std::string getcode(const simplecpp::TokenList &tokens1, const std::string &cfg, std::vector<std::…
179 …unsigned int calculateChecksum(const simplecpp::TokenList &tokens1, const std::string &toolinfo) c…
181 void simplifyPragmaAsm(simplecpp::TokenList *tokenList);
185 static void simplifyPragmaAsmPrivate(simplecpp::TokenList *tokenList);
[all …]
/dports/devel/cppcheck-gui/cppcheck-2.6.3/lib/
H A Dpreprocessor.h91 void inlineSuppressions(const simplecpp::TokenList &tokens);
93 void setDirectives(const simplecpp::TokenList &tokens);
103 std::set<std::string> getConfigs(const simplecpp::TokenList &tokens) const;
107 bool loadFiles(const simplecpp::TokenList &rawtokens, std::vector<std::string> &files);
111 void setPlatformInfo(simplecpp::TokenList *tokens) const;
145 …simplecpp::TokenList preprocess(const simplecpp::TokenList &tokens1, const std::string &cfg, std::…
147 …std::string getcode(const simplecpp::TokenList &tokens1, const std::string &cfg, std::vector<std::…
179 …unsigned int calculateChecksum(const simplecpp::TokenList &tokens1, const std::string &toolinfo) c…
181 void simplifyPragmaAsm(simplecpp::TokenList *tokenList);
185 static void simplifyPragmaAsmPrivate(simplecpp::TokenList *tokenList);
[all …]
/dports/devel/cppcheck/cppcheck-2.6.3/externals/simplecpp/
H A Dsimplecpp.h181 class SIMPLECPP_LIB TokenList {
183 explicit TokenList(std::vector<std::string> &filenames);
185 TokenList(const TokenList &other);
187 TokenList(TokenList &&other);
189 ~TokenList();
190 TokenList &operator=(const TokenList &other);
192 TokenList &operator=(TokenList &&other);
241 void takeTokens(TokenList &other) { in takeTokens()
313 …SIMPLECPP_LIB std::map<std::string, TokenList*> load(const TokenList &rawtokens, std::vector<std::…
327 …_LIB void preprocess(TokenList &output, const TokenList &rawtokens, std::vector<std::string> &file…
[all …]
/dports/devel/cppcheck-gui/cppcheck-2.6.3/externals/simplecpp/
H A Dsimplecpp.h181 class SIMPLECPP_LIB TokenList {
183 explicit TokenList(std::vector<std::string> &filenames);
185 TokenList(const TokenList &other);
187 TokenList(TokenList &&other);
189 ~TokenList();
190 TokenList &operator=(const TokenList &other);
192 TokenList &operator=(TokenList &&other);
241 void takeTokens(TokenList &other) { in takeTokens()
313 …SIMPLECPP_LIB std::map<std::string, TokenList*> load(const TokenList &rawtokens, std::vector<std::…
327 …_LIB void preprocess(TokenList &output, const TokenList &rawtokens, std::vector<std::string> &file…
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/BaseTools/Source/Python/UPT/Parser/
H A DDecParser.py178 if len(TokenList) < 2 or TokenList[1] == '':
181 TokenList = GetSplitValueList(TokenList[1], DT.TAB_EQUAL_SPLIT, 1)
182 if TokenList[0] == '':
187 if len(TokenList) == 1:
190 self._LocalMacro[TokenList[0]] = self._ReplaceMacro(TokenList[1])
437 self.DefineValidation[TokenList[0]](TokenList[1])
443 self.DefineValidation[TokenList[0]](TokenList[1])
520 if TokenList[0] == '' or TokenList[1] == '':
527 Value = TokenList[1]
676 if TokenList[1][0] != '{' or TokenList[1][-1] != '}' or GuidString == '':
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/BaseTools/Source/Python/UPT/Parser/
H A DDecParser.py173 if len(TokenList) < 2 or TokenList[1] == '':
176 TokenList = GetSplitValueList(TokenList[1], DT.TAB_EQUAL_SPLIT, 1)
177 if TokenList[0] == '':
182 if len(TokenList) == 1:
185 self._LocalMacro[TokenList[0]] = self._ReplaceMacro(TokenList[1])
446 self.DefineValidation[TokenList[0]](TokenList[1])
452 self.DefineValidation[TokenList[0]](TokenList[1])
530 if TokenList[0] == '' or TokenList[1] == '':
537 Value = TokenList[1]
686 if TokenList[1][0] != '{' or TokenList[1][-1] != '}' or GuidString == '':
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/BaseTools/Source/Python/UPT/Parser/
H A DDecParser.py173 if len(TokenList) < 2 or TokenList[1] == '':
176 TokenList = GetSplitValueList(TokenList[1], DT.TAB_EQUAL_SPLIT, 1)
177 if TokenList[0] == '':
182 if len(TokenList) == 1:
185 self._LocalMacro[TokenList[0]] = self._ReplaceMacro(TokenList[1])
446 self.DefineValidation[TokenList[0]](TokenList[1])
452 self.DefineValidation[TokenList[0]](TokenList[1])
530 if TokenList[0] == '' or TokenList[1] == '':
537 Value = TokenList[1]
686 if TokenList[1][0] != '{' or TokenList[1][-1] != '}' or GuidString == '':
[all …]
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/BaseTools/Source/Python/UPT/Parser/
H A DDecParser.py173 if len(TokenList) < 2 or TokenList[1] == '':
176 TokenList = GetSplitValueList(TokenList[1], DT.TAB_EQUAL_SPLIT, 1)
177 if TokenList[0] == '':
182 if len(TokenList) == 1:
185 self._LocalMacro[TokenList[0]] = self._ReplaceMacro(TokenList[1])
446 self.DefineValidation[TokenList[0]](TokenList[1])
452 self.DefineValidation[TokenList[0]](TokenList[1])
530 if TokenList[0] == '' or TokenList[1] == '':
537 Value = TokenList[1]
686 if TokenList[1][0] != '{' or TokenList[1][-1] != '}' or GuidString == '':
[all …]

12345678910>>...44