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

  /external/clang/tools/libclang/
CXSourceLocation.h 1 //===- CXSourceLocation.h - CXSourceLocations Utilities ---------*- C++ -*-===//
29 static inline CXSourceLocation
35 CXSourceLocation Result = { { (void*) &SM, (void*) &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"
29 static bool isASTUnitSourceLocation(const CXSourceLocation &L) {
31 // pointer, or the CXSourceLocation is a null location.
41 CXSourceLocation clang_getNullLocation() {
42 CXSourceLocation Result = { { 0, 0 }, 0 };
46 unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) {
57 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 17 #include "CXSourceLocation.h"
32 SmallVector<CXSourceLocation, 10> InclusionStack;
CIndexDiagnostic.cpp 16 #include "CXSourceLocation.h"
48 CXSourceLocation Loc;
50 CXDiagnosticCustomNoteImpl(StringRef Msg, CXSourceLocation L)
60 CXSourceLocation getLocation() const {
123 CXSourceLocation L = translateSourceLocation(SM, LangOpts, Loc);
138 CXSourceLocation L = translateSourceLocation(SM, LangOpts, Loc);
361 CXSourceLocation clang_getDiagnosticLocation(CXDiagnostic Diag) {
CXStoredDiagnostic.cpp 17 #include "CXSourceLocation.h"
43 CXSourceLocation CXStoredDiagnostic::getLocation() const {
CXLoadedDiagnostic.cpp 89 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) {
94 CXSourceLocation Loc = { { (void*) V, 0 }, 0 };
98 CXSourceLocation CXLoadedDiagnostic::getLocation() const {
147 void CXLoadedDiagnostic::decodeLocation(CXSourceLocation location,
154 // CXSourceLocation consists of the following fields:
535 CXSourceLocation startLoc = makeLocation(Start);
536 CXSourceLocation endLoc = makeLocation(End);
Indexing.cpp 12 #include "CXSourceLocation.h"
807 CXSourceLocation clang_indexLoc_getCXSourceLocation(CXIdxLoc location) {
CIndex.cpp 20 #include "CXSourceLocation.h"
    [all...]
  /external/clang/include/clang-c/
Index.h 342 } CXSourceLocation;
359 CINDEX_LINKAGE CXSourceLocation clang_getNullLocation();
369 CINDEX_LINKAGE unsigned clang_equalLocations(CXSourceLocation loc1,
370 CXSourceLocation loc2);
376 CINDEX_LINKAGE CXSourceLocation clang_getLocation(CXTranslationUnit tu,
384 CINDEX_LINKAGE CXSourceLocation clang_getLocationForOffset(CXTranslationUnit tu,
397 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
398 CXSourceLocation end);
435 CINDEX_LINKAGE void clang_getExpansionLocation(CXSourceLocation location,
479 CINDEX_LINKAGE void clang_getPresumedLocation(CXSourceLocation location
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 216 CXSourceLocation Loc;
226 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
287 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
300 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
343 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
391 CXSourceLocation start = clang_getRangeStart(range);
392 CXSourceLocation end = clang_getRangeEnd(range);
480 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
514 CXSourceLocation Loc;
530 CXSourceLocation RefLo
    [all...]

Completed in 97 milliseconds