Searched refs:getLocation (Results 101 - 125 of 278) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp201 bool HasTag = Pred->getLocation().getTag();
222 bool HasTag = Pred->getLocation().getTag();
H A DBugReporter.cpp284 ProgramPoint P = N->getLocation();
351 if (X->getLocation() != Y->getLocation())
565 if (!(*I)->getLocation().isValid() ||
566 !(*I)->getLocation().asLocation().isValid()) {
1030 Optional<StmtPoint> SP = N->getLocation().getAs<StmtPoint>();
1121 ProgramPoint P = C.getCurrentNode()->getLocation();
1177 PrevLoc = Call->getLocation();
1258 addEdgeToPath(C.getActivePath(), PrevLoc, p->getLocation());
1299 addEdgeToPath(C.getActivePath(), PrevLoc, PE->getLocation());
2338 PathSensitiveBugReport::getLocation() const { function in class:PathSensitiveBugReport
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUsingDeclarationsSorter.cpp154 auto Begin = (*UsingDeclarations)[I].Line->First->Tok.getLocation();
157 SortedUsingDeclarations[I].Line->First->Tok.getLocation();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DProgramPoint.cpp105 printSourceLocationAsJson(Out, PC.getLocation(), SM);
114 printSourceLocationAsJson(Out, PC.getLocation(), SM);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp478 Diag(Decl->getLocation(), diag::err_section_conflict)
480 Diag(OtherDecl->getLocation(), diag::note_declared_at)
484 Diag(A->getLocation(), diag::note_pragma_entered_here);
487 Diag(A->getLocation(), diag::note_pragma_entered_here);
557 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
562 << Name << SourceRange(IdTok.getLocation());
569 << Name << SourceRange(IdTok.getLocation());
577 VD->addAttr(UnusedAttr::CreateImplicit(Context, IdTok.getLocation(),
H A DSemaStmt.cpp97 Diag(decl->getLocation(), diag::err_non_variable_decl_in_for);
407 Diag(D->getLocation(), diag::ext_mixed_decls_code);
522 Diag(TheDecl->getLocation(), diag::note_previous_definition);
689 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
700 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
1736 S.Diag(LastDRE->getLocation(), diag::warn_redundant_loop_iteration)
1738 S.Diag(LoopDRE->getLocation(), diag::note_loop_iteration_here)
1780 Diag(DI->getLocation(), diag::err_non_local_variable_decl_in_for);
1914 return StmtError(Diag((*DS->decl_begin())->getLocation(),
1926 return StmtError(Diag(D->getLocation(),
[all...]
H A DSemaTemplateDeduction.cpp443 S.Context.NullPtrTy, NTTP->getLocation()),
1785 if (!S.isCompleteType(Info.getLocation(), Arg))
1881 /*IsCtorOrDtor=*/false, Info.getLocation());
1885 /*IsCtorOrDtor=*/false, Info.getLocation());
2538 S.getTrivialTemplateArgumentLoc(Arg, QualType(), Info.getLocation());
2542 Param, ArgLoc, Template, Template->getLocation(),
2567 S.Diag(Param->getLocation(),
2587 Sema::InstantiatingTemplate Inst(S, Template->getLocation(), Template,
2591 S.SubstType(NTTP->getType(), Args, NTTP->getLocation(),
2595 Sema::InstantiatingTemplate Inst(S, Template->getLocation(), Templat
[all...]
H A DSemaExprObjC.cpp161 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return)
208 S.Diag(Decl->getLocation(), diag::note_forward_class);
849 Diag(Method->parameters()[0]->getLocation(),
860 Diag(Method->parameters()[1]->getLocation(),
964 Diag(Method->parameters()[0]->getLocation(),
1001 Diag(Method->parameters()[1]->getLocation(),
1014 Diag(Method->parameters()[2]->getLocation(),
1138 S.Diag(Method->getLocation(), diag::note_method_declared_at)
1141 S.Diag(MatchingMethodDecl->getLocation(), diag::note_method_declared_at)
1232 Diag(Method->getLocation(), dia
[all...]
H A DSemaCXXScopeSpec.cpp602 Diag(ND->getLocation(), diag::note_declared_at);
611 Diag(ND->getLocation(), diag::note_entity_declared_at)
693 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
695 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
703 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
820 Diag(ND->getLocation(), diag::note_entity_declared_at)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp200 SM.getSpellingLineNumber(token.getLocation(), &invalid);
211 unsigned start = SM.getSpellingColumnNumber(token.getLocation(), &invalid);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCxxModuleHandler.cpp273 new_class_template->getTemplatedDecl()->getLocation(),
274 new_class_template->getLocation(), new_class_template, imported_args,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp428 MoveToLine(MacroNameTok.getLocation());
600 if (!MoveToLine(Tok.getLocation()))
605 unsigned ColNo = SM.getExpansionColumnNumber(Tok.getLocation());
672 Callbacks->MoveToLine(PragmaTok.getLocation());
725 Callbacks->MoveToLine(Tok.getLocation());
744 SourceLocation StartLoc = Tok.getLocation();
917 if (Tok.is(tok::eof) || !Tok.getLocation().isFileID())
920 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp94 return T.getLocation();
195 SourceLocation L = D->getLocation();
209 SourceLocation L = E->getLocation();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h143 /// getLocation - Returns the edge associated with the given node.
144 ProgramPoint getLocation() const { return Location; } function in class:clang::ento::ExplodedNode
147 return getLocation().getLocationContext();
151 return getLocation().getStackFrame();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DLookup.cpp163 SM.getSpellingLoc(Res->getLocation()), UseLoc))
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h173 virtual PathDiagnosticLocation getLocation() const = 0;
263 PathDiagnosticLocation getLocation() const override {
273 return getLocation();
426 PathDiagnosticLocation getLocation() const override;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp75 reportGlobalToASan(GV, D.getLocation(), OS.str(), D.getType(), IsDynInit,
H A DCGCXXABI.cpp27 Diags.Report(CGF.getContext().getFullLoc(CGF.CurCodeDecl->getLocation()),
128 CGM.getContext(), nullptr, MD->getLocation(),
H A DCGDeclCXX.cpp210 &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(),
243 ty, FnName.str(), FI, VD.getLocation());
292 CGM.Error(D.getLocation(),
467 D->getLocation());
649 FunctionArgList(), D->getLocation(),
771 FTy, "__cxx_global_array_dtor", FI, VD->getLocation());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h94 SourceLocation getLocation() const { return Loc; } function in class:clang::ParsedTemplateArgument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp152 Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM);
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMT.cpp36 FullSourceLoc diagLoc = I->getLocation();
65 FullSourceLoc diagLoc = I->getLocation();
136 if (Info.getLocation().isValid())
442 ARCMTMacroLocs.push_back(MacroNameTok.getLocation());
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DTarget.cpp110 return {isec, isec->template getLocation<ELFT>(loc - isecLoc) + ": "};
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DPathDiagnostic.h414 virtual PathDiagnosticLocation getLocation() const = 0;
485 PathDiagnosticLocation getLocation() const override { return Pos; }
566 PathDiagnosticLocation getLocation() const override { return callEnter; }
637 PathDiagnosticLocation getLocation() const override {
784 Loc = EndPiece->getLocation();
828 PathDiagnosticLocation getLocation() const { function in class:clang::ento::PathDiagnostic
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp141 reportPiece(WarnID, PD->getLocation().asLocation(),
150 reportPiece(NoteID, Piece->getLocation().asLocation(),
163 reportPiece(NoteID, Piece->getLocation().asLocation(),
307 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
699 PresumedLoc Loc = Ctx->getSourceManager().getPresumedLoc(D->getLocation());
746 SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation();

Completed in 503 milliseconds

1234567891011>>