Home | History | Annotate | Download | only in Sema

Lines Matching refs:Semantic

1 //===--- SemaInit.cpp - Semantic Analysis for Initializers ----------------===//
10 // This file implements semantic analysis for initializers.
140 // Semantic checking for initializer lists.
143 /// @brief Semantic checking for initializer lists.
157 /// arguments, which contains the current "structured" (semantic)
159 /// are copying initializers as we map them over to the semantic
161 /// structure, we will have constructed a full semantic initializer
271 // semantic analysis and code generation.
5351 InitListExpr *Semantic = new (S.Context)
5354 Semantic->setSyntacticForm(ILE);
5355 Semantic->setType(Dest);
5356 Semantic->setInitializesStdInitializerList();
5357 CurInit = S.Owned(Semantic);