summaryrefslogtreecommitdiffstats
path: root/unittests
Commit message (Expand)AuthorAgeFilesLines
* unittests/AST/StmtPrinterTest.cpp: Suppress a LP64-assumed test, "0x100000000...NAKAMURA Takumi2012-09-241-2/+0
* As a followup for r164303, add some tests for printing literals that testDmitri Gribenko2012-09-232-0/+175
* Add some matchers for basic AST nodes.Daniel Jasper2012-09-201-0/+35
* Fix isDerivedFrom matcher.Daniel Jasper2012-09-181-0/+10
* Add missing matcher for C-style cast expressions.Daniel Jasper2012-09-181-0/+14
* Make all VariadicDynCast-Expr-matchers StatementMatchersDaniel Jasper2012-09-181-70/+64
* Comment parsing: don't parse comment marker followed by a digit as a commandDmitri Gribenko2012-09-141-3/+31
* Create initial support for matching and binding NestedNameSpecifier(Loc)s.Daniel Jasper2012-09-131-45/+95
* Rename isA to isSameOrDerivedFrom.Daniel Jasper2012-09-121-1/+1
* Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko2012-09-102-89/+151
* Change the behavior of the isDerivedFrom-matcher to not match on theDaniel Jasper2012-09-071-4/+10
* Implements hasAncestor.Manuel Klimek2012-09-071-10/+89
* Introduces DynTypedMatcher as a new concept that replaces the UntypedBaseMatc...Manuel Klimek2012-09-051-2/+1
* Split library clangRewrite into clangRewriteCore and clangRewriteFrontend.Ted Kremenek2012-09-017-7/+11
* Remove the useless CommentOptions class.Dmitri Gribenko2012-08-312-2/+2
* DeclPrinter tests: simplify the code by using the new runToolOnCodeWithArgsDmitri Gribenko2012-08-311-27/+10
* DeclPrinter tests: since now some platforms use C++11 by default, make itDmitri Gribenko2012-08-311-105/+97
* Fixes a bug for binding memoized match results.Manuel Klimek2012-08-301-0/+12
* Reland r160052: Default to -std=c++11 on Windows.Nico Weber2012-08-302-3/+9
* Tooling: Add a runToolOnCodeWithArgs() function that allowsNico Weber2012-08-301-3/+6
* ASTTests: Suppress TestCXXConstructorDecl11 on msvc for now. It seems incompa...NAKAMURA Takumi2012-08-251-1/+2
* New matcher for MaterializeTemporaryExprSam Panzer2012-08-241-0/+35
* Allow RecursiveASTVisitor to visit CXXCtorInitializer objects for whichJames Dennett2012-08-242-42/+168
* Use LLVM's plugin registry to enable registering new compilationDaniel Jasper2012-08-242-2/+2
* Rename the ASTMatchers to better match AST nodes. Now, allDaniel Jasper2012-08-243-511/+517
* DeclPrinter tests: mark test case we get wrong currently with WRONG.Dmitri Gribenko2012-08-241-1/+1
* DeclPrinter tests: add two more tests.Dmitri Gribenko2012-08-241-0/+23
* Fix undefined behavior: member function calls where 'this' is a null pointer.Richard Smith2012-08-231-1/+1
* Comment parsing: parse "<blah" as an HTML tag only if "blah" is a known tagDmitri Gribenko2012-08-221-78/+94
* DeclPrinter, terse mode: don't print function bodiesDmitri Gribenko2012-08-211-17/+34
* Rename PrintingPolicy::DontRecurseInDeclContext to PrintingPolicy::TerseOutputDmitri Gribenko2012-08-211-1/+1
* DeclPrinter: add terse output mode and lots of testsDmitri Gribenko2012-08-203-3/+1207
* AST Matchers tests: test that member() matches member allocation functions:Dmitri Gribenko2012-08-181-2/+2
* AST Matchers tests: test that member() matches member allocation functions.Dmitri Gribenko2012-08-181-0/+13
* Part of PR13618: visit the TypeLoc when RecursiveASTVisitor visits a Compound...Richard Smith2012-08-172-2/+14
* AST Matchers: introduce functionTemplate(), classTemplate() andDmitri Gribenko2012-08-171-0/+91
* Don't forget to apply #pragma pack to partial and explicit specializations ofRichard Smith2012-08-171-0/+7
* Matchers related to DeclStmt for matching the count of declarations, a partic...Sam Panzer2012-08-161-0/+34
* Matchers which correspond to CastExpr, IgnoreImpCasts, IgnoreParenCasts, and ...Sam Panzer2012-08-161-0/+217
* Add ASTMatcher for matching extern "C" function declarations.Daniel Jasper2012-08-151-0/+6
* [ms-inline asm] Add various MC components to clang build to support MS-style ...Chad Rosier2012-08-093-0/+21
* Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko2012-08-092-4/+8
* Add various MC components to clang build to support MS-style inline assembly.Chad Rosier2012-08-083-3/+6
* Comment parsing: fix crash on \tparam followed immediately by another blockDmitri Gribenko2012-08-061-8/+56
* Comment parser tests: test that we allow placing no whitespace between \paramDmitri Gribenko2012-08-011-0/+3
* Add missing tests for class template specialization and templateDaniel Jasper2012-08-011-0/+40
* Comment parsing: add support for \tparam command on all levels.Dmitri Gribenko2012-07-311-0/+60
* Comment parser: add one more testDmitri Gribenko2012-07-301-4/+23
* Fix for ASTMatchFinder to visit a functions parameter declarations.Daniel Jasper2012-07-301-0/+6
* Implement resolving of HTML character references (named: &amp;, decimal: &#42;,Dmitri Gribenko2012-07-272-2/+321