summaryrefslogtreecommitdiffstats
path: root/include/clang/AST/StmtIterator.h
Commit message (Expand)AuthorAgeFilesLines
* Roll-back r250822.Angel Garcia Gomez2015-10-201-1/+1
* Apply modernize-use-default to clang.Angel Garcia Gomez2015-10-201-1/+1
* [AST] Remove StmtRange in favor of an iterator_range.Benjamin Kramer2015-07-181-80/+0
* StmtIterator: Put stmt and decl group pointer into a union.Benjamin Kramer2015-07-031-4/+6
* Removing LLVM_EXPLICIT, as MSVC 2012 was the last reason for requiring the ma...Aaron Ballman2015-02-151-2/+2
* Header guard canonicalization, clang part.Benjamin Kramer2014-08-131-2/+2
* [C++11] Use 'nullptr'Craig Topper2014-05-061-2/+2
* Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth2014-01-071-1/+1
* Simplify StmtIterator.Eli Friedman2013-06-271-18/+9
* Use only explicit bool conversion operatorDavid Blaikie2013-05-151-2/+3
* Simplify code, no functionality change.Benjamin Kramer2012-03-261-6/+4
* include/clang/AST/StmtIterator.h: std::pair should be provided by <utility>. ...NAKAMURA Takumi2011-04-261-0/+1
* Give some convenient idiomatic accessors to Stmt::child_range andJohn McCall2011-02-131-6/+77
* Remove vtables from the Stmt hierarchy; this was pretty easy asJohn McCall2011-02-091-1/+10
* Change QualType::getTypePtr() to return a const pointer, then change aJohn McCall2011-01-191-6/+6
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Add <cstddef> include to get ptrdiff_t, for gcc-4.6; patch by Dimitry Andric.Daniel Dunbar2010-06-151-0/+1
* Add StmtIterator support for iterating over both the conditionTed Kremenek2009-12-231-6/+10
* Increase StmtIterator size by one pointer (separating out the Stmt** from the...Ted Kremenek2009-12-231-11/+12
* Update location of DataTypes.h to reflect move in LLVM with r85086.Chandler Carruth2009-10-261-1/+1
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-091-31/+31
* iterator.h is no more. Be standards compliant.Gabor Greif2009-08-271-1/+1
* Use LLVM type header rather than using stdint.h directly.Eli Friedman2009-03-051-1/+1
* improve compatibility with GCC 4.4, patch by Michel Salim (PR3697)Chris Lattner2009-03-021-0/+1
* Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor2009-01-201-5/+4
* Add StmtIterator support for DeclGroups.Ted Kremenek2008-10-071-10/+26
* Update to follow recent LLVM changesAnton Korobeynikov2008-05-291-1/+1
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Removed "isSizeOfExpr" mode from StmtIterator. It turned out not to beTed Kremenek2007-12-151-14/+5
* Added "mode" to StmtIterator to record if the expression being iteratedTed Kremenek2007-12-141-11/+27
* Added support to StmtIterator to traverse the size expression of a VLA typeTed Kremenek2007-12-141-11/+16
* Added a missing #include.Hartmut Kaiser2007-10-291-0/+1
* Modified StmtIterator to support iteration over the size expressionsTed Kremenek2007-10-291-25/+29
* Renamed internal variables of StmtIteratorBase to make the codeTed Kremenek2007-10-291-9/+11
* Modified StmtIterator to now include visiting the initialization expression f...Ted Kremenek2007-10-251-2/+2
* Modified operator* for StmtIterator to return Stmt*& instead of Stmt*.Ted Kremenek2007-10-241-11/+11
* Fixed DeclStmt::child_begin() to actually create an iterator thatTed Kremenek2007-10-181-1/+6
* Refactored StmtIterator into classes StmtIteratorBase (non-templated)Ted Kremenek2007-10-181-51/+55
* Implemented 90% functionality of new child_iterator for Stmt objectsTed Kremenek2007-10-181-0/+101