summaryrefslogtreecommitdiffstats
path: root/clang/tools/c-index-test
Commit message (Expand)AuthorAgeFilesLines
* {c-index-test|c-arcmt-test}/Makefile: Update USEDLIBS along corresponding to ...NAKAMURA Takumi2013-08-181-1/+1
* Revert commit 186833 (no longer needed after the fix in 186859).Enea Zaffanella2013-07-221-83/+46
* c-index-test.c: Let this C89-compliant since r186817.NAKAMURA Takumi2013-07-221-46/+83
* c-index-test/CMakeLists.txt: Suggest -isystem to include libxml2 with include...NAKAMURA Takumi2013-07-091-1/+1
* c-index-test/Makefile: Use -isystem instead of -I on $(LIBXML2_INC) with -Wdo...NAKAMURA Takumi2013-07-091-0/+8
* [libclang] Introduce clang_Cursor_isObjCOptional, which returns whether the d...Argyrios Kyrtzidis2013-07-051-1/+3
* [Driver] Refactor clang driver to use LLVM's Option libraryReid Kleckner2013-06-141-1/+1
* libclang: add a function to check whether a member function is pure virtualDmitri Gribenko2013-05-171-1/+2
* [libclang] Introduce clang_Module_getASTFile function that returns the module...Argyrios Kyrtzidis2013-04-261-3/+8
* [PCH/modules] Require the preprocessing record option to match the used PCH, ...Argyrios Kyrtzidis2013-04-261-0/+1
* [libclang] Introduce clang_Cursor_isVariadic, which returns non-zero if the g...Argyrios Kyrtzidis2013-04-181-0/+3
* [libclang] Introduce clang_Cursor_getObjCDeclQualifiers, to query for 'ObjC Q...Argyrios Kyrtzidis2013-04-181-0/+16
* [libclang] Introduce clang_Cursor_getObjCPropertyAttributes to query the writ...Argyrios Kyrtzidis2013-04-181-0/+22
* [libclang] Have clang_getCXXAccessSpecifier() also return the access control ...Argyrios Kyrtzidis2013-04-111-0/+17
* [libclang] Expose record layout info via new libclang functions:Argyrios Kyrtzidis2013-04-111-0/+59
* [c-index-test] Enable 'display diagnostics' when using the -test-load functio...Argyrios Kyrtzidis2013-04-091-2/+2
* [Modules] Resolve top-headers of modules lazily.Argyrios Kyrtzidis2013-03-131-2/+2
* [libclang] Fix a test and a warning on windows.Argyrios Kyrtzidis2013-03-111-1/+1
* [libclang] Introduce clang_findIncludesInFile, that can be used to retrieve a...Argyrios Kyrtzidis2013-03-081-1/+97
* Fix typos: [Dd]iagnosic -> [Dd]iagnosticStefanus Du Toit2013-03-011-8/+8
* libclang: add clang_getTypeSpelling(CXType CT)Dmitri Gribenko2013-02-151-17/+21
* libclang: Update comment about USEDLIBS in c-*-test/Makefile.NAKAMURA Takumi2013-01-221-0/+3
* Add bitreader to LINK_COMPONENTS in users of libclang, c-arcmt-test and c-ind...NAKAMURA Takumi2013-01-201-1/+1
* c-index-test/Makefile: Add clangFormat to USEDLIBS for libclang-unavailable h...NAKAMURA Takumi2012-12-201-0/+1
* c-index-test/Makefile: Reformat.NAKAMURA Takumi2012-12-201-1/+2
* [c-index-test] Fix warnings about unused results from chdir().Argyrios Kyrtzidis2012-12-171-3/+11
* [CMake] Move libxml2 stuff from clang to llvm/cmake.NAKAMURA Takumi2012-12-141-2/+1
* [libclang] Introduce a new indexing mode where we skip function bodiesArgyrios Kyrtzidis2012-12-061-1/+8
* [c-index-test] Introduce '-index-compile-db' which accepts a compilation data...Argyrios Kyrtzidis2012-12-051-66/+197
* c-index-test.c: Make C89-compliant.NAKAMURA Takumi2012-12-041-1/+2
* libclang: Add a function to libclang for retrieving the bit width valueDmitri Gribenko2012-12-041-0/+21
* Force C89 for c-index-test.cDmitri Gribenko2012-11-071-0/+7
* [c-index-test] Do install c-index-test because it's not just for tests,Argyrios Kyrtzidis2012-11-061-3/+0
* [libclang] Introduce clang_Cursor_getReceiverType which returns the CXType forArgyrios Kyrtzidis2012-11-011-0/+6
* c-index-test.c: Split a format string. [-Woverlength-strings]NAKAMURA Takumi2012-10-241-1/+2
* [libclang] Add "-index-file-full" option that recursively indexes any importedArgyrios Kyrtzidis2012-10-241-2/+74
* [libclang] Invoke a ppIncludedFile callback when indexing implicit module imp...Argyrios Kyrtzidis2012-10-181-1/+2
* c-index-test.c: /* Use C style comment. */NAKAMURA Takumi2012-10-121-1/+1
* [libclang] Make sure the index_data.main_filename field is initializedArgyrios Kyrtzidis2012-10-111-0/+2
* [libclang] Add tests for indexing modules and PCHs using modules.Argyrios Kyrtzidis2012-10-111-1/+1
* [libclang] Improve AST serialization done by ASTUnit::Save().Argyrios Kyrtzidis2012-10-111-1/+5
* [libclang] Now that we have a CXModule object, pass it to theArgyrios Kyrtzidis2012-10-051-5/+8
* [libclang] Introduce new C functions that provide information about modules:Argyrios Kyrtzidis2012-10-051-0/+19
* [libclang] Simplify indexing of module imports by handling implicitArgyrios Kyrtzidis2012-10-031-4/+3
* [libclang] Even though we disable the preprocessing record during indexing,Argyrios Kyrtzidis2012-10-021-1/+2
* [libclang] Implement the importedASTFile indexing callback to provideArgyrios Kyrtzidis2012-10-021-1/+19
* Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko2012-09-101-4/+3
* Fix the build (-Wswitch violation introduced by r163013).David Blaikie2012-08-311-0/+1
* Fix C++ comment in C sourceMichael Liao2012-08-301-1/+1
* [libclang] c-index-test: Make the printing of the overrides list of a cursor inArgyrios Kyrtzidis2012-08-221-1/+22
OpenPOWER on IntegriCloud