summaryrefslogtreecommitdiffstats
path: root/lib/Index
Commit message (Expand)AuthorAgeFilesLines
* Change operator<< for raw_ostream and NamedDecl to take a reference instead o...Benjamin Kramer2011-10-141-2/+2
* Removing a bunch of dead returns/breaks after llvm_unreachables.David Blaikie2011-09-231-1/+0
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-2/+2
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-234-8/+8
* now that we have a centralized place to do so, add some using declarations forChris Lattner2011-07-201-1/+1
* Modify some deleted function methods to better reflect reality:Sean Hunt2011-05-062-2/+2
* Support for C++11 (non-template) alias declarations.Richard Smith2011-04-151-1/+1
* fix a bunch of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* Give some convenient idiomatic accessors to Stmt::child_range andJohn McCall2011-02-132-3/+2
* CMake: LLVM_NO_RTTI must be obsolete now!NAKAMURA Takumi2011-02-101-2/+0
* Fix CMake clangIndex library dependencies, from Logan ChienDouglas Gregor2010-09-201-15/+1
* Revert "CMake: Update to use standard CMake dependency tracking facilities in...Michael J. Spencer2010-09-131-19/+17
* CMake: Update to use standard CMake dependency tracking facilities insteadMichael J. Spencer2010-09-101-17/+19
* Clean up CMake dependenciesDouglas Gregor2010-09-091-0/+5
* Clean up some of the CMake dependenciesDouglas Gregor2010-09-081-0/+14
* De-memberify the VarDecl and FunctionDecl StorageClass enums.John McCall2010-08-261-2/+2
* Remove unused location-to-AST-node resolver. libclang's implementation superc...Douglas Gregor2010-07-192-603/+0
* BUILD_ARCHIVE is the default for libraries, no need to set it.Chris Lattner2010-07-181-1/+0
* Collect function definitions in the Indexer when indexing through the ASTs.Zhongxing Xu2010-07-063-17/+64
* Local variables have no linkage, make invalid Entities.Zhongxing Xu2010-07-061-0/+4
* Refrase comments.Zhongxing Xu2010-07-051-3/+3
* Although in C++ class name has external linkage, usually the definition of the Zhongxing Xu2010-07-051-0/+8
* Make FieldDecl an invalid Entity since it has no linkage.Zhongxing Xu2010-07-051-2/+2
* Indexer: make FieldDecl an internal Entity.Zhongxing Xu2010-07-051-0/+6
* Change CallGraph::Prog to be a reference. idx::Program means to be a global o...Zhongxing Xu2010-07-021-1/+1
* Simplify libIndex Makefile, which doesn't need to worry about altivec support.Daniel Dunbar2010-06-081-6/+0
* Makefiles: Set Clang CPP compiler flags in a single location, instead of scat...Daniel Dunbar2010-06-081-2/+0
* Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.Daniel Dunbar2010-06-081-3/+3
* Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRan...Abramo Bagnara2010-05-202-2/+2
* Substantially alter the design of the Objective C type AST by introducingJohn McCall2010-05-152-23/+12
* Overhaul the AST representation of Objective-C message sendDouglas Gregor2010-04-211-23/+56
* Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer2010-04-171-2/+2
* Allow users to set CPPFLAGS and CXXFLAGS on the make command line.Jeffrey Yasskin2010-03-121-2/+2
* Cleanup using StringRefKovarththanan Rajaratnam2010-03-122-12/+4
* Extend ObjCMessageExpr for class method sends with the source locationDouglas Gregor2010-03-081-2/+2
* -fno-rtti is now the default.Chris Lattner2010-01-241-1/+0
* Add -cursor-at=file:line:column command line option to c-index-test,Douglas Gregor2010-01-151-1/+1
* Add the BlockDecl to the DeclContext.Ted Kremenek2009-12-071-1/+1
* DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia...John McCall2009-12-072-23/+23
* Update CMake for CallGraph.cpp move.Daniel Dunbar2009-12-031-0/+1
* Fix layering violation by moving Analysis/CallGraph to IndexDaniel Dunbar2009-12-031-0/+150
* Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.Benjamin Kramer2009-11-284-13/+9
* Add special clang_getCursor() support for @class. Handles <rdar://problem/73...Ted Kremenek2009-11-181-0/+12
* Silence some warnings produced by Clang, and add a missing headerDouglas Gregor2009-11-171-1/+1
* Preserve type source information in sizeof/alignof expressions, and pass itJohn McCall2009-11-041-0/+20
* Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <...Steve Naroff2009-10-281-8/+37
* Preserve type source information in TypedefDecls. Preserve it acrossJohn McCall2009-10-241-0/+14
* When building types from declarators, instead of building two types (one forJohn McCall2009-10-221-7/+38
* Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searc...Steve Naroff2009-10-211-1/+4
* Move clients to use IdentifierInfo::getNameStart() instead of getName()Daniel Dunbar2009-10-182-7/+11