| Commit message (Expand) | Author | Age | Files | Lines |
| * | Suggest "const" and "volatile" code completions after a function | Douglas Gregor | 2010-08-27 | 1 | -0/+1 |
| * | Implement code completion for @selector expressions | Douglas Gregor | 2010-08-26 | 1 | -0/+1 |
| * | Move the sorting of code-completion results out of the main path and | Douglas Gregor | 2010-08-26 | 1 | -3/+1 |
| * | Revert r112149, "Move the sorting of code-completion results out of the main | Daniel Dunbar | 2010-08-26 | 1 | -1/+3 |
| * | Move the sorting of code-completion results out of the main path and | Douglas Gregor | 2010-08-26 | 1 | -3/+1 |
| * | Revert "Move the sorting of code-completion results out of the main path and | Douglas Gregor | 2010-08-26 | 1 | -1/+3 |
| * | Move the sorting of code-completion results out of the main path and | Douglas Gregor | 2010-08-25 | 1 | -3/+1 |
| * | When combining the code-completion results from Sema long with the | Douglas Gregor | 2010-08-25 | 1 | -2/+6 |
| * | Add a missing case | Douglas Gregor | 2010-08-25 | 1 | -0/+1 |
| * | Fix an off-by-one error when computing the precompiled preamble for | Douglas Gregor | 2010-08-25 | 1 | -1/+2 |
| * | Make the cursor kind of macro-name-only completions produced by | Douglas Gregor | 2010-08-25 | 1 | -1/+4 |
| * | Teach Sema to live without CodeCompleteConsumer.h. | John McCall | 2010-08-25 | 1 | -6/+6 |
| * | Implement code completion for preprocessor expressions and in macro | Douglas Gregor | 2010-08-24 | 1 | -1/+3 |
| * | Implement preprocessor code completion where a macro name is expected, | Douglas Gregor | 2010-08-24 | 1 | -5/+22 |
| * | Introduce new libclang API functions that determine the availability | Douglas Gregor | 2010-08-23 | 1 | -1/+4 |
| * | Don't include macro results when we're completing a declarator. | Douglas Gregor | 2010-08-23 | 1 | -3/+1 |
| * | Introduce a new code-completion point when we're parsing a | Douglas Gregor | 2010-08-23 | 1 | -2/+8 |
| * | Abstract out member-pointer creation. I'm really unhappy about the current | John McCall | 2010-08-22 | 1 | -1/+1 |
| * | When performing code-completion in the presence of a preamble, make | Douglas Gregor | 2010-08-20 | 1 | -8/+13 |
| * | When we decide not to reuse a precompiled preamble, clear out the | Douglas Gregor | 2010-08-20 | 1 | -2/+18 |
| * | Fix a loop overrun in ComputePreamble when the last remapped file was erased, | Daniel Dunbar | 2010-08-19 | 1 | -0/+4 |
| * | Plug a leak when precompiling the preamble in ASTUnit. | Douglas Gregor | 2010-08-19 | 1 | -7/+21 |
| * | Make sure to initialize ASTUnit::UnsafeToFree | Douglas Gregor | 2010-08-19 | 1 | -1/+2 |
| * | Rename the ASTReader header files. | Sebastian Redl | 2010-08-18 | 1 | -1/+1 |
| * | More PCH -> AST renaming. | Sebastian Redl | 2010-08-18 | 1 | -9/+9 |
| * | Rename various classes from PCH to AST. | Sebastian Redl | 2010-08-18 | 1 | -2/+2 |
| * | Rename PCHReader to ASTReader. | Sebastian Redl | 2010-08-18 | 1 | -10/+10 |
| * | Rename PCHWriter.h to ASTWriter.h | Sebastian Redl | 2010-08-18 | 1 | -1/+1 |
| * | Rename PCHWriter to ASTWriter | Sebastian Redl | 2010-08-18 | 1 | -2/+2 |
| * | When creating an ASTUnit by parsing source code, set DisableFree to | Douglas Gregor | 2010-08-18 | 1 | -1/+1 |
| * | Simplify the ownership model for DiagnosticClients, which was really | Douglas Gregor | 2010-08-18 | 1 | -18/+16 |
| * | Reintroduce the serialization library, with fixed dependencies. | Sebastian Redl | 2010-08-17 | 1 | -2/+2 |
| * | Revert Sebastian's build-breaking patch. | Douglas Gregor | 2010-08-17 | 1 | -2/+2 |
| * | Create a new Serialization module that contains all the PCH code, and will co... | Sebastian Redl | 2010-08-17 | 1 | -2/+2 |
| * | When the # of top-level declarations changes after reparsing a | Douglas Gregor | 2010-08-17 | 1 | -1/+15 |
| * | Move include to the proper place. No functionality change | Douglas Gregor | 2010-08-16 | 1 | -0/+1 |
| * | Implement support for cached code completions for | Douglas Gregor | 2010-08-16 | 1 | -21/+51 |
| * | Formatting fixes. No functionality change | Douglas Gregor | 2010-08-16 | 1 | -5/+5 |
| * | Implement name hiding of cached global code-completion results. | Douglas Gregor | 2010-08-16 | 1 | -3/+81 |
| * | Move some code out-of-line which has long since grown too large to be | Douglas Gregor | 2010-08-16 | 1 | -61/+69 |
| * | When caching code completions for global declarations, keep track of | Douglas Gregor | 2010-08-16 | 1 | -8/+38 |
| * | Dereferencing NULL pointers is such poor form. | Douglas Gregor | 2010-08-16 | 1 | -4/+8 |
| * | When caching global completion results, keep track of the simplified | Douglas Gregor | 2010-08-16 | 1 | -1/+23 |
| * | Open AST/PCH files in binary mode. | Benjamin Kramer | 2010-08-15 | 1 | -2/+2 |
| * | Extend the code-completion caching infrastructure to include global | Douglas Gregor | 2010-08-15 | 1 | -6/+90 |
| * | Implement caching of code-completion results for macro definitions | Douglas Gregor | 2010-08-13 | 1 | -8/+174 |
| * | Implement clang_saveTranslationUnit(), which saves a translation unit | Douglas Gregor | 2010-08-13 | 1 | -0/+23 |
| * | Teach ASTUnit to hold on to the Sema object and ASTConsumer that are | Douglas Gregor | 2010-08-13 | 1 | -3/+14 |
| * | Reintroduce the ASTConsumer/ASTUnit fix from r110610, it has nothing to do wi... | Sebastian Redl | 2010-08-11 | 1 | -0/+3 |
| * | Fix a thinko in the creation of temporary files for the precompiled preamble | Douglas Gregor | 2010-08-11 | 1 | -1/+2 |