Home | History | Annotate | Download | only in testing

Lines Matching refs:calltime

33 // Additionally you can bind the object at calltime by binding a pointer to
244 # calltime - TupleN<C1, .. CN>
250 const %(calltime)s& c) {
259 const %(calltime)s& c) {
267 # calltime - TupleN<A1, .. AN>
273 inline MutantFunctor<R, %(calltime)s>
275 MutantRunner<R, %(calltime)s>* t =
277 %(prebound)s, %(calltime)s>
279 return MutantFunctor<R, %(calltime)s>(t);
285 inline MutantFunctor<R, %(calltime)s>
287 MutantRunner<R, %(calltime)s>* t =
289 %(prebound)s, %(calltime)s>
291 return MutantFunctor<R, %(calltime)s>(t);
377 def GenerateDispatch(prebound, calltime):
378 print "\n// %d - %d" % (prebound, calltime)
381 Gen("typename C%", calltime)]),
383 "calltime": GenTuple("C%", calltime),
384 "args": Merge([GenAlpha("p.%", prebound), GenAlpha("c.%", calltime)]),
391 def GenerateCreateFunctor(prebound, calltime):
392 print "// %d - %d" % (prebound, calltime)
394 "calltime": GenTuple("A%", calltime),
396 "params": Merge([Gen("X%", prebound), Gen("A%", calltime)]),
400 Gen("typename A%", calltime),