HomeSort by: relevance | last modified time | path
    Searched defs:Loc (Results 1 - 25 of 297) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_handlers_cxx.h 22 SourceLocation Loc;
ubsan_monitor.h 24 Location &Loc;
27 UndefinedBehaviorReport(const char *IssueKind, Location &Loc,
ubsan_handlers_cxx.cc 46 SourceLocation Loc = Data->Loc.acquire();
48 if (ignoreReport(Loc, Opts, ET))
51 ScopedReport R(Opts, Loc, ET);
53 Diag(Loc, DL_Error, ET,
101 SourceLocation Loc = Data->Loc.acquire();
104 if (ignoreReport(Loc, Opts, ET))
107 ScopedReport R(Opts, Loc, ET);
134 Diag(Loc, DL_Error, ET
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
PrettyStackTrace.h 28 SourceLocation Loc;
32 : SM(sm), Loc(L), Message(Msg) {}
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeGenError.h 23 ByteCodeGenError(SourceLocation Loc) : Loc(Loc) {}
29 const SourceLocation &getLoc() const { return Loc; }
35 SourceLocation Loc;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCExpr.h 54 SMLoc Loc;
61 explicit MCExpr(ExprKind Kind, SMLoc Loc, unsigned SubclassData = 0)
62 : Kind(Kind), SubclassData(SubclassData), Loc(Loc) {
82 SMLoc getLoc() const { return Loc; }
378 const MCAsmInfo *MAI, SMLoc Loc = SMLoc());
389 MCContext &Ctx, SMLoc Loc = SMLoc());
435 MCUnaryExpr(Opcode Op, const MCExpr *Expr, SMLoc Loc)
436 : MCExpr(MCExpr::Unary, Loc, Op), Expr(Expr) {}
443 MCContext &Ctx, SMLoc Loc = SMLoc())
    [all...]
ConstantPools.h 33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
38 SMLoc Loc;
58 unsigned Size, SMLoc Loc);
92 unsigned Size, SMLoc Loc);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCELFStreamer.cpp 24 const MCSymbol *Sym, unsigned SizeInBytes, SMLoc Loc,
40 SizeInBytes, Loc);
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_handlers_cxx.h 21 SourceLocation Loc;
ubsan_monitor.h 23 Location &Loc;
26 UndefinedBehaviorReport(const char *IssueKind, Location &Loc,
ubsan_handlers_cxx.cpp 45 SourceLocation Loc = Data->Loc.acquire();
47 if (ignoreReport(Loc, Opts, ET))
50 ScopedReport R(Opts, Loc, ET);
52 Diag(Loc, DL_Error, ET,
100 SourceLocation Loc = Data->Loc.acquire();
103 if (ignoreReport(Loc, Opts, ET))
106 ScopedReport R(Opts, Loc, ET);
133 Diag(Loc, DL_Error, ET
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_monitor.h 23 Location &Loc;
26 UndefinedBehaviorReport(const char *IssueKind, Location &Loc,
ubsan_handlers_cxx.h 21 SourceLocation Loc;
38 SourceLocation Loc;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentBriefParser.h 38 SourceLocation Loc = Tok.getLocation();
40 return Loc;
PrettyDeclStackTrace.h 33 SourceLocation Loc;
37 PrettyDeclStackTraceEntry(ASTContext &Ctx, Decl *D, SourceLocation Loc,
39 : Context(Ctx), TheDecl(D), Loc(Loc), Message(Msg) {}
  /src/external/apache2/llvm/dist/clang/lib/AST/
SelectorLocationsKind.cpp 56 SourceLocation Loc = Arg->getBeginLoc();
57 if (Loc.isInvalid())
58 return Loc;
60 return Loc.getLocWithOffset(-1);
  /src/external/apache2/llvm/dist/clang/lib/Index/
FileIndexRecord.cpp 67 SourceLocation Loc = SM.getFileLoc(D->getLocation());
68 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
77 SourceLocation Loc = SM.getFileLoc(MI->getDefinitionLoc());
78 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
IRBindings.cpp 65 const auto& Loc = unwrap(Bref)->getCurrentDebugLocation();
66 const auto* InlinedAt = Loc.getInlinedAt();
68 Loc.getLine(),
69 Loc.getCol(),
70 wrap(Loc.getScope()),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
CodeRegion.cpp 24 bool CodeRegion::isLocInRange(SMLoc Loc) const {
25 if (RangeEnd.isValid() && Loc.getPointer() > RangeEnd.getPointer())
27 if (RangeStart.isValid() && Loc.getPointer() < RangeStart.getPointer())
32 void CodeRegions::beginRegion(StringRef Description, SMLoc Loc) {
39 Regions[0] = std::make_unique<CodeRegion>(Description, Loc);
47 SM.PrintMessage(Loc, SourceMgr::DK_Error,
55 SM.PrintMessage(Loc, SourceMgr::DK_Error,
65 Regions.emplace_back(std::make_unique<CodeRegion>(Description, Loc));
68 void CodeRegions::endRegion(StringRef Description, SMLoc Loc) {
76 Regions[It->second]->setEndLocation(Loc);
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
CodeExpander.h 35 const ArrayRef<SMLoc> &Loc;
41 const ArrayRef<SMLoc> &Loc, bool ShowExpansions,
43 : Code(Code), Expansions(Expansions), Loc(Loc),
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransARCAssign.cpp 47 SourceLocation Loc = OrigLoc;
51 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(Ctx, &Loc);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CoroutineStmtBuilder.h 29 SourceLocation Loc;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 49 SourceLocation Loc = Parent->getBeginLoc();
50 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugLoc.h 34 TrackingMDNodeRef Loc;
63 /// the conversion to \c DILocation, this doesn't require that \c Loc is of
66 explicit operator bool() const { return Loc; }
69 bool hasTrivialDestructor() const { return Loc.hasTrivialDestructor(); }
91 /// Walk up the scope chain of given debug loc and find line number info
99 MDNode *getAsMDNode() const { return Loc; }
105 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
106 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64TargetStreamer.cpp 43 SMLoc Loc) {
44 return ConstantPools->addEntry(Streamer, Expr, Size, Loc);
70 SMLoc Loc;
72 Loc,

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>