| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Reverting r253473 while I investigate build bot failures. | Aaron Ballman | 2015-11-18 | 1 | -3/+0 |
* | Adding AST matchers for VarDecl storage durations. Can now determine whether ... | Aaron Ballman | 2015-11-18 | 1 | -0/+3 |
* | Add decayedType and hasDecayedType AST matchers | Matthias Gehre | 2015-10-12 | 1 | -0/+2 |
* | Adding a narrowing AST matcher for FunctionDecl::isVariadic(), plus tests and... | Aaron Ballman | 2015-10-05 | 1 | -0/+1 |
* | SourceRanges are small and trivially copyable, don't them by reference. | Craig Topper | 2015-10-04 | 1 | -2/+2 |
* | Rename AST node matchers to match the AST node names directly. Part of this r... | Aaron Ballman | 2015-09-17 | 1 | -27/+31 |
* | Fixed HasDeclarationMatcher to properly convert all types into decls where po... | Aaron Ballman | 2015-09-11 | 1 | -0/+5 |
* | Adding an AST matcher for namespaceAliasDecl. | Aaron Ballman | 2015-08-28 | 1 | -0/+1 |
* | [ASTMatchers] Add type matcher for SubstTemplateTypeParmType. | Samuel Benzaquen | 2015-08-26 | 1 | -0/+1 |
* | Add AST narrowing matchers for inline and anonymous namespaces. Since the inl... | Aaron Ballman | 2015-08-18 | 1 | -0/+2 |
* | Switching from an explicit loop to DeleteContainerSeconds; NFC. | Aaron Ballman | 2015-08-12 | 1 | -2/+2 |
* | RangRangify some more for loops; NFC. | Aaron Ballman | 2015-08-12 | 1 | -17/+15 |
* | Add a polymorphic AST matcher for testing whether a constructor or a conversi... | Aaron Ballman | 2015-08-11 | 1 | -0/+1 |
* | Add an AST matcher to match member intializers of a CXXCtorInitializer. | Aaron Ballman | 2015-08-11 | 1 | -0/+1 |
* | Add AST matchers for narrowing constructors that are default, copy, or move c... | Aaron Ballman | 2015-08-05 | 1 | -0/+4 |
* | Add an AST matcher, isFinal(), for testing whether a method or class declarat... | Aaron Ballman | 2015-07-24 | 1 | -0/+1 |
* | Add the ability to AST match a variable declaration that is an exception vari... | Aaron Ballman | 2015-07-15 | 1 | -0/+1 |
* | Implement an AST matcher for C++ exception catch handlers that can catch any ... | Aaron Ballman | 2015-07-02 | 1 | -0/+1 |
* | Move a test from static-assert.cpp to DeclPrinterTest | David Majnemer | 2015-06-05 | 1 | -0/+1 |
* | Add conversionDecl matcher for node CXXConversionDecl. | Samuel Benzaquen | 2015-04-20 | 1 | -0/+1 |
* | Add support for a few Objective-C matchers. | Manuel Klimek | 2015-03-12 | 1 | -0/+8 |
* | Reverting r232034, as it broke one of the bots with link errors. Details at: ... | Aaron Ballman | 2015-03-12 | 1 | -8/+0 |
* | Added some matchers for objective c selectors and messages to ASTMatchers.h. ... | Aaron Ballman | 2015-03-12 | 1 | -0/+8 |
* | Add translationUnitDecl matcher. | Samuel Benzaquen | 2015-02-10 | 1 | -0/+1 |
* | Add voidType() matcher. | Samuel Benzaquen | 2014-12-15 | 1 | -0/+1 |
* | Re-apply r222646 (was reverted in r222667). Adding 4 ASTMatchers: typedefDecl... | Manuel Klimek | 2014-11-25 | 1 | -0/+4 |
* | Reverting r222646; the tests do not pass on Windows. Also reverts r222664, wh... | Aaron Ballman | 2014-11-24 | 1 | -4/+0 |
* | Adding 4 ASTMatchers: typedefDecl, isInMainFile, isInSystemFile, isInFileMatc... | Manuel Klimek | 2014-11-24 | 1 | -0/+4 |
* | Add valueDecl() matcher. | Samuel Benzaquen | 2014-10-28 | 1 | -0/+1 |
* | Fix completion logic to allow for heterogeneous argument types in matcher ove... | Samuel Benzaquen | 2014-10-09 | 1 | -10/+15 |
* | Implement various matchers around template argument handling. | Manuel Klimek | 2014-10-09 | 1 | -13/+18 |
* | ASTMatchers: Add a matcher to detect whether a decl or stmt is inside a templ... | Benjamin Kramer | 2014-09-03 | 1 | -0/+2 |
* | Add hasAttr matcher for declarations. | Manuel Klimek | 2014-08-25 | 1 | -3/+1 |
* | Add missing matchers to the dynamic registry. | Samuel Benzaquen | 2014-08-15 | 1 | -0/+11 |
* | Add isDeleted() matcher for FunctionDecl nodes. | Samuel Benzaquen | 2014-08-15 | 1 | -0/+1 |
* | Support named values in the autocomplete feature. | Samuel Benzaquen | 2014-08-12 | 1 | -67/+44 |
* | Remove llvm:: from uses of ArrayRef. | Craig Topper | 2014-06-28 | 1 | -3/+3 |
* | Add hasLocalStorage/hasGlobalStorage matchers. | Samuel Benzaquen | 2014-06-05 | 1 | -0/+2 |
* | Add support for named values in the parser. | Samuel Benzaquen | 2014-04-14 | 1 | -9/+4 |
* | Add matcher for ExprWithCleanups. | Samuel Benzaquen | 2014-04-02 | 1 | -0/+1 |
* | Add loc() to the dynamic registry. | Samuel Benzaquen | 2014-03-10 | 1 | -1/+1 |
* | Add TemplateSpecializationType polymorphism for hasTemplateArgument and | Peter Collingbourne | 2014-02-20 | 1 | -0/+1 |
* | Add isListInitialization matcher. | Peter Collingbourne | 2014-02-06 | 1 | -0/+1 |
* | Introduce Registry::getCompletions. | Peter Collingbourne | 2014-01-23 | 1 | -0/+149 |
* | Sort all the #include lines with LLVM's utils/sort_includes.py which | Chandler Carruth | 2014-01-07 | 1 | -3/+1 |
* | Another pass at adding missing matchers into the registry. | Samuel Benzaquen | 2013-11-25 | 1 | -0/+15 |
* | Rename *MatcherCreateCallback to *MatcherDescriptor, and its member run() to ... | Peter Collingbourne | 2013-11-23 | 1 | -7/+7 |
* | Split registry matcher resolution into a lookup phase and a construction phase. | Peter Collingbourne | 2013-11-23 | 1 | -8/+15 |
* | Add support for the 'unless' matcher in the dynamic layer. | Samuel Benzaquen | 2013-11-22 | 1 | -1/+1 |
* | Add partial support for the hasDeclaration() matcher in the dynamic layer. | Samuel Benzaquen | 2013-11-18 | 1 | -1/+1 |