Home | History | Annotate | Download | only in clang-c

Lines Matching refs:CXSourceRange

382 } CXSourceRange;
430 CINDEX_LINKAGE CXSourceRange clang_getNullRange(void);
436 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
444 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,
445 CXSourceRange range2);
450 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range);
600 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range);
606 CINDEX_LINKAGE CXSourceLocation clang_getRangeEnd(CXSourceRange range);
617 CXSourceRange *ranges;
978 CINDEX_LINKAGE CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diagnostic,
1014 CXSourceRange *ReplacementRange);
2900 CINDEX_LINKAGE CXSourceRange clang_getCursorExtent(CXCursor);
3799 CINDEX_LINKAGE CXSourceRange clang_Cursor_getSpellingNameRange(CXCursor,
3987 CINDEX_LINKAGE CXSourceRange clang_Cursor_getCommentRange(CXCursor C);
4238 CINDEX_LINKAGE CXSourceRange clang_getCursorReferenceNameRange(CXCursor C,
4342 CINDEX_LINKAGE CXSourceRange clang_getTokenExtent(CXTranslationUnit, CXToken);
4361 CINDEX_LINKAGE void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
5331 enum CXVisitorResult (*visit)(void *context, CXCursor, CXSourceRange);
5358 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5360 * The CXSourceRange will point inside the file; if the reference is inside
5361 * a macro (and not a macro argument) the CXSourceRange will be invalid.
5375 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5388 (^CXCursorAndRangeVisitorBlock)(CXCursor, CXSourceRange);