~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/testfile.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
     * 
102
102
     * @see KDevelop::DUChain::updateContextForUrl
103
103
     */
104
 
    void parse(KDevelop::TopDUContext::Features features, int priority = 1);
 
104
    void parse(TopDUContext::Features features = TopDUContext::AllDeclarationsContextsAndUses, int priority = 1);
 
105
 
 
106
    /**
 
107
     * Convenience method:
 
108
     * Trigger parse and wait for the file to be parsed. Internally calls waitForParsed()
 
109
     *
 
110
     * @see waitForParsed()
 
111
     * @see parse()
 
112
     */
 
113
    bool parseAndWait(TopDUContext::Features features = TopDUContext::AllDeclarationsContextsAndUses,
 
114
                      int priority = 1, int timeout = 1000);
105
115
 
106
116
    /**
107
117
     * Blocks current thread and waits until the file has been parsed.
112
122
     * Otherwise true is returned, indicating parsing finished
113
123
     * within the timeout interval.
114
124
     */
115
 
    bool waitForParsed(int timeout = 60000);
 
125
    bool waitForParsed(int timeout = 1000);
116
126
 
117
127
    /**
118
128
     * Check whether the file has been processed after the last call to @c parse().