HomeSort by relevance Sort by last modified time
    Searched refs:CXSourceRange (Results 1 - 12 of 12) sorted by null

  /external/clang/tools/libclang/
CXSourceLocation.h 52 /// useful to have a CXSourceRange be a proper half-open interval. This routine
54 CXSourceRange translateSourceRange(const SourceManager &SM,
59 static inline CXSourceRange translateSourceRange(ASTContext &Context,
70 static inline SourceRange translateCXSourceRange(CXSourceRange R) {
CXLoadedDiagnostic.h 53 virtual CXSourceRange getRange(unsigned Range) const;
60 CXSourceRange *ReplacementRange) const;
84 std::vector<CXSourceRange> Ranges;
85 std::vector<std::pair<CXSourceRange, CXString> > FixIts;
CIndexDiagnostic.h 84 virtual CXSourceRange getRange(unsigned Range) const = 0;
91 CXSourceRange *ReplacementRange) const = 0;
145 virtual CXSourceRange getRange(unsigned Range) const;
152 CXSourceRange *ReplacementRange) const;
Index_Internal.h 38 CXCursor, CXSourceRange);
CXSourceLocation.cpp 52 CXSourceRange clang_getNullRange() {
53 CXSourceRange Result = { { 0, 0 }, 0, 0 };
57 CXSourceRange clang_getRange(CXSourceLocation begin, CXSourceLocation end) {
61 CXSourceRange Result = { { begin.ptr_data[0], end.ptr_data[0] }, 0, 0 };
69 CXSourceRange Result = { { begin.ptr_data[0], begin.ptr_data[1] },
75 unsigned clang_equalRanges(CXSourceRange range1, CXSourceRange range2) {
82 int clang_Range_isNull(CXSourceRange range) {
87 CXSourceLocation clang_getRangeStart(CXSourceRange range) {
99 CXSourceLocation clang_getRangeEnd(CXSourceRange range)
    [all...]
CXStoredDiagnostic.cpp 94 CXSourceRange CXStoredDiagnostic::getRange(unsigned int Range) const {
108 CXSourceRange *ReplacementRange) const {
CIndexDiagnostic.cpp 78 CXSourceRange getRange(unsigned Range) const { return clang_getNullRange(); }
80 CXString getFixIt(unsigned FixIt, CXSourceRange *ReplacementRange) const {
258 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
406 CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diag, unsigned Range) {
420 CXSourceRange *ReplacementRange) {
CXLoadedDiagnostic.cpp 130 CXSourceRange CXLoadedDiagnostic::getRange(unsigned Range) const {
140 CXSourceRange *ReplacementRange) const {
239 CXSourceRange &SR);
525 CXSourceRange &SR) {
630 CXSourceRange SR;
638 CXSourceRange SR;
CIndexHigh.cpp 409 CXSourceRange range) {
CIndex.cpp 107 /// useful to have a CXSourceRange be a proper half-open interval. This routine
109 CXSourceRange cxloc::translateSourceRange(const SourceManager &SM,
123 CXSourceRange Result = { { (void *)&SM, (void *)&LangOpts },
    [all...]
  /external/clang/include/clang-c/
Index.h 354 } CXSourceRange;
391 CINDEX_LINKAGE CXSourceRange clang_getNullRange();
397 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
405 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,
406 CXSourceRange range2);
411 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range);
530 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range);
536 CINDEX_LINKAGE CXSourceLocation clang_getRangeEnd(CXSourceRange range);
882 CINDEX_LINKAGE CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diagnostic,
918 CXSourceRange *ReplacementRange)
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 165 static void PrintRange(CXSourceRange R, const char *str) {
198 CXSourceRange CursorExtent;
199 CXSourceRange RefNameRange;
389 CXSourceRange range;
464 CXSourceRange extent = clang_getCursorExtent(C);
    [all...]

Completed in 242 milliseconds