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

Lines Matching defs:CXSourceRange

441 } CXSourceRange;
489 CINDEX_LINKAGE CXSourceRange clang_getNullRange(void);
495 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
503 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,
504 CXSourceRange range2);
509 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range);
659 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range);
665 CINDEX_LINKAGE CXSourceLocation clang_getRangeEnd(CXSourceRange range);
676 CXSourceRange *ranges;
1046 CINDEX_LINKAGE CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diagnostic,
1082 CXSourceRange *ReplacementRange);
3076 CINDEX_LINKAGE CXSourceRange clang_getCursorExtent(CXCursor);
4055 CINDEX_LINKAGE CXSourceRange clang_Cursor_getSpellingNameRange(CXCursor,
4260 CINDEX_LINKAGE CXSourceRange clang_Cursor_getCommentRange(CXCursor C);
4522 CINDEX_LINKAGE CXSourceRange clang_getCursorReferenceNameRange(CXCursor C,
4626 CINDEX_LINKAGE CXSourceRange clang_getTokenExtent(CXTranslationUnit, CXToken);
4645 CINDEX_LINKAGE void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
5634 enum CXVisitorResult (*visit)(void *context, CXCursor, CXSourceRange);
5661 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5663 * The CXSourceRange will point inside the file; if the reference is inside
5664 * a macro (and not a macro argument) the CXSourceRange will be invalid.
5678 * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5691 (^CXCursorAndRangeVisitorBlock)(CXCursor, CXSourceRange);