~registry/codeblocks/trunk

« back to all changes in this revision

Viewing changes to src/plugins/codecompletion/parser/parser.h

  • Committer: loaden
  • Date: 2011-07-19 11:24:01 UTC
  • Revision ID: svn-v4:98b59c6a-2706-0410-b7d6-d2fa1a1880c9:trunk:7288
* CC: Fix a hang when find token matches

Show diffs side-by-side

added added

removed removed

Lines of Context:
226
226
 
227
227
    Token* FindTokenByName(const wxString& name, bool globalsOnly = true, short int kindMask = 0xFFFF);
228
228
    Token* FindChildTokenByName(Token* parent, const wxString& name, bool useInheritance = false, short int kindMask = 0xFFFF);
229
 
    size_t FindMatches(const wxString& s, TokenList&   result, bool caseSensitive = true, bool is_prefix = true);
230
229
    size_t FindMatches(const wxString& s, TokenIdxSet& result, bool caseSensitive = true, bool is_prefix = true);
231
230
    size_t FindTokensInFile(const wxString& fileName, TokenIdxSet& result, short int kindMask);
232
231
    ParserOptions& Options() { return m_Options; }