reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
721 CINDEX_LINKAGE CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit tu, 731 CINDEX_LINKAGE CXSourceRangeList *clang_getAllSkippedRanges(CXTranslationUnit tu); 736 CINDEX_LINKAGE void clang_disposeSourceRangeList(CXSourceRangeList *ranges);tools/clang/tools/c-index-test/c-index-test.c
4121 CXSourceRangeList *skipped_ranges = 0;
tools/clang/tools/libclang/CIndex.cpp8656 CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit TU, CXFile file) { 8657 CXSourceRangeList *skipped = new CXSourceRangeList; 8657 CXSourceRangeList *skipped = new CXSourceRangeList; 8698 CXSourceRangeList *clang_getAllSkippedRanges(CXTranslationUnit TU) { 8699 CXSourceRangeList *skipped = new CXSourceRangeList; 8699 CXSourceRangeList *skipped = new CXSourceRangeList; 8725 void clang_disposeSourceRangeList(CXSourceRangeList *ranges) {tools/clang/unittests/libclang/LibclangTest.cpp
371 CXSourceRangeList *Ranges = clang_getAllSkippedRanges(ClangTU); 626 CXSourceRangeList *Ranges = clang_getAllSkippedRanges(ClangTU);