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

/external/clang/include/clang/Sema/
H A DInitialization.h490 static InitializationKind CreateDirect(SourceLocation InitLoc, argument
494 InitLoc, LParenLoc, RParenLoc);
497 static InitializationKind CreateDirectList(SourceLocation InitLoc) { argument
499 InitLoc, InitLoc, InitLoc);
529 static InitializationKind CreateCopy(SourceLocation InitLoc, argument
534 InitLoc, EqualLoc, EqualLoc);
538 static InitializationKind CreateDefault(SourceLocation InitLoc) { argument
539 return InitializationKind(IK_Default, IC_Normal, InitLoc, InitLo
543 CreateValue(SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc, bool isImplicit = false) argument
[all...]
H A DSema.h9471 void CheckBitFieldInitialization(SourceLocation InitLoc, FieldDecl *Field,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSubEngine.h48 virtual ProgramStateRef getInitialState(const LocationContext *InitLoc) = 0;
H A DStore.h81 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
H A DExprEngine.h157 ProgramStateRef getInitialState(const LocationContext *InitLoc) override;
H A DProgramState.h486 ProgramStateRef getInitialState(const LocationContext *InitLoc);
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp5111 SourceLocation InitLoc = IterSpaces[0].InitSrcRange.getBegin();
5118 VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
5119 LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
5121 LBDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
5125 VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
5126 UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
5134 VarDecl *ILDecl = buildVarDecl(SemaRef, InitLoc, Int32Ty, ".omp.is_last");
5135 IL = buildDeclRefExpr(SemaRef, ILDecl, Int32Ty, InitLoc);
5137 ILDecl, SemaRef.ActOnIntegerConstant(InitLoc, 0).get(),
5142 buildVarDecl(SemaRef, InitLoc, StrideVTyp
[all...]
H A DSemaDeclCXX.cpp2693 SourceLocation InitLoc,
2720 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
2732 Init = ActOnFinishFullExpr(Init.get(), InitLoc);
9352 SourceLocation InitLoc = Shadow->getLocation(); local
9377 InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second);
9379 auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc);
9381 Context, TInfo, VBase, InitLoc, Init.get(), InitLoc,
9401 Constructor->setBody(new (Context) CompoundStmt(InitLoc));
2692 ActOnFinishCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc, Expr *InitExpr) argument
H A DSemaInit.cpp1793 SourceLocation InitLoc = Init ? Init->getLocStart() : IList->getLocEnd(); local
1807 CheckEmptyInitializable(BaseEntity, InitLoc);
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp364 ProgramStateRef ProgramStateManager::getInitialState(const LocationContext *InitLoc) { argument
367 StoreMgr->getInitialStore(InitLoc),
H A DExprEngine.cpp105 ProgramStateRef ExprEngine::getInitialState(const LocationContext *InitLoc) { argument
106 ProgramStateRef state = StateMgr.getInitialState(InitLoc);
107 const Decl *D = InitLoc->getDecl();
127 const MemRegion *R = state->getRegion(PD, InitLoc);
153 const MemRegion *R = state->getRegion(SelfD, InitLoc);
168 const StackFrameContext *SFC = InitLoc->getCurrentStackFrame();
H A DRegionStore.cpp373 StoreRef getInitialStore(const LocationContext *InitLoc) override {

Completed in 361 milliseconds