Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the unused, unmaintained, incomplete 'Index' library. | Douglas Gregor | 2012-04-13 | 1 | -71/+0 |
| | | | | llvm-svn: 154672 | ||||
* | now that we have a centralized place to do so, add some using declarations for | Chris Lattner | 2011-07-20 | 1 | -1/+1 |
| | | | | | | | some common llvm types: stringref and smallvector. This cleans up the codebase quite a bit. llvm-svn: 135576 | ||||
* | Collect function definitions in the Indexer when indexing through the ASTs. | Zhongxing Xu | 2010-07-06 | 1 | -0/+1 |
| | | | | | | Add an API to get an Entity associated with a name in the global namespace. llvm-svn: 107642 | ||||
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -2/+2 |
| | | | | llvm-svn: 81346 | ||||
* | Support ObjC methods as Entities. | Argyrios Kyrtzidis | 2009-07-29 | 1 | -8/+16 |
| | | | | llvm-svn: 77547 | ||||
* | Use an IdentifierTable for names used for Entities. | Argyrios Kyrtzidis | 2009-07-29 | 1 | -8/+5 |
| | | | | llvm-svn: 77537 | ||||
* | Remove the ASTContext parameter from Entity::getPrintableName(). | Argyrios Kyrtzidis | 2009-07-21 | 1 | -0/+2 |
| | | | | llvm-svn: 76546 | ||||
* | Change the semantics for Entity. | Argyrios Kyrtzidis | 2009-07-21 | 1 | -0/+63 |
Entity can now refer to declarations that are not visible outside the translation unit. It is a wrapper of a pointer union, it's either a Decl* for declarations that don't "cross" translation units, or an EntityImpl* which is associated with the specific "visible" Decl. Included is a test case for handling fields across translation units. llvm-svn: 76515 |