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

/freebsd-13-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.h12288 void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h126 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
H A DExprEngine.h259 ProgramStateRef getInitialState(const LocationContext *InitLoc);
H A DProgramState.h504 ProgramStateRef getInitialState(const LocationContext *InitLoc);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp391 ProgramStateRef ProgramStateManager::getInitialState(const LocationContext *InitLoc) { argument
394 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.cpp407 StoreRef getInitialStore(const LocationContext *InitLoc) override {
409 if (const auto *FD = dyn_cast<FunctionDecl>(InitLoc->getDecl()))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp8251 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
8258 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
8259 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
8261 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
8265 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
8266 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
8273 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
8274 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
8276 SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
8281 buildVarDecl(SemaRef, InitLoc, StrideVTyp
[all...]
H A DSemaInit.cpp2080 SourceLocation InitLoc = Init ? Init->getBeginLoc() : IList->getEndLoc();
2088 CheckEmptyInitializable(BaseEntity, InitLoc);
2092 if (checkDestructorReference(Base.getType(), InitLoc, SemaRef)) {
2110 SourceLocation InitLoc = Init->getBeginLoc();
2134 if (checkDestructorReference(ET, InitLoc, SemaRef)) {
2183 if (checkDestructorReference(ET, InitLoc, SemaRef)) {
H A DSemaDeclCXX.cpp3917 SourceLocation InitLoc,
3948 : InitializationKind::CreateCopy(InitExpr->getBeginLoc(), InitLoc);
3960 Init = ActOnFinishFullExpr(Init.get(), InitLoc, /*DiscardedValue*/ false);
13144 SourceLocation InitLoc = Shadow->getLocation();
13164 InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second);
13166 auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc);
13168 Context, TInfo, VBase, InitLoc, Init.get(), InitLoc,
13181 Constructor->setBody(new (Context) CompoundStmt(InitLoc));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1169 SMLoc InitLoc = Lex.getLoc(); local
1186 Error(InitLoc, Twine("expected a list, got value of type '") +
1211 Error(InitLoc, Twine("expected second parameter to be an int, got "
1222 Error(InitLoc, Twine("expected int, bits, or string; got value of "
1232 Error(InitLoc, Twine("expected value of type '") +

Completed in 270 milliseconds