Searched defs:Loc (Results 1 - 25 of 330) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h22 SourceLocation Loc; member in struct:__ubsan::DynamicTypeCacheMissData
/external/clang/include/clang/AST/
H A DCommentBriefParser.h39 SourceLocation Loc = Tok.getLocation(); local
41 return Loc;
H A DCommentParser.h48 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { argument
49 return Diags.Report(Loc, DiagID);
H A DLambdaCapture.h40 SourceLocation Loc; member in class:clang::LambdaCapture
49 /// \param Loc The source location associated with this capture.
62 LambdaCapture(SourceLocation Loc, bool Implicit, LambdaCaptureKind Kind,
117 SourceLocation getLocation() const { return Loc; }
H A DCommentSema.h64 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { argument
65 return Diags.Report(Loc, DiagID);
159 VerbatimBlockComment *actOnVerbatimBlockStart(SourceLocation Loc,
162 VerbatimBlockLineComment *actOnVerbatimBlockLine(SourceLocation Loc,
/external/clang/include/clang/Basic/
H A DPrettyStackTrace.h29 SourceLocation Loc; member in class:clang::PrettyStackTraceLoc
33 : SM(sm), Loc(L), Message(Msg) {}
/external/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h34 SourceLocation Loc; member in class:clang::PrettyDeclStackTraceEntry
38 PrettyDeclStackTraceEntry(Sema &S, Decl *D, SourceLocation Loc, argument
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
H A DWeak.h32 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc) argument
33 : alias(Alias), loc(Loc), used(false) {}
/external/clang/lib/ARCMigrate/
H A DTransARCAssign.cpp48 SourceLocation Loc = OrigLoc; local
52 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(Ctx, &Loc);
/external/clang/lib/Basic/
H A DSanitizerBlacklist.cpp41 bool SanitizerBlacklist::isBlacklistedLocation(SourceLocation Loc, argument
43 return !Loc.isInvalid() &&
44 isBlacklistedFile(SM.getFilename(SM.getFileLoc(Loc)), Category);
/external/clang/lib/Sema/
H A DDelayedDiagnostic.cpp24 SourceLocation Loc,
42 DD.Loc = Loc;
23 makeAvailability(Sema::AvailabilityDiagnostic AD, SourceLocation Loc, const NamedDecl *D, const ObjCInterfaceDecl *UnknownObjCClass, const ObjCPropertyDecl *ObjCProperty, StringRef Msg, bool ObjCPropertyAccess) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp91 StringRef CheckerContext::getMacroNameOrSpelling(SourceLocation &Loc) { argument
92 if (Loc.isMacroID())
93 return Lexer::getImmediateMacroName(Loc, getSourceManager(),
96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
/external/clang/test/Analysis/
H A Dregion-store.cpp4 class Loc { class
9 Loc l;
10 void setLoc(Loc L) {
24 int radar13445834(Derived *Builder, Loc l) {
/external/clang/tools/libclang/
H A DCXSourceLocation.h31 SourceLocation Loc) {
32 if (Loc.isInvalid())
36 Loc.getRawEncoding() };
42 SourceLocation Loc) {
45 Loc);
30 translateSourceLocation(const SourceManager &SM, const LangOptions &LangOpts, SourceLocation Loc) argument
41 translateSourceLocation(ASTContext &Context, SourceLocation Loc) argument
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLoc.cpp30 for (unsigned char Loc : E.Loc) {
31 OS << format("%2.2x ", Loc);
42 LocationList &Loc = Locations.back(); local
43 Loc.Offset = Offset;
70 E.Loc.append(str.begin(), str.end());
71 Loc.Entries.push_back(std::move(E));
82 LocationList &Loc = Locations.back(); local
83 Loc.Offset = Offset;
103 E.Loc
[all...]
/external/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp41 LineLocation Loc = I.first; local
43 if (Loc.Discriminator == 0)
44 OS << Loc.LineOffset << ": ";
46 OS << Loc.LineOffset << "." << Loc.Discriminator << ": ";
83 LineLocation Loc = I.first; local
85 encodeULEB128(Loc.LineOffset, OS);
86 encodeULEB128(Loc.Discriminator, OS);
/external/llvm/lib/TableGen/
H A DError.cpp25 static void PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind, argument
33 if (Loc.empty())
34 Loc = NullLoc;
35 SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
36 for (unsigned i = 1; i < Loc.size(); ++i)
37 SrcMgr.PrintMessage(Loc[i], SourceMgr::DK_Note,
45 void PrintWarning(const char *Loc, const Twine &Msg) { argument
46 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg);
57 void PrintError(const char *Loc, const Twine &Msg) { argument
58 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMg
[all...]
/external/clang/lib/AST/
H A DSelectorLocationsKind.cpp57 SourceLocation Loc = Arg->getLocStart(); local
58 if (Loc.isInvalid())
59 return Loc;
61 return Loc.getLocWithOffset(-1);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp48 SourceLocation Loc = Parent->getLocStart(); local
49 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h29 SmallVector<unsigned char, 4> Loc; member in struct:llvm::DWARFDebugLoc::Entry
63 SmallVector<unsigned char, 4> Loc; member in struct:llvm::DWARFDebugLocDWO::Entry
/external/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h43 DebugLoc Loc; member in struct:llvm::JITEvent_EmittedFunctionDetails::LineStart
/external/llvm/include/llvm/IR/
H A DDebugLoc.h35 TrackingMDNodeRef Loc; member in class:llvm::DebugLoc
39 DebugLoc(DebugLoc &&X) : Loc(std::move(X.Loc)) {}
40 DebugLoc(const DebugLoc &X) : Loc(X.Loc) {}
42 Loc = std::move(X.Loc);
46 Loc = X.Loc;
74 /// the conversion to \c MDLocation, this doesn't require that \c Loc i
[all...]
/external/llvm/include/llvm/TableGen/
H A DSetTheory.h77 ArrayRef<SMLoc> Loc) =0;
124 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
128 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) { argument
130 evaluate(*begin++, Elts, Loc);
/external/llvm/lib/Analysis/
H A DLibCallAliasAnalysis.cpp51 const Location &Loc) {
73 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
94 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
125 const Location &Loc) {
133 MRInfo = ModRefResult(MRInfo & AnalyzeLibCallDetails(FI, CS, Loc));
140 return (ModRefResult)(MRInfo | AliasAnalysis::getModRefInfo(CS, Loc));
49 AnalyzeLibCallDetails(const LibCallFunctionInfo *FI, ImmutableCallSite CS, const Location &Loc) argument
124 getModRefInfo(ImmutableCallSite CS, const Location &Loc) argument
/external/clang/include/clang/Lex/
H A DMultipleIncludeOpt.h79 void SetDefinedMacro(IdentifierInfo *M, SourceLocation Loc) { argument
81 DefinedLoc = Loc;
123 void EnterTopLevelIfndef(const IdentifierInfo *M, SourceLocation Loc) { argument
139 MacroLoc = Loc;

Completed in 2053 milliseconds

1234567891011>>