Age | Commit message (Expand) | Author |
2010-04-30 | Rename 'CIndex' to 'libclang', since it has basically become our stable public | Daniel Dunbar |
2010-04-28 | Completely reimplement __builtin_offsetof, based on a patch by Roberto | Douglas Gregor |
2010-04-21 | CXXNamedCastExpr is actually an abstract expression. | Zhongxing Xu |
2010-04-13 | Add cursor kind for C++ methods. | Ted Kremenek |
2010-03-19 | Make the CIndex API more resilient to being used on invalid code. | Ted Kremenek |
2010-03-18 | Expose macro definitions as CIndex cursors. These can still only be | Douglas Gregor |
2010-03-18 | Introduce the notion of a "preprocessing record", which keeps track of | Douglas Gregor |
2010-03-18 | More token-annotation experimentation, preprocessing the annotated | Douglas Gregor |
2010-03-18 | Experimental stab at using relexing to identify preprocessor | Douglas Gregor |
2010-02-18 | Start adding cursor kinds for attributes, with first exposing | Ted Kremenek |
2010-02-03 | Remove abstract expression kinds from the StmtClass enum. Update a few users | John McCall |
2010-01-29 | Add an CXXBindReferenceExpr (not used just yet). | Anders Carlsson |
2010-01-25 | CIndex: Don't crash when visitor passes null child statements, and sprinkle some | Daniel Dunbar |
2010-01-21 | Introduce type references into the C API, capturing references to | Douglas Gregor |
2010-01-20 | Stash a CXXUnit pointer into each cursor. This allows us to simplify | Douglas Gregor |
2010-01-20 | Eliminate the MakeCXCursor routines that require their callers to know too mu... | Douglas Gregor |
2010-01-20 | Introduce a special cursor kind for the translation unit, to serve as | Douglas Gregor |
2010-01-19 | Kill CXCursor_ObjCSelectorRef, CXCursor_VarRef, CXCursor_FunctionRef, | Douglas Gregor |
2010-01-19 | Extend the CIndex API with direct support for expressions and | Douglas Gregor |
2010-01-19 | Kill the unused and unnecessary CXCursor_MemberRef, twin to the | Douglas Gregor |
2010-01-19 | Kill CXCursor_ObjCIvarRef. Such cursors could never be created, and | Douglas Gregor |
2010-01-19 | Introduce the notion of an "unexposed" declaration into the CIndex | Douglas Gregor |
2010-01-19 | Eliminate cursor kinds used to express definitions. Instead, provide | Douglas Gregor |
2010-01-18 | Teach clang_getCursorLocation() to return the locations of references | Douglas Gregor |
2010-01-18 | Explicitly not handle ObjCForwardProtocolDecl in GetCursorKind(). | Ted Kremenek |
2010-01-16 | Give ObjCClassRef cursors a sane representation, which is encapsulated | Douglas Gregor |
2010-01-16 | Use a sane encoding for CXCursor_ObjCProtocolRef, using the actual | Douglas Gregor |
2010-01-16 | Give CXCursor_ObjCSuperClassRef a sane encoding, which is only known | Douglas Gregor |
2010-01-16 | Add mapping from ObjCPropertDecl to CXCursorKind. | Ted Kremenek |
2010-01-16 | Remove TranslateKind and centralize Decl -> CXCursorKind in GetCursorKind(). ... | Ted Kremenek |
2010-01-16 | Migrate Decl* -> cursorkind logic into CXCursor.cpp, and drastically tighten ... | Ted Kremenek |
2010-01-15 | Make CXCursor's data opaque. | Douglas Gregor |
2010-01-15 | Add CXCursor.[h,cpp]. These files will centralize the logic for creating/pro... | Ted Kremenek |