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

Lines Matching defs:CXSourceRange

388 } CXSourceRange;
436 CINDEX_LINKAGE CXSourceRange clang_getNullRange(void);
442 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
450 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,
451 CXSourceRange range2);
456 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range);
606 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range);
612 CINDEX_LINKAGE CXSourceLocation clang_getRangeEnd(CXSourceRange range);
623 CXSourceRange *ranges;
993 CINDEX_LINKAGE CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diagnostic,
1029 CXSourceRange *ReplacementRange);
3007 CINDEX_LINKAGE CXSourceRange clang_getCursorExtent(CXCursor);
3969 CINDEX_LINKAGE CXSourceRange clang_Cursor_getSpellingNameRange(CXCursor,
4174 CINDEX_LINKAGE CXSourceRange clang_Cursor_getCommentRange(CXCursor C);
4425 CINDEX_LINKAGE CXSourceRange clang_getCursorReferenceNameRange(CXCursor C,
4529 CINDEX_LINKAGE CXSourceRange clang_getTokenExtent(CXTranslationUnit, CXToken);
4548 CINDEX_LINKAGE void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
5537 enum CXVisitorResult (*visit)(void *context, CXCursor, CXSourceRange);
5564 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5566 * The CXSourceRange will point inside the file; if the reference is inside
5567 * a macro (and not a macro argument) the CXSourceRange will be invalid.
5581 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5594 (^CXCursorAndRangeVisitorBlock)(CXCursor, CXSourceRange);