aboutsummaryrefslogtreecommitdiff
path: root/lib/Index
AgeCommit message (Expand)Author
2010-09-20Fix CMake clangIndex library dependencies, from Logan ChienDouglas Gregor
2010-09-13Revert "CMake: Update to use standard CMake dependency tracking facilities in...Michael J. Spencer
2010-09-10CMake: Update to use standard CMake dependency tracking facilities insteadMichael J. Spencer
2010-09-09Clean up CMake dependenciesDouglas Gregor
2010-09-08Clean up some of the CMake dependenciesDouglas Gregor
2010-08-26De-memberify the VarDecl and FunctionDecl StorageClass enums.John McCall
2010-07-19Remove unused location-to-AST-node resolver. libclang's implementation superc...Douglas Gregor
2010-07-18BUILD_ARCHIVE is the default for libraries, no need to set it.Chris Lattner
2010-07-06Collect function definitions in the Indexer when indexing through the ASTs.Zhongxing Xu
2010-07-06Local variables have no linkage, make invalid Entities.Zhongxing Xu
2010-07-05Refrase comments.Zhongxing Xu
2010-07-05Although in C++ class name has external linkage, usually the definition of the Zhongxing Xu
2010-07-05Make FieldDecl an invalid Entity since it has no linkage.Zhongxing Xu
2010-07-05Indexer: make FieldDecl an internal Entity.Zhongxing Xu
2010-07-02Change CallGraph::Prog to be a reference. idx::Program means to be a global o...Zhongxing Xu
2010-06-08Simplify libIndex Makefile, which doesn't need to worry about altivec support.Daniel Dunbar
2010-06-08Makefiles: Set Clang CPP compiler flags in a single location, instead of scat...Daniel Dunbar
2010-06-08Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.Daniel Dunbar
2010-05-20Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRan...Abramo Bagnara
2010-05-15Substantially alter the design of the Objective C type AST by introducingJohn McCall
2010-04-21Overhaul the AST representation of Objective-C message sendDouglas Gregor
2010-04-17Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer
2010-03-12Allow users to set CPPFLAGS and CXXFLAGS on the make command line.Jeffrey Yasskin
2010-03-12Cleanup using StringRefKovarththanan Rajaratnam
2010-03-08Extend ObjCMessageExpr for class method sends with the source locationDouglas Gregor
2010-01-24-fno-rtti is now the default.Chris Lattner
2010-01-15Add -cursor-at=file:line:column command line option to c-index-test,Douglas Gregor
2009-12-07Add the BlockDecl to the DeclContext.Ted Kremenek
2009-12-07DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia...John McCall
2009-12-03Update CMake for CallGraph.cpp move.Daniel Dunbar
2009-12-03Fix layering violation by moving Analysis/CallGraph to IndexDaniel Dunbar
2009-11-28Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.Benjamin Kramer
2009-11-18Add special clang_getCursor() support for @class. Handles <rdar://problem/73...Ted Kremenek
2009-11-17Silence some warnings produced by Clang, and add a missing headerDouglas Gregor
2009-11-04Preserve type source information in sizeof/alignof expressions, and pass itJohn McCall
2009-10-28Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <...Steve Naroff
2009-10-24Preserve type source information in TypedefDecls. Preserve it acrossJohn McCall
2009-10-22When building types from declarators, instead of building two types (one forJohn McCall
2009-10-21Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searc...Steve Naroff
2009-10-18Move clients to use IdentifierInfo::getNameStart() instead of getName()Daniel Dunbar
2009-10-18Clone the full Type hierarchy into the TypeLoc hierarchy. NormalizeJohn McCall
2009-10-08Installation of Clang libraries and headers, from Axel Naumann!Douglas Gregor
2009-09-29Pull TypeLocVisitor into its own header file.Argyrios Kyrtzidis
2009-09-29Keep track of type references in DeclReferenceMap.Argyrios Kyrtzidis
2009-09-29In ASTVisitor, call the correct base methods.Argyrios Kyrtzidis
2009-09-29Resolve a source location inside the return type of a functon.Argyrios Kyrtzidis
2009-09-29Resolve a source location that is inside a type declarator.Argyrios Kyrtzidis
2009-09-29Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be:Argyrios Kyrtzidis
2009-09-29Add more const-goodness to ASTLocation.Argyrios Kyrtzidis
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump