Searched refs:InitLoc (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h602 static InitializationKind CreateDirect(SourceLocation InitLoc, argument
606 InitLoc, LParenLoc, RParenLoc);
609 static InitializationKind CreateDirectList(SourceLocation InitLoc) { argument
610 return InitializationKind(IK_DirectList, IC_Normal, InitLoc, InitLoc,
611 InitLoc);
614 static InitializationKind CreateDirectList(SourceLocation InitLoc, argument
617 return InitializationKind(IK_DirectList, IC_Normal, InitLoc, LBraceLoc,
648 static InitializationKind CreateCopy(SourceLocation InitLoc, argument
653 InitLoc, EqualLo
657 CreateDefault(SourceLocation InitLoc) argument
662 CreateValue(SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc, bool isImplicit = false) argument
[all...]
H A DSema.h11829 void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSubEngine.h52 virtual ProgramStateRef getInitialState(const LocationContext *InitLoc) = 0;
H A DStore.h126 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
H A DExprEngine.h235 ProgramStateRef getInitialState(const LocationContext *InitLoc) override;
H A DProgramState.h497 ProgramStateRef getInitialState(const LocationContext *InitLoc);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp384 ProgramStateRef ProgramStateManager::getInitialState(const LocationContext *InitLoc) { argument
387 StoreMgr->getInitialStore(InitLoc),
H A DExprEngine.cpp232 ProgramStateRef ExprEngine::getInitialState(const LocationContext *InitLoc) { argument
233 ProgramStateRef state = StateMgr.getInitialState(InitLoc);
234 const Decl *D = InitLoc->getDecl();
253 const MemRegion *R = state->getRegion(PD, InitLoc);
279 const MemRegion *R = state->getRegion(SelfD, InitLoc);
294 const StackFrameContext *SFC = InitLoc->getStackFrame();
H A DRegionStore.cpp406 StoreRef getInitialStore(const LocationContext *InitLoc) override {
408 if (const auto *FD = dyn_cast<FunctionDecl>(InitLoc->getDecl()))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp7509 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
7516 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
7517 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
7519 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
7523 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
7524 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
7531 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
7532 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
7534 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
7539 buildVarDecl(SemaRef, InitLoc, StrideVTyp
[all...]
H A DSemaInit.cpp2063 SourceLocation InitLoc = Init ? Init->getBeginLoc() : IList->getEndLoc();
2071 CheckEmptyInitializable(BaseEntity, InitLoc);
2075 if (checkDestructorReference(Base.getType(), InitLoc, SemaRef)) {
2093 SourceLocation InitLoc = Init->getBeginLoc();
2117 if (checkDestructorReference(ET, InitLoc, SemaRef)) {
2166 if (checkDestructorReference(ET, InitLoc, SemaRef)) {
H A DSemaDeclCXX.cpp3895 SourceLocation InitLoc,
3926 : InitializationKind::CreateCopy(InitExpr->getBeginLoc(), InitLoc);
3938 Init = ActOnFinishFullExpr(Init.get(), InitLoc, /*DiscardedValue*/ false);
12848 SourceLocation InitLoc = Shadow->getLocation();
12868 InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second);
12870 auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc);
12872 Context, TInfo, VBase, InitLoc, Init.get(), InitLoc,
12885 Constructor->setBody(new (Context) CompoundStmt(InitLoc));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1179 SMLoc InitLoc = Lex.getLoc(); local
1190 Error(InitLoc, Twine("expected a list, got value of type '") +
1215 Error(InitLoc, Twine("expected second parameter to be an int, got "
1226 Error(InitLoc, Twine("expected int, bits, or string; got value of "
1236 Error(InitLoc, Twine("expected value of type '") +

Completed in 338 milliseconds