summaryrefslogtreecommitdiffstats
path: root/bindings/python/clang/cindex.py
Commit message (Expand)AuthorAgeFilesLines
* [libclang] Add function to retrieve storage class in libclang.Argyrios Kyrtzidis2014-10-151-0/+61
* Add libclang capabilities to retriete template arguments from specializations.Eli Bendersky2014-10-101-106/+98
* Expose the CUDA shared attribute to the C API.Eli Bendersky2014-08-081-0/+1
* Expose the name mangling C API to Python bindings.Eli Bendersky2014-08-051-0/+13
* Reformat docstring to 80-colEli Bendersky2014-07-311-3/+3
* cindex.py: remove obsolete workaround and FIXMEAlp Toker2014-06-221-4/+0
* Implement a convenience recursive walk method over a cursor and its descendants.Eli Bendersky2014-05-291-0/+10
* Expose CUDA function attributes to the C interface.Eli Bendersky2014-05-281-0/+4
* Trim trailing whitespace in cindex.pyEli Bendersky2014-05-281-6/+6
* Clean up language and grammar.Eric Christopher2014-05-201-2/+2
* [libclang] Add attribute support for 'pure', 'const' and 'noduplicate'.Joey Gouly2014-05-011-0/+3
* Fix the method len of the CompletionString object. Patch by Christopher GreeneSylvestre Ledru2014-04-271-1/+1
* bindings: expose C++ access specifiersSaleem Abdulrasool2014-04-251-0/+59
* cindex.py: Avoid deprecated functionAlp Toker2014-04-201-4/+4
* Use the correct symbol for a left bracket.Bill Wendling2014-03-141-1/+1
* [libclang/python] Add CompilationDatabase.getAllCompileCommands to the python...Argyrios Kyrtzidis2013-12-201-0/+13
* Fix a tranche of comment, test and doc typosAlp Toker2013-12-051-1/+1
* [libclang/python] Add __contains__ to SourceRange class.Argyrios Kyrtzidis2013-10-311-0/+23
* [libclang] Introduce clang_Type_getCXXRefQualifier whichexposes ref-qualifier...Argyrios Kyrtzidis2013-10-111-5/+60
* [libclang] python: expose a few functions, patch by Loïc Jaquemet!Argyrios Kyrtzidis2013-10-031-0/+30
* [libclang] Introduce clang_Type_getClassType which returns the class type of ...Argyrios Kyrtzidis2013-10-031-0/+12
* [libclang] python: fix return type of clang_Type_getSizeOf().Argyrios Kyrtzidis2013-09-251-1/+1
* [libclang] Provide location for attributes and expose 'packed' attribute.Argyrios Kyrtzidis2013-09-251-0/+1
* [libclang] Expose the rest of the array types.Argyrios Kyrtzidis2013-07-231-0/+3
* [libclang/python] Add a few "cursor kinds" that were missing in the python bi...Argyrios Kyrtzidis2013-06-111-3/+36
* libclang: add a function to check whether a member function is pure virtualDmitri Gribenko2013-05-171-0/+4
* Fix return type of isBitfield in the binding definitionDmitri Gribenko2013-04-211-1/+1
* [libclang] Expose record layout info via new libclang functions:Argyrios Kyrtzidis2013-04-111-0/+50
* cindex.py: Handle NULL pointers when parsing translation unitsTobias Grosser2013-03-191-2/+2
* [cindex.py]: Use spaces instead of tabsTobias Grosser2013-01-201-3/+3
* [cindex.py] Add cache for CompletionChunk spellingsTobias Grosser2013-01-191-0/+29
* [cindex.py] Replace CachedProperty with our own implementationTobias Grosser2013-01-191-3/+9
* [cindex.py]: Speed up lookup of the completion kindTobias Grosser2013-01-191-7/+11
* [python bindings] Expose cursor.referenced (clang_getCursorReferenced).Argyrios Kyrtzidis2013-01-021-0/+11
* Fix a copypasto bug. Also rename the parameter in question to not shadow theMatt Beaumont-Gay2012-12-111-3/+3
* [clang.py] Add Cursor.get_arguments()Gregory Szorc2012-11-011-0/+15
* Python bindings: fix typo.Benjamin Kramer2012-10-071-1/+1
* Python bindings: Add missing availability kind.Benjamin Kramer2012-10-071-1/+2
* Fix cindex.py compatibility with older libclang.soDmitri Gribenko2012-09-221-1/+10
* Add bindings for clang_getCompletionBriefComment to cindex.py.Dmitri Gribenko2012-09-151-2/+28
* [cindex.py] Make the use of a compatibilty check explicitTobias Grosser2012-09-051-4/+31
* [cindex.py] Allow to configure the path of libclangTobias Grosser2012-09-031-134/+189
* [cindex.py] Add helper to initialize libclang functionsTobias Grosser2012-09-011-385/+533
* [cindex.py] Cache the number of chunks in CompletionStringTobias Grosser2012-08-201-1/+5
* [cindex.py] Add CachedProperty to CompletionChunkTobias Grosser2012-08-191-3/+3
* [clang.py] Add CachedProperty decoratorGregory Szorc2012-08-191-0/+25
* [cindex.py] Use spaces, not tabs for indentationTobias Grosser2012-08-181-1/+1
* [cindex.py] Dispose code completion results properlyTobias Grosser2012-08-181-1/+1
* [clang.py] Implement Token APIGregory Szorc2012-07-121-15/+183
* [clang.py] Add TranslationUnit.get_{file,source_location,source_range}Gregory Szorc2012-07-121-0/+61