Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move clients to use IdentifierInfo::getNameStart() instead of getName() | Daniel Dunbar | 2009-10-18 | 1 | -3/+5 |
| | | | | llvm-svn: 84436 | ||||
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -11/+11 |
| | | | | llvm-svn: 81346 | ||||
* | Support ObjC methods as Entities. | Argyrios Kyrtzidis | 2009-07-29 | 1 | -26/+65 |
| | | | | llvm-svn: 77547 | ||||
* | Use an IdentifierTable for names used for Entities. | Argyrios Kyrtzidis | 2009-07-29 | 1 | -5/+5 |
| | | | | llvm-svn: 77537 | ||||
* | Modify the Indexer class so that it can return the TranslationUnit that internal | Argyrios Kyrtzidis | 2009-07-29 | 1 | -1/+2 |
| | | | | | | decls originated from. llvm-svn: 77534 | ||||
* | Constify methods. | Zhongxing Xu | 2009-07-24 | 1 | -1/+1 |
| | | | | llvm-svn: 76939 | ||||
* | constify methods. | Zhongxing Xu | 2009-07-23 | 1 | -1/+1 |
| | | | | llvm-svn: 76873 | ||||
* | Remove the ASTContext parameter from Entity::getPrintableName(). | Argyrios Kyrtzidis | 2009-07-21 | 1 | -4/+15 |
| | | | | llvm-svn: 76546 | ||||
* | Keep only canonical Decls in Entities. | Argyrios Kyrtzidis | 2009-07-21 | 1 | -0/+2 |
| | | | | llvm-svn: 76532 | ||||
* | Change the semantics for Entity. | Argyrios Kyrtzidis | 2009-07-21 | 1 | -47/+77 |
| | | | | | | | | | | 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 | ||||
* | Rename Entity::getName() to Entity::getPrintableName() to make its purpose | Zhongxing Xu | 2009-07-17 | 1 | -3/+3 |
| | | | | | | more obvious. llvm-svn: 76167 | ||||
* | Check whether the IdentifierInfo is null, before using it. | Argyrios Kyrtzidis | 2009-07-17 | 1 | -0/+3 |
| | | | | llvm-svn: 76136 | ||||
* | Add getName() method to Entity. | Zhongxing Xu | 2009-07-15 | 1 | -0/+7 |
| | | | | llvm-svn: 75740 | ||||
* | fix file headers. | Chris Lattner | 2009-07-12 | 1 | -1/+1 |
| | | | | llvm-svn: 75437 | ||||
* | Introduce the 'Index' library. | Argyrios Kyrtzidis | 2009-07-05 | 1 | -0/+132 |
Its purpose is to provide the basic infrastructure for cross-translation-unit analysis like indexing, refactoring, etc. Currently it is very "primitive" and with no type-names support. It can provide functionality like "show me all references of this function from these translation units". llvm-svn: 74802 |