Age | Commit message (Expand) | Author |
2013-03-25 | Correct indentation. No functionality change. | Nick Lewycky |
2013-02-21 | Preprocessor: preserve whitespace in -traditional-cpp mode. | Jordan Rose |
2013-01-24 | Handle universal character names and Unicode characters outside of literals. | Jordan Rose |
2013-01-07 | Pull the bulk of Lexer::MeasureTokenLength() out into a new function, | Argyrios Kyrtzidis |
2012-12-04 | Sort #include lines for all files under include/... | Chandler Carruth |
2012-11-11 | s/BCPLComment/LineComment/ | Nico Weber |
2012-11-06 | Delete an outdated comment. | Nico Weber |
2012-09-15 | Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. | Dmitri Gribenko |
2012-09-07 | Moved back getCharAndSizeNoWarn to public area. | Abramo Bagnara |
2012-08-31 | Make a bunch of methods on Lexer private. | Eli Friedman |
2012-08-28 | Fix a -Wdocumentation warning. | Dmitri Gribenko |
2012-08-23 | Fix a bunch of -Wdocumentation warnings. | Dmitri Gribenko |
2012-06-17 | Documentation cleanup: escaping #define in Doxygen comments | James Dennett |
2012-06-08 | Correct method name in comment: from LexRawToken to LexFromRawLexer, according | Dmitri Gribenko |
2012-06-07 | Insert a space if necessary when suggesting CFBridgingRetain/Release. | Jordan Rose |
2012-05-18 | Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so... | Benjamin Kramer |
2012-05-04 | Add more comments for Lexer::makeFileCharRange. | Argyrios Kyrtzidis |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-05 | Lexing support for user-defined literals. Currently these lex as the same token | Richard Smith |
2012-02-03 | Change Lexer::makeFileCharRange() to have it accept a CharSourceRange | Argyrios Kyrtzidis |
2012-01-19 | Introduce Lexer::getSourceText() that returns a string for the source | Argyrios Kyrtzidis |
2012-01-19 | Introduce Lexer::makeFileCharRange() that accepts a token source range | Argyrios Kyrtzidis |
2012-01-19 | For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro | Argyrios Kyrtzidis |
2012-01-18 | Refactor: Pull getImmediateMacroName() out of DiagnosticRenderer and | Anna Zaks |
2011-12-20 | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie |
2011-10-12 | Handle Perforce-style conflict markers like normal conflict markers. Perforce | Richard Smith |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-04 | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis |
2011-08-25 | Make Lexer::ComputePreamble accept a LangOptions parameter, otherwise it may be | Argyrios Kyrtzidis |
2011-08-11 | Add support for C++0x raw string literals. | Craig Topper |
2011-07-27 | Add a utility function to the Lexer, which makes it easier to find a token af... | Anna Zaks |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-07-20 | now that we have a centralized place to do so, add some using declarations for | Chris Lattner |
2011-07-14 | Convert terminology in the Lexer from 'instantiate' and variants to | Chandler Carruth |
2011-07-07 | Move SourceManager::isAt[Start/End]OfMacroInstantiation functions to the Lexe... | Argyrios Kyrtzidis |
2011-04-23 | Remove unused STL header includes. | Jay Foad |
2011-03-08 | Fix my earlier commit to work with escaped newlines and leave breadcrumbs | John McCall |
2010-11-17 | move getSpelling from Preprocessor to Lexer, which it is more conceptually re... | Chris Lattner |
2010-11-17 | move AdvanceToTokenCharacter and getLocForEndOfToken from | Chris Lattner |
2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Sean Hunt |
2010-08-29 | Implement C++0x user-defined string literals. | Sean Hunt |
2010-08-09 | Use precompiled preambles for in-process code completion. | Douglas Gregor |
2010-07-26 | Introduce basic support for loading a precompiled preamble while | Douglas Gregor |
2010-07-22 | Improve performance during cursor traversal when a region of interest | Douglas Gregor |
2010-07-20 | Introduce a new lexer function to compute the "preamble" of a file, | Douglas Gregor |
2010-01-26 | Introduce a CIndex API for lexing the raw tokens within a given source | Douglas Gregor |
2009-12-23 | update comments | Chris Lattner |
2009-12-14 | teach clang to recover gracefully from conflict markers left in source | Chris Lattner |
2009-12-02 | Extend the source manager with the ability to override the contents of | Douglas Gregor |
2009-11-30 | Fix PR5633 by making the preprocessor handle the case where we can | Chris Lattner |