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

  /external/clang/tools/libclang/
CXSourceLocation.h 1 //===- CXSourceLocation.h - CXSourceLocations Utilities ---------*- C++ -*-===//
29 static inline CXSourceLocation
35 CXSourceLocation Result = { { &SM, &LangOpts, },
41 static inline CXSourceLocation translateSourceLocation(ASTContext &Context,
66 static inline SourceLocation translateSourceLocation(CXSourceLocation L) {
CXSourceLocation.cpp 1 //===- CXSourceLocation.cpp - CXSourceLocations APIs ------------*- C++ -*-===//
18 #include "CXSourceLocation.h"
31 static bool isASTUnitSourceLocation(const CXSourceLocation &L) {
33 // pointer, or the CXSourceLocation is a null location.
43 CXSourceLocation clang_getNullLocation() {
44 CXSourceLocation Result = { { 0, 0 }, 0 };
48 unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) {
59 CXSourceRange clang_getRange(CXSourceLocation begin, CXSourceLocation end)
    [all...]
CXLoadedDiagnostic.h 35 virtual CXSourceLocation getLocation() const;
66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
67 static void decodeLocation(CXSourceLocation location,
CIndexDiagnostic.h 66 virtual CXSourceLocation getLocation() const = 0;
127 virtual CXSourceLocation getLocation() const;
CIndexInclusionStack.cpp 16 #include "CXSourceLocation.h"
32 SmallVector<CXSourceLocation, 10> InclusionStack;
CIndexDiagnostic.cpp 16 #include "CXSourceLocation.h"
47 CXSourceLocation Loc;
49 CXDiagnosticCustomNoteImpl(StringRef Msg, CXSourceLocation L)
59 CXSourceLocation getLocation() const {
122 CXSourceLocation L;
144 CXSourceLocation L;
370 CXSourceLocation clang_getDiagnosticLocation(CXDiagnostic Diag) {
CLog.h 70 Logger &operator<<(CXSourceLocation);
CXStoredDiagnostic.cpp 17 #include "CXSourceLocation.h"
42 CXSourceLocation CXStoredDiagnostic::getLocation() const {
CXLoadedDiagnostic.cpp 82 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) {
87 CXSourceLocation Loc = { { (void*) V, 0 }, 0 };
91 CXSourceLocation CXLoadedDiagnostic::getLocation() const {
140 void CXLoadedDiagnostic::decodeLocation(CXSourceLocation location,
147 // CXSourceLocation consists of the following fields:
521 CXSourceLocation startLoc = makeLocation(Start);
522 CXSourceLocation endLoc = makeLocation(End);
CIndex.cpp 20 #include "CXSourceLocation.h"
    [all...]
Indexing.cpp 15 #include "CXSourceLocation.h"
    [all...]
  /external/clang/include/clang-c/
Index.h 365 } CXSourceLocation;
382 CINDEX_LINKAGE CXSourceLocation clang_getNullLocation(void);
392 CINDEX_LINKAGE unsigned clang_equalLocations(CXSourceLocation loc1,
393 CXSourceLocation loc2);
399 CINDEX_LINKAGE CXSourceLocation clang_getLocation(CXTranslationUnit tu,
407 CINDEX_LINKAGE CXSourceLocation clang_getLocationForOffset(CXTranslationUnit tu,
420 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
421 CXSourceLocation end);
458 CINDEX_LINKAGE void clang_getExpansionLocation(CXSourceLocation location,
504 CINDEX_LINKAGE void clang_getPresumedLocation(CXSourceLocation location
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 616 CXSourceLocation Loc;
626 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
728 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
743 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
794 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
842 CXSourceLocation start = clang_getRangeStart(range);
843 CXSourceLocation end = clang_getRangeEnd(range);
930 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
964 CXSourceLocation Loc;
980 CXSourceLocation RefLo
    [all...]

Completed in 662 milliseconds