Home
last modified time | relevance | path

Searched refs:CXSourceRangeList (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/include/clang-c/
H A DIndex.h700 } CXSourceRangeList; typedef
708 CINDEX_LINKAGE CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit tu,
718 CINDEX_LINKAGE CXSourceRangeList *
724 CINDEX_LINKAGE void clang_disposeSourceRangeList(CXSourceRangeList *ranges);
/llvm-project-15.0.7/clang/unittests/libclang/
H A DLibclangTest.cpp372 CXSourceRangeList *Ranges = clang_getAllSkippedRanges(ClangTU); in TEST_F()
627 CXSourceRangeList *Ranges = clang_getAllSkippedRanges(ClangTU); in TEST_F()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp9076 CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit TU, CXFile file) { in clang_getSkippedRanges()
9077 CXSourceRangeList *skipped = new CXSourceRangeList; in clang_getSkippedRanges()
9122 CXSourceRangeList *clang_getAllSkippedRanges(CXTranslationUnit TU) { in clang_getAllSkippedRanges()
9123 CXSourceRangeList *skipped = new CXSourceRangeList; in clang_getAllSkippedRanges()
9150 void clang_disposeSourceRangeList(CXSourceRangeList *ranges) { in clang_disposeSourceRangeList()
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dc-index-test.c4159 CXSourceRangeList *skipped_ranges = 0; in perform_token_annotation()