Lines Matching refs:Fun
194 new (&I.Fun) FunctionTypeInfo; in getFunction()
195 I.Fun.hasPrototype = hasProto; in getFunction()
196 I.Fun.isVariadic = EllipsisLoc.isValid(); in getFunction()
197 I.Fun.isAmbiguous = isAmbiguous; in getFunction()
198 I.Fun.LParenLoc = LParenLoc; in getFunction()
199 I.Fun.EllipsisLoc = EllipsisLoc; in getFunction()
200 I.Fun.RParenLoc = RParenLoc; in getFunction()
201 I.Fun.DeleteParams = false; in getFunction()
202 I.Fun.NumParams = NumParams; in getFunction()
203 I.Fun.Params = nullptr; in getFunction()
204 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef; in getFunction()
205 I.Fun.RefQualifierLoc = RefQualifierLoc; in getFunction()
206 I.Fun.MutableLoc = MutableLoc; in getFunction()
207 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
208 I.Fun.ExceptionSpecLocBeg = ESpecRange.getBegin(); in getFunction()
209 I.Fun.ExceptionSpecLocEnd = ESpecRange.getEnd(); in getFunction()
210 I.Fun.NumExceptionsOrDecls = 0; in getFunction()
211 I.Fun.Exceptions = nullptr; in getFunction()
212 I.Fun.NoexceptExpr = nullptr; in getFunction()
213 I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() || in getFunction()
215 I.Fun.TrailingReturnType = TrailingReturnType.get(); in getFunction()
216 I.Fun.TrailingReturnTypeLoc = TrailingReturnTypeLoc; in getFunction()
217 I.Fun.MethodQualifiers = nullptr; in getFunction()
218 I.Fun.QualAttrFactory = nullptr; in getFunction()
223 I.Fun.MethodQualifiers = new DeclSpec(attrs.getPool().getFactory()); in getFunction()
226 I.Fun.MethodQualifiers->SetTypeQual(TypeQual, SL); in getFunction()
228 I.Fun.MethodQualifiers->getAttributes().takeAllFrom(attrs); in getFunction()
229 I.Fun.MethodQualifiers->getAttributePool().takeAllFrom(attrs.getPool()); in getFunction()
232 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
242 I.Fun.Params = TheDeclarator.InlineParams; in getFunction()
243 new (I.Fun.Params) ParamInfo[NumParams]; in getFunction()
244 I.Fun.DeleteParams = false; in getFunction()
247 I.Fun.Params = new DeclaratorChunk::ParamInfo[NumParams]; in getFunction()
248 I.Fun.DeleteParams = true; in getFunction()
251 I.Fun.Params[i] = std::move(Params[i]); in getFunction()
260 I.Fun.NumExceptionsOrDecls = NumExceptions; in getFunction()
261 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; in getFunction()
263 I.Fun.Exceptions[i].Ty = Exceptions[i]; in getFunction()
264 I.Fun.Exceptions[i].Range = ExceptionRanges[i]; in getFunction()
272 I.Fun.NoexceptExpr = NoexceptExpr; in getFunction()
276 I.Fun.ExceptionSpecTokens = ExceptionSpecTokens; in getFunction()
283 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
285 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
287 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()