Lines Matching refs:initStyle
1967 CXXNewExpr::InitializationStyle initStyle; in BuildCXXNew() local
1970 initStyle = CXXNewExpr::CallInit; in BuildCXXNew()
1972 initStyle = CXXNewExpr::ListInit; in BuildCXXNew()
1977 initStyle = CXXNewExpr::NoInit; in BuildCXXNew()
1982 assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init"); in BuildCXXNew()
1993 = initStyle == CXXNewExpr::NoInit in BuildCXXNew()
1998 : initStyle == CXXNewExpr::ListInit in BuildCXXNew()
2024 bool Braced = (initStyle == CXXNewExpr::ListInit); in BuildCXXNew()
2030 if (initStyle == CXXNewExpr::NoInit || Inits.empty()) in BuildCXXNew()
2346 if (ArraySize && !isLegalArrayNewInitializer(initStyle, Initializer)) { in BuildCXXNew()
2418 PlacementArgs, TypeIdParens, ArraySize, initStyle, in BuildCXXNew()