aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema
AgeCommit message (Expand)Author
2009-11-17StringRef'ify CodeCompletionStringDouglas Gregor
2009-11-13Rework Sema code completion interface.Daniel Dunbar
2009-11-12Spell empty StringRef correctly (0 is a null StringRef, which is not the same).Daniel Dunbar
2009-11-07Various improvements to Clang's code-completion infrastructure:Douglas Gregor
2009-10-30Include macros in code-completion resultsDouglas Gregor
2009-09-23Print the results of code-completion for overloading by displaying theDouglas Gregor
2009-09-23Separate the code-completion results for call completion from theDouglas Gregor
2009-09-22When code-completion finds a declaration only because it is usable asDouglas Gregor
2009-09-22Tweak the code-completion results ranking and formation, so thatDouglas Gregor
2009-09-22Add getDeclaration()/getKind() accessors to CodeCompleteConsumer::ResultDouglas Gregor
2009-09-22Spell function pointer correctly.Daniel Dunbar
2009-09-21Enhance "case" code completion in C++ to suggest qualified names forDouglas Gregor
2009-09-21Refactor and simplify the CodeCompleteConsumer, so that all of theDouglas Gregor
2009-09-18Introduce code completion strings, which describe how to *use* theDouglas Gregor
2009-09-18C++ code completion after the "operator" keyword. Provide overloadedDouglas Gregor
2009-09-18Introduce four new code-completion hooks for C++:Douglas Gregor
2009-09-18Don't perform name lookup into a given declaration context more than once dur...Douglas Gregor
2009-09-18For code completion in C++ member access expressions and tag names,Douglas Gregor
2009-09-18When gathering results for code completion, only include hiddenDouglas Gregor
2009-09-18Implement code completion for tags, e.g., code completion after "enum"Douglas Gregor
2009-09-17Fix typo.Mike Stump
2009-09-17Initial implementation of a code-completion interface in Clang. InDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-06-14Update LLVM.Douglas Gregor
2009-04-24PCH support for the global method pool (= instance and factory methodDouglas Gregor
2009-04-21Lazy deserialization of the declaration chains associated withDouglas Gregor
2009-04-20Introduce the notion of a SemaConsumer, which is an ASTConsumer thatDouglas Gregor
2009-04-16tblgen is now passing diagnostic group information in the .inc file, ignore i...Chris Lattner
2009-04-15Tblgen now passes the default mapping explicitly, instead of having it Chris Lattner
2009-04-14When building a PCH file, don't perform end-of-translation-unitDouglas Gregor
2009-03-28remove TranslationUnit from ParseAST.Chris Lattner
2009-03-28simplify ParseAST by sucking -disable-free handling logic up intoChris Lattner
2009-03-19Bindir and Win32 builds work, so switch to .inc files. Leave the .def files i...Sebastian Redl
2009-03-14Revert the switch to the tablegen diags. It fails for seperate objdir builds ...Sebastian Redl
2009-03-14Switch diagnostics from .def to tablegen files. Please validate the Windows b...Sebastian Redl
2009-01-29Fix -Wimplicit-function-declaration, which required some refactoring andChris Lattner
2009-01-29move library-specific diagnostic headers into library private dirs. ReduceChris Lattner
2009-01-28Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pas...Ted Kremenek
2008-10-27Comment fix, ParseAST does not take ownership of the consumer.Daniel Dunbar
2008-10-16Add --disable-free flag to clang.Daniel Dunbar
2008-08-08ParseAST now never releases the passed ASTConsumer. This is the responsibili...Ted Kremenek
2008-08-07Fix 80 col violationTed Kremenek
2008-08-07ParseAST now conditionally deletes the passed ASTConsumer.Ted Kremenek
2008-02-06rename ASTSTreamer.{h|cpp} -> ParseAST.{h|cpp}Chris Lattner
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-19Interned MainFileID within SourceManager. Since SourceManager is referenced byTed Kremenek
2007-11-03Fix ownership model of ParseAST to allow the dtor of Chris Lattner
2007-09-16remove some obsolete interfaces.Chris Lattner
2007-09-15add a new ASTConsumer consumer to simplify stuff in the driver.Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer