| Commit message (Expand) | Author | Age | Files | Lines |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -2/+2 |
* | Remove unused location-to-AST-node resolver. libclang's implementation superc... | Douglas Gregor | 2010-07-19 | 2 | -603/+0 |
* | BUILD_ARCHIVE is the default for libraries, no need to set it. | Chris Lattner | 2010-07-18 | 1 | -1/+0 |
* | Collect function definitions in the Indexer when indexing through the ASTs. | Zhongxing Xu | 2010-07-06 | 3 | -17/+64 |
* | Local variables have no linkage, make invalid Entities. | Zhongxing Xu | 2010-07-06 | 1 | -0/+4 |
* | Refrase comments. | Zhongxing Xu | 2010-07-05 | 1 | -3/+3 |
* | Although in C++ class name has external linkage, usually the definition of the | Zhongxing Xu | 2010-07-05 | 1 | -0/+8 |
* | Make FieldDecl an invalid Entity since it has no linkage. | Zhongxing Xu | 2010-07-05 | 1 | -2/+2 |
* | Indexer: make FieldDecl an internal Entity. | Zhongxing Xu | 2010-07-05 | 1 | -0/+6 |
* | Change CallGraph::Prog to be a reference. idx::Program means to be a global o... | Zhongxing Xu | 2010-07-02 | 1 | -1/+1 |
* | Simplify libIndex Makefile, which doesn't need to worry about altivec support. | Daniel Dunbar | 2010-06-08 | 1 | -6/+0 |
* | Makefiles: Set Clang CPP compiler flags in a single location, instead of scat... | Daniel Dunbar | 2010-06-08 | 1 | -2/+0 |
* | Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. | Daniel Dunbar | 2010-06-08 | 1 | -3/+3 |
* | Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRan... | Abramo Bagnara | 2010-05-20 | 2 | -2/+2 |
* | Substantially alter the design of the Objective C type AST by introducing | John McCall | 2010-05-15 | 2 | -23/+12 |
* | Overhaul the AST representation of Objective-C message send | Douglas Gregor | 2010-04-21 | 1 | -23/+56 |
* | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer | 2010-04-17 | 1 | -2/+2 |
* | Allow users to set CPPFLAGS and CXXFLAGS on the make command line. | Jeffrey Yasskin | 2010-03-12 | 1 | -2/+2 |
* | Cleanup using StringRef | Kovarththanan Rajaratnam | 2010-03-12 | 2 | -12/+4 |
* | Extend ObjCMessageExpr for class method sends with the source location | Douglas Gregor | 2010-03-08 | 1 | -2/+2 |
* | -fno-rtti is now the default. | Chris Lattner | 2010-01-24 | 1 | -1/+0 |
* | Add -cursor-at=file:line:column command line option to c-index-test, | Douglas Gregor | 2010-01-15 | 1 | -1/+1 |
* | Add the BlockDecl to the DeclContext. | Ted Kremenek | 2009-12-07 | 1 | -1/+1 |
* | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall | 2009-12-07 | 2 | -23/+23 |
* | Update CMake for CallGraph.cpp move. | Daniel Dunbar | 2009-12-03 | 1 | -0/+1 |
* | Fix layering violation by moving Analysis/CallGraph to Index | Daniel Dunbar | 2009-12-03 | 1 | -0/+150 |
* | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer | 2009-11-28 | 4 | -13/+9 |
* | Add special clang_getCursor() support for @class. Handles <rdar://problem/73... | Ted Kremenek | 2009-11-18 | 1 | -0/+12 |
* | Silence some warnings produced by Clang, and add a missing header | Douglas Gregor | 2009-11-17 | 1 | -1/+1 |
* | Preserve type source information in sizeof/alignof expressions, and pass it | John McCall | 2009-11-04 | 1 | -0/+20 |
* | Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <... | Steve Naroff | 2009-10-28 | 1 | -8/+37 |
* | Preserve type source information in TypedefDecls. Preserve it across | John McCall | 2009-10-24 | 1 | -0/+14 |
* | When building types from declarators, instead of building two types (one for | John McCall | 2009-10-22 | 1 | -7/+38 |
* | Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searc... | Steve Naroff | 2009-10-21 | 1 | -1/+4 |
* | Move clients to use IdentifierInfo::getNameStart() instead of getName() | Daniel Dunbar | 2009-10-18 | 2 | -7/+11 |
* | Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize | John McCall | 2009-10-18 | 4 | -19/+19 |
* | Installation of Clang libraries and headers, from Axel Naumann! | Douglas Gregor | 2009-10-08 | 1 | -3/+0 |
* | Pull TypeLocVisitor into its own header file. | Argyrios Kyrtzidis | 2009-09-29 | 2 | -2/+2 |
* | Keep track of type references in DeclReferenceMap. | Argyrios Kyrtzidis | 2009-09-29 | 2 | -1/+45 |
* | In ASTVisitor, call the correct base methods. | Argyrios Kyrtzidis | 2009-09-29 | 1 | -4/+4 |
* | Resolve a source location inside the return type of a functon. | Argyrios Kyrtzidis | 2009-09-29 | 1 | -0/+3 |
* | Resolve a source location that is inside a type declarator. | Argyrios Kyrtzidis | 2009-09-29 | 1 | -4/+134 |
* | Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: | Argyrios Kyrtzidis | 2009-09-29 | 3 | -94/+54 |
* | Add more const-goodness to ASTLocation. | Argyrios Kyrtzidis | 2009-09-29 | 1 | -12/+12 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 9 | -56/+56 |
* | Don't install Clang libraries. | Douglas Gregor | 2009-08-23 | 1 | -0/+3 |
* | For a CXXOperatorCallExpr, fix the order that StmtLocResolver uses to check s... | Argyrios Kyrtzidis | 2009-07-31 | 1 | -0/+33 |
* | Lexically order files. | Ted Kremenek | 2009-07-30 | 1 | -2/+2 |
* | Fix Selector <-> GlobalSelector conversion. | Argyrios Kyrtzidis | 2009-07-30 | 1 | -2/+3 |
* | Fix gcc warning. | Eli Friedman | 2009-07-30 | 1 | -2/+2 |