Lines Matching refs:Fun

184   I.Fun.hasPrototype            = hasProto;  in getFunction()
185 I.Fun.isVariadic = EllipsisLoc.isValid(); in getFunction()
186 I.Fun.isAmbiguous = isAmbiguous; in getFunction()
187 I.Fun.LParenLoc = LParenLoc.getRawEncoding(); in getFunction()
188 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding(); in getFunction()
189 I.Fun.RParenLoc = RParenLoc.getRawEncoding(); in getFunction()
190 I.Fun.DeleteParams = false; in getFunction()
191 I.Fun.NumParams = NumParams; in getFunction()
192 I.Fun.Params = nullptr; in getFunction()
193 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef; in getFunction()
194 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding(); in getFunction()
195 I.Fun.MutableLoc = MutableLoc.getRawEncoding(); in getFunction()
196 I.Fun.ExceptionSpecType = ESpecType; in getFunction()
197 I.Fun.ExceptionSpecLocBeg = ESpecRange.getBegin().getRawEncoding(); in getFunction()
198 I.Fun.ExceptionSpecLocEnd = ESpecRange.getEnd().getRawEncoding(); in getFunction()
199 I.Fun.NumExceptionsOrDecls = 0; in getFunction()
200 I.Fun.Exceptions = nullptr; in getFunction()
201 I.Fun.NoexceptExpr = nullptr; in getFunction()
202 I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() || in getFunction()
204 I.Fun.TrailingReturnType = TrailingReturnType.get(); in getFunction()
205 I.Fun.MethodQualifiers = nullptr; in getFunction()
206 I.Fun.QualAttrFactory = nullptr; in getFunction()
211 I.Fun.MethodQualifiers = new DeclSpec(attrs.getPool().getFactory()); in getFunction()
214 I.Fun.MethodQualifiers->SetTypeQual(TypeQual, SL); in getFunction()
216 I.Fun.MethodQualifiers->getAttributes().takeAllFrom(attrs); in getFunction()
217 I.Fun.MethodQualifiers->getAttributePool().takeAllFrom(attrs.getPool()); in getFunction()
220 assert(I.Fun.ExceptionSpecType == ESpecType && "bitfield overflow"); in getFunction()
230 I.Fun.Params = TheDeclarator.InlineParams; in getFunction()
231 new (I.Fun.Params) ParamInfo[NumParams]; in getFunction()
232 I.Fun.DeleteParams = false; in getFunction()
235 I.Fun.Params = new DeclaratorChunk::ParamInfo[NumParams]; in getFunction()
236 I.Fun.DeleteParams = true; in getFunction()
239 I.Fun.Params[i] = std::move(Params[i]); in getFunction()
248 I.Fun.NumExceptionsOrDecls = NumExceptions; in getFunction()
249 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; in getFunction()
251 I.Fun.Exceptions[i].Ty = Exceptions[i]; in getFunction()
252 I.Fun.Exceptions[i].Range = ExceptionRanges[i]; in getFunction()
260 I.Fun.NoexceptExpr = NoexceptExpr; in getFunction()
264 I.Fun.ExceptionSpecTokens = ExceptionSpecTokens; in getFunction()
271 I.Fun.NumExceptionsOrDecls = DeclsInPrototype.size(); in getFunction()
273 I.Fun.DeclsInPrototype = new NamedDecl *[DeclsInPrototype.size()]; in getFunction()
275 I.Fun.DeclsInPrototype[J] = DeclsInPrototype[J]; in getFunction()