| Commit message (Expand) | Author | Age | Files | Lines |
* | [libclang] Provide location for attributes and expose 'packed' attribute. | Argyrios Kyrtzidis | 2013-09-25 | 1 | -7/+7 |
* | [libclang] Introduce clang_Cursor_getObjCPropertyAttributes to query the writ... | Argyrios Kyrtzidis | 2013-04-18 | 1 | -1/+1 |
* | Have clang_getSpellingLocation() use the same logic as DiagnosticRenderer for... | Ted Kremenek | 2012-12-18 | 1 | -12/+26 |
* | Introduce a new libclang API to determine the platform availability of | Douglas Gregor | 2012-05-08 | 1 | -1/+1 |
* | [libclang] For a CXCursor_ObjCInstanceMethodDecl/CXCursor_ObjCClassMethodDecl... | Argyrios Kyrtzidis | 2012-03-23 | 1 | -15/+15 |
* | Expose more statement, expression, and declaration kinds in libclang, | Douglas Gregor | 2011-10-05 | 1 | -2/+2 |
* | Improve location fidelity of objc decls. | Argyrios Kyrtzidis | 2011-10-04 | 1 | -6/+6 |
* | Make -fobjc-nonfragile-abi the -cc1 default, since it's the | John McCall | 2011-10-02 | 1 | -1/+1 |
* | Like IBOutletCollection, it only makes sense to apply the IBOutlet annotation... | Ted Kremenek | 2011-09-29 | 1 | -2/+2 |
* | [libclang] Report implicit objc methods for properties when indexing. | Argyrios Kyrtzidis | 2011-09-26 | 1 | -0/+4 |
* | [libclang] For getDeclFromExpr in CIndex.cpp, associate the decl of | Argyrios Kyrtzidis | 2011-09-12 | 1 | -1/+1 |
* | Mark objc methods that are implicitly declared for properties (not user-decla... | Argyrios Kyrtzidis | 2011-08-17 | 1 | -4/+0 |
* | When creating a property in a class extension, make sure to check its | Douglas Gregor | 2011-07-15 | 1 | -0/+11 |
* | Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran... | Abramo Bagnara | 2011-03-08 | 1 | -1/+1 |
* | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -6/+6 |
* | Fixed TypedefDecl and TemplateTypeParameter source range. | Abramo Bagnara | 2011-03-06 | 1 | -1/+1 |
* | Remove a rogue typo | Douglas Gregor | 2010-10-05 | 1 | -1/+1 |
* | Register the __builtin_va_list_type node when we parse it, rather than | Douglas Gregor | 2010-10-05 | 1 | -1/+1 |
* | Add libclang support for label statements, gotos, and taking the | Douglas Gregor | 2010-09-10 | 1 | -5/+0 |
* | Add libclang API hook "clang_getIBOutletCollectionType" to query the collecti... | Ted Kremenek | 2010-08-26 | 1 | -2/+7 |
* | Introduce new libclang API functions that determine the availability | Douglas Gregor | 2010-08-23 | 1 | -2/+2 |
* | Add test case that was causing an infinite loop when reading PCH files. The t... | Douglas Gregor | 2010-07-14 | 1 | -0/+4 |
* | Add clang support for IBOutletCollection. | Ted Kremenek | 2010-05-19 | 1 | -0/+22 |
* | Re-apply r103581 with updated tests. It turns out we were computing bogus lo... | Ted Kremenek | 2010-05-12 | 1 | -7/+9 |
* | Allow GNU attributes to appear in an Objective-C method declaration | Ted Kremenek | 2010-02-18 | 1 | -1/+5 |
* | Change cursor behavior for attributes to have them visited as part of recursing | Ted Kremenek | 2010-02-18 | 1 | -1/+1 |
* | Add basic cursor traversal for attributes. We currently don't have source | Ted Kremenek | 2010-02-18 | 1 | -74/+63 |
* | c-index-test: Unify and always print half-open extents. | Daniel Dunbar | 2010-02-14 | 1 | -60/+60 |
* | c-index-test: Unify syntax for printing extents. Yes, there were 4. | Daniel Dunbar | 2010-02-14 | 1 | -60/+60 |
* | Loosen preconditions for clang_getCursorSpelling(), returning an empty | Douglas Gregor | 2010-01-25 | 1 | -5/+5 |
* | Move the type specifier location for elaborated-type-specifiers from | Douglas Gregor | 2010-01-25 | 1 | -1/+1 |
* | Teach CIndex's cursor visitor to restrict its traversal to a specific | Douglas Gregor | 2010-01-22 | 1 | -11/+28 |
* | Teach the cursor visitor to walk all of the C and Objective-C | Douglas Gregor | 2010-01-22 | 1 | -0/+13 |
* | Teach the cursor visitor to walk statements and expressions, including | Douglas Gregor | 2010-01-21 | 1 | -0/+12 |
* | Teach the cursor visitor to walk into a variety of different TypeLoc | Douglas Gregor | 2010-01-21 | 1 | -2/+5 |
* | Introduce type references into the C API, capturing references to | Douglas Gregor | 2010-01-21 | 1 | -0/+1 |
* | Eliminate cursor kinds used to express definitions. Instead, provide | Douglas Gregor | 2010-01-19 | 1 | -12/+12 |
* | Introduce clang_getCursorReferenced, to get a cursor pointing at the | Douglas Gregor | 2010-01-19 | 1 | -6/+6 |
* | Implement clang_getCursorExtent, which provides a source range for the | Douglas Gregor | 2010-01-19 | 1 | -5/+5 |
* | Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing '... | Ted Kremenek | 2010-01-18 | 1 | -28/+28 |
* | Give ObjCClassRef cursors a sane representation, which is encapsulated | Douglas Gregor | 2010-01-16 | 1 | -3/+3 |
* | Improve location information for Objective-C category declarations. We | Douglas Gregor | 2010-01-16 | 1 | -1/+1 |
* | Use a sane encoding for CXCursor_ObjCProtocolRef, using the actual | Douglas Gregor | 2010-01-16 | 1 | -2/+2 |
* | Give CXCursor_ObjCSuperClassRef a sane encoding, which is only known | Douglas Gregor | 2010-01-16 | 1 | -2/+2 |
* | Remove TranslateKind and centralize Decl -> CXCursorKind in GetCursorKind(). ... | Ted Kremenek | 2010-01-16 | 1 | -1/+1 |
* | Change ObjCContainerDecl to contain the entire range for the '@end' | Ted Kremenek | 2010-01-07 | 1 | -11/+12 |
* | Change clang_getDeclExtent() to have the endpoint point to the last character... | Ted Kremenek | 2010-01-06 | 1 | -43/+28 |
* | Add C API hook 'clang_getDeclExtent()', which returns the source extent of a ... | Ted Kremenek | 2010-01-05 | 1 | -30/+29 |
* | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
* | Make tests use the new clang -cc1 flag. | Fariborz Jahanian | 2009-12-14 | 1 | -1/+1 |