summaryrefslogtreecommitdiffstats
path: root/tools/libclang/CIndex.cpp
Commit message (Expand)AuthorAgeFilesLines
* [libclang] Make sure that when we have multiple @class references in the same...Argyrios Kyrtzidis2012-04-161-1/+21
* [libclang] Spelling range for a objc category should the category name range,...Argyrios Kyrtzidis2012-04-161-0/+12
* Added a flag to the parser to skip method bodies.Erik Verbruggen2012-04-121-1/+3
* [libclang] In cxloc::translateSourceRange make sure to handle locations in ma...Argyrios Kyrtzidis2012-04-111-3/+4
* [libclang] Fix "error: conflicts with new declaration with ā€˜Cā€™ linkage" t...Argyrios Kyrtzidis2012-04-111-21/+21
* [libclang] If displayDiagnostics is set (when calling clang_createIndex), mak...Argyrios Kyrtzidis2012-04-111-19/+28
* [libclang] For clang_getOverriddenCursors make sure to report overridden objc...Argyrios Kyrtzidis2012-04-101-0/+2
* [libclang] Introduce clang_Cursor_getObjCSelectorIndex() function.Argyrios Kyrtzidis2012-03-301-0/+4
* [libclang] Introduce clang_Cursor_getSpellingNameRange().Argyrios Kyrtzidis2012-03-301-0/+57
* Add info to ObjCPropertyRefExpr to indicate whether the dot syntax propertyArgyrios Kyrtzidis2012-03-301-2/+11
* [libclang] A MemberRefExpr cursor for a property dot syntax should have asArgyrios Kyrtzidis2012-03-301-0/+2
* [libclang] Rename setBackGroundPriority -> setThreadBackgroundPriority.Argyrios Kyrtzidis2012-03-281-5/+5
* [libclang] Fix gcc error.Argyrios Kyrtzidis2012-03-281-2/+2
* [libclang] Introduce options to control the priority for the threadsArgyrios Kyrtzidis2012-03-281-3/+45
* [libclang] For clang_saveTranslationUnit, if the AST to save has invalid nodesArgyrios Kyrtzidis2012-03-281-5/+52
* [libclang] For a CXCursor_ObjCInstanceMethodDecl/CXCursor_ObjCClassMethodDecl...Argyrios Kyrtzidis2012-03-231-0/+4
* [libclang] Have clang_getCursorExtent() return the range of the main file whenArgyrios Kyrtzidis2012-03-191-0/+8
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-4/+4
* Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall2012-03-101-4/+0
* [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart().Daniel Dunbar2012-03-091-5/+5
* [PCH] Mark a PCH file with a flag to indicate if the serialized AST hadArgyrios Kyrtzidis2012-03-071-2/+5
* And libclang cursor/indexing support for new Objective-C NSArray/NSDictionary...Ted Kremenek2012-03-061-0/+2
* Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h.Argyrios Kyrtzidis2012-03-011-1/+1
* Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h"Argyrios Kyrtzidis2012-02-271-1/+1
* Don't record nested macro expansions in the preprocessing record,Argyrios Kyrtzidis2012-02-251-7/+2
* Implement a new type trait __is_trivially_constructible(T, Args...)Douglas Gregor2012-02-241-0/+6
* Basic: import IntrusiveRefCntPtr<> into clang namespaceDylan Noblesmith2012-02-201-2/+2
* Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol...Sebastian Redl2012-02-161-3/+2
* Revert "Make CXXNewExpr contain only a single initialier, and not hold the us...Sebastian Redl2012-02-161-2/+3
* Make CXXNewExpr contain only a single initialier, and not hold the used const...Sebastian Redl2012-02-161-3/+2
* Implement indexing support for lambdas in libclang (both kinds), asDouglas Gregor2012-02-151-0/+67
* drop more llvm:: prefixes on SmallString<>Dylan Noblesmith2012-02-131-4/+4
* drop more llvm:: prefixes on OwningPtr<>Dylan Noblesmith2012-02-131-5/+5
* Print NamedDecls directly to a raw_ostream where possible.Benjamin Kramer2012-02-071-3/+3
* [libclang] Stick to the silly notion that a forward class/protocolArgyrios Kyrtzidis2012-02-041-0/+14
* Added source location for the template keyword in AST template-id expressions.Abramo Bagnara2012-01-271-1/+1
* [libclang] In clang::getCursorKindForDecl() don't return "UnexposedDecl"Argyrios Kyrtzidis2012-01-241-6/+2
* [libclang] When calling clang_getCursorReferenced on a class or protocolArgyrios Kyrtzidis2012-01-241-3/+11
* Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie2012-01-171-12/+7
* Eliminate ObjCForwardProtocolDecl, which is redundant now thatDouglas Gregor2012-01-011-23/+3
* Move the data that corresponds to the definition of a protocol into aDouglas Gregor2012-01-011-2/+2
* Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDeclDouglas Gregor2011-12-271-28/+10
* [libclang] In visitPreprocessedEntitiesInRange we are interested in a file re...Argyrios Kyrtzidis2011-12-211-2/+2
* Keep track of all declarations of an Objective-C class (both forwardDouglas Gregor2011-12-151-12/+12
* [libclang] Give up on using write(); hopefully unbreaks mingw build.Argyrios Kyrtzidis2011-12-151-15/+1
* Revert r146646 that was a mistake, and make the intended change in the right ...Argyrios Kyrtzidis2011-12-151-0/+10
* [libclang] Install a fatal error handler that will call abort() instead of ex...Argyrios Kyrtzidis2011-12-151-0/+12
* Eliminate the vistigial ObjCClassDecl::ObjCClassRef, and inline itsDouglas Gregor2011-12-141-1/+1
* [libclang] Add defensive checks to make sure we don't try to dereferenceArgyrios Kyrtzidis2011-12-101-15/+36
* [libclang] API enhancements by Joe Groff!Argyrios Kyrtzidis2011-12-061-0/+7