HomeSort by: relevance | last modified time | path
    Searched defs:SourceLocation (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LookupResult.h 22 struct SourceLocation {
30 inline bool operator==(const SourceLocation &LHS, const SourceLocation &RHS) {
36 raw_ostream &operator<<(raw_ostream &OS, const SourceLocation &R);
38 using SourceLocations = std::vector<SourceLocation>;
49 /// SourceLocation for each inlined function with the last entry pointing to
  /src/external/apache2/llvm/dist/clang/utils/
ClangDataFormat.py 12 (clang::SourceLocation) $0 = {
19 (clang::SourceLocation) $4 = "/usr/include/i386/_types.h:37:1" (offset: 123582, file, local)
25 debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLocation")
30 return SourceLocation(srcloc).summary()
38 class SourceLocation(object):
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.h 45 class SourceLocation {
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
60 SourceLocation acquire() {
64 return SourceLocation(Filename, Line, OldColumn);
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 30 struct SourceLocation {
31 SourceLocation() : Line(), Column() {}
37 SourceLocation Start;
38 SourceLocation End;
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_value.h 44 class SourceLocation {
50 SourceLocation() : Filename(), Line(), Column() {}
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
59 SourceLocation acquire() {
63 return SourceLocation(Filename, Line, OldColumn);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_value.h 44 class SourceLocation {
50 SourceLocation() : Filename(), Line(), Column() {}
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
59 SourceLocation acquire() {
63 return SourceLocation(Filename, Line, OldColumn);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceLocation.h 1 //===- SourceLocation.h - Compact identifier for Source Files ---*- C++ -*-===//
10 /// Defines the clang::SourceLocation class and associated facilities.
85 /// In addition, one bit of SourceLocation is used for quick access to the
89 class SourceLocation {
93 friend struct llvm::FoldingSetTrait<SourceLocation>;
105 /// Return true if this is a valid SourceLocation object.
119 static SourceLocation getFileLoc(unsigned ID) {
121 SourceLocation L;
126 static SourceLocation getMacroLoc(unsigned ID) {
128 SourceLocation L
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
exploded-graph-rewriter.py 50 class SourceLocation:
57 self.spelling = SourceLocation(json_loc['spelling']) \
84 self.loc = SourceLocation(json_pp['location']) \
115 self.loc = SourceLocation(json_frame['location']) \
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 101 struct SourceLocation {
105 static SourceLocation CurLoc;
106 static SourceLocation LexLoc = {1, 0};
202 SourceLocation Loc;
205 ExprAST(SourceLocation Loc = CurLoc) : Loc(Loc) {}
232 VariableExprAST(SourceLocation Loc, const std::string &Name)
263 BinaryExprAST(SourceLocation Loc, char Op, std::unique_ptr<ExprAST> LHS,
281 CallExprAST(SourceLocation Loc, const std::string &Callee,
298 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond,
365 PrototypeAST(SourceLocation Loc, const std::string &Name
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 39 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
232 class SourceLocation(Structure):
234 A SourceLocation represents a particular location within a source file.
261 """Retrieve a SourceLocation from a given character offset.
300 return "<SourceLocation file %r, line %r, column %r>" % (
322 Return a SourceLocation representing the first character within a
330 Return a SourceLocation representing the last character within a
343 if not isinstance(other, SourceLocation):
2913 """Obtain a SourceLocation for a file in this translation unit
    [all...]

Completed in 26 milliseconds