Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [libclang][index][NFC] Fix test for skipping already parsed function bodies | Jan Korous | 2019-08-23 | 1 | -1/+1 |
| | | | | llvm-svn: 369822 | ||||
* | clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting ↵ | NAKAMURA Takumi | 2016-02-10 | 1 | -3/+3 |
| | | | | | | msvc. llvm-svn: 260347 | ||||
* | libclang: Enable skip-parsed-bodies on win32. | NAKAMURA Takumi | 2016-02-10 | 1 | -1/+0 |
| | | | | | | I guess it would be working since Rafael's r187619. llvm-svn: 260344 | ||||
* | Initialize the AST consumer as soon as we have both an ASTConsumer and an | Richard Smith | 2015-08-18 | 1 | -1/+4 |
| | | | | | | | ASTContext. Fixes some cases where we could previously initialize the AST consumer more than once. llvm-svn: 245346 | ||||
* | Teach compile_commands.json test that windows-gnu is the new name for mingw32. | Yaron Keren | 2014-12-17 | 1 | -1/+1 |
| | | | | llvm-svn: 224426 | ||||
* | clang/test/Index/skip-parsed-bodies/compile_commands.json: Mark it as ↵ | NAKAMURA Takumi | 2013-01-31 | 1 | -1/+1 |
| | | | | | | XFAIL:mingw32, for now. llvm-svn: 174064 | ||||
* | Return true from HeaderSearch::isFileMultipleIncludeGuarded if the file | Argyrios Kyrtzidis | 2012-12-10 | 4 | -0/+12 |
| | | | | | | was #import'ed. llvm-svn: 169761 | ||||
* | test/Index/skip-parsed-bodies/compile_commands.json: Remove XFAIL on cygming. | NAKAMURA Takumi | 2012-12-07 | 1 | -1/+1 |
| | | | | llvm-svn: 169566 | ||||
* | [libclang] Add a test to make sure we skip bodies properly from "#pragma ↵ | Argyrios Kyrtzidis | 2012-12-06 | 4 | -1/+21 |
| | | | | | | once" headers. llvm-svn: 169558 | ||||
* | [libclang] Introduce a new indexing mode where we skip function bodies | Argyrios Kyrtzidis | 2012-12-06 | 6 | -0/+92 |
that were already parsed in the same "indexing session". An indexing session is defined as using the same CXIndexAction object for multiple clang_indexSourceFile calls. Passing CXIndexOpt_SkipParsedBodiesInSession as an indexing option will enable the mode where we try to skip bodies that were already parsed in another translation unit. If a function's body was skipped, the "flags" field in the CXIdxDeclInfo structure will have "CXIdxDeclFlag_Skipped" bit was set. llvm-svn: 169539 |