summaryrefslogtreecommitdiffstats
path: root/include/clang/Lex/PTHLexer.h
Commit message (Expand)AuthorAgeFilesLines
* fix trivial typos, NFCHiroshi Inoue2017-06-301-1/+1
* Roll-back r250822.Angel Garcia Gomez2015-10-201-1/+1
* Apply modernize-use-default to clang.Angel Garcia Gomez2015-10-201-1/+1
* Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko2015-04-111-2/+1
* Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requirin...Aaron Ballman2015-02-151-2/+2
* Header guard canonicalization, clang part.Benjamin Kramer2014-08-131-2/+2
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-111-2/+2
* Make Preprocessor::Lex non-recursive.Eli Friedman2013-09-191-1/+1
* Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.Dmitri Gribenko2012-09-151-2/+2
* Remove unused STL header includes.Jay Foad2011-04-231-1/+0
* Add PTHLexer::LexEndOfFile() to emit diagnostics at end-of-file similar to th...Ted Kremenek2010-07-271-0/+2
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-091-16/+16
* PTH: Use Token::setLiteralData() to directly store a pointer to cached spelli...Ted Kremenek2009-01-271-16/+1
* switch PTH lexer from using "const char*"s to "const unsigned char*"s Chris Lattner2009-01-181-7/+8
* this massive patch introduces a simple new abstraction: it makesChris Lattner2009-01-171-7/+3
* Enhance PTH 'getSpelling' caching:Ted Kremenek2009-01-091-11/+16
* PTH: Hook up getSpelling() caching in PTHLexer. This results in a niceTed Kremenek2009-01-081-1/+9
* PTH:Ted Kremenek2009-01-081-0/+10
* PTH: Remove some methods and simplify some conditions in PTHLexer::Lex(). No...Ted Kremenek2008-12-231-4/+1
* PTH:Ted Kremenek2008-12-231-16/+1
* avoid using a typedef that isn't always included from headers.Chris Lattner2008-12-191-1/+1
* Change PTHLexer::getSourceLocation() to not call GetToken() and instead just ...Ted Kremenek2008-12-171-2/+2
* PTHLexer::isNextPPTokenLParen() no longer calls GetToken() and just reads the...Ted Kremenek2008-12-171-2/+7
* Added PTH optimization to not process entire blocks of tokens that appear in ...Ted Kremenek2008-12-121-11/+14
* PTHLexer: Keep track of the location of the last '#' token and provide the me...Ted Kremenek2008-12-111-0/+16
* Remove unused ivar CurTokenIdx.Ted Kremenek2008-12-111-4/+1
* PreprocessorLexer (and subclasses):Ted Kremenek2008-12-101-0/+4
* - Remove PTHManager.cpp. Move all of its functions to PTHLexer.cpp since som...Ted Kremenek2008-12-031-7/+22
* PTHLexer now owns the Token vector.Ted Kremenek2008-11-271-13/+9
* PTHLexer:Ted Kremenek2008-11-211-0/+2
* PTHLexer:Ted Kremenek2008-11-201-1/+1
* PTHLexer:Ted Kremenek2008-11-201-5/+19
* Added virtual method 'IndirectLex' to PTHLexer. This will likely get removed...Ted Kremenek2008-11-201-0/+4
* - Default initialize ParsingPreprocessorDirective, ParsingFilename, andTed Kremenek2008-11-201-17/+6
* Fix comment.Ted Kremenek2008-11-191-1/+1
* Add stub for PTHLexer::isNextPPTokenLParen().Ted Kremenek2008-11-191-0/+5
* When using a PTHLexer, use DiscardToEndOfLine() instead of ReadToEndOfLine().Ted Kremenek2008-11-191-0/+4
* Move some diagnostic handling to PreprocessorLexer.Ted Kremenek2008-11-121-4/+0
* Add skeleton for PTH lexer.Ted Kremenek2008-11-121-0/+67