1. 7717914 [libclang] Report parameter array types as written in source, not decayed to pointer types. by Argyrios Kyrtzidis · 11 years ago
  2. 411d33a [libclang] Expose record layout info via new libclang functions: by Argyrios Kyrtzidis · 11 years ago
  3. 07c5908 [libclang] Modify clang_getCursorType to be able to handle a function template decl. by Argyrios Kyrtzidis · 11 years ago
  4. 7728cdd Revert r175912, "Add support for coldcc to clang" at John's request. by Peter Collingbourne · 12 years ago
  5. 4c67aa9 Add support for coldcc to clang by Peter Collingbourne · 12 years ago
  6. ae03d8e libclang: add clang_getTypeSpelling(CXType CT) by Dmitri Gribenko · 12 years ago
  7. ae50a5b libclang: use CXCursor getters to simplify code by Dmitri Gribenko · 12 years ago
  8. 5595ded libclang: introduce cxstring::{createRef,createDup} for StringRefs by Dmitri Gribenko · 12 years ago
  9. 0c4394c libclang: introduce cxstring::{createRef,createDup} for C strings by Dmitri Gribenko · 12 years ago
  10. dc66adb libclang: itroduce cxstring::createEmpty() by Dmitri Gribenko · 12 years ago
  11. 5694feb libclang: factor out the frequent pattern static_cast<ASTUnit *>(TU->TUData) by Dmitri Gribenko · 12 years ago
  12. e22339c libclang: change return type of getCursorDecl() to 'const Decl *' by Dmitri Gribenko · 12 years ago
  13. 93cf969 [libclang] In clang_getCursorType, don't crash if the translation unit is not by Argyrios Kyrtzidis · 12 years ago
  14. 67812b2 libclang: change CXCursor to store 'const void *' pointers for by Dmitri Gribenko · 12 years ago
  15. 46f9252 libclang: use getCursorTU and getCursorASTUnit instead of explicit casts by Dmitri Gribenko · 12 years ago
  16. 3898008 Add intel_ocl_bicc calling convention as a function attribute to clang. The calling convention is already implemented in LLVM. by Guy Benyei · 12 years ago
  17. 1eb6082 libclang: Add a function to libclang for retrieving the bit width value by Dmitri Gribenko · 12 years ago
  18. f59edb9 Sort #include lines for tools/... by Chandler Carruth · 12 years ago
  19. 263366f Add pnaclcall convention to Native Client targets. by Derek Schuff · 12 years ago
  20. 6a01012 [libclang] Introduce CXCursor_ModuleImportDecl cursor kind, used for a module by Argyrios Kyrtzidis · 12 years ago
  21. 25bd279 [libclang] Report CXType_ObjCId for 'const id', not CXType_Typedef. by Argyrios Kyrtzidis · 12 years ago
  22. ae5ac1f [libclang] Map 'id'/'Class'/'SEL' to the corresponding CXType kinds. by Argyrios Kyrtzidis · 12 years ago
  23. d98ef9a [libclang] Introduce a couple of functions to make it convenient by Argyrios Kyrtzidis · 12 years ago
  24. 011d8b9 Implement indexing support for lambdas in libclang (both kinds), as by Douglas Gregor · 13 years ago
  25. 561d3ab Remove unnecessary default cases in switches over enums. by David Blaikie · 13 years ago
  26. 16ed0e6 [libclang] Add defensive checks to make sure we don't try to dereference by Argyrios Kyrtzidis · 13 years ago
  27. 84b7964 [libclang] API enhancements by Joe Groff! by Argyrios Kyrtzidis · 13 years ago
  28. 5f0bfc5 [libclang] Expose array size and element type, patch by Vinay Sajip! by Argyrios Kyrtzidis · 13 years ago
  29. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  30. f968d83 Objective-C doesn't consider the use of incomplete types as method by Douglas Gregor · 13 years ago
  31. e72fb6f Add libclang functions to determine the const/volatile/restrict by Douglas Gregor · 14 years ago
  32. fbcfeea Eliminate the use of getTypeForDecl from clang_getCursorType() and by Douglas Gregor · 14 years ago
  33. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  34. 5389f48 Expose Objective-C type encodings of declarations to libclang users. This also adds a method in ASTContext which encodes FunctionDecls using the same encoding format that is used for Objective-C methods. by David Chisnall · 14 years ago
  35. 3f59c97 The -fshort-wchar option causes wchar_t to become unsigned, in addition to being by Chris Lattner · 14 years ago
  36. 1ab55e9 Eliminate the branching in QualType::getTypePtr() by providing a by Douglas Gregor · 14 years ago
  37. 0a90d32 Make definition of CXTranslationUnitImpl private to libclang. by Ted Kremenek · 14 years ago
  38. a60ed47 Change CXTranslationUnit to not directly cast to an ASTUnit*, by Ted Kremenek · 14 years ago
  39. ed12273 Move CXString creation/management routines into by Ted Kremenek · 14 years ago
  40. 3f0fee3 Teach clang_getCursorType() about base specifiers and other references by Douglas Gregor · 14 years ago
  41. 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago[Renamed (98%) from tools/libclang/CXTypes.cpp]
  42. 3ce9e7d Add clang_isPODType() for querying if the CXType is POD. Implements <rdar://problem/8250669>. by Ted Kremenek · 14 years ago
  43. 9a14084 Add CXType support for querying the return type of Objective-C methods. This is done by by Ted Kremenek · 14 years ago
  44. 04c3cf3 Add CXType support for FunctionNoProto and FunctionProto types. This includes adding a new by Ted Kremenek · 14 years ago
  45. 0d32a68 Add clang_getCursorType() support for @property declarations. by Ted Kremenek · 14 years ago
  46. b3da539 Add check for an invalid CXType in clang_getTypeDeclaration. by Ted Kremenek · 14 years ago
  47. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  48. 8e0ac17 Add CXType and an initial set of supporting functions to libclang. This exposes details of by Ted Kremenek · 14 years ago