Home | History | Annotate | Download | only in testing

Lines Matching refs:mutant

23 // Mutant supports both pre-bound arguments (like Task) and call-time
120 MUTANT = """\
131 // Mutant holds pre-bound arguments (like Task). Like Callback
136 class Mutant : public MutantRunner<R, Params> {
138 Mutant(T* obj, Method method, const PreBound& pb)
169 // MutantLateBind is like Mutant, but you bind a pointer to a pointer
277 new Mutant<R, T, R (U::*)(%(params)s),
405 mutant = FixCode(CREATE_METHOD_FUNCTOR_TEMPLATE % args)
406 print mutant
413 mutant2 = mutant.replace("CreateFunctor(T* obj,", "CreateFunctor(T** obj,")
414 mutant2 = mutant2.replace("new Mutant", "new MutantLateObjectBind")
436 stdcall2 = stdcall2.replace("new Mutant", "new MutantLateObjectBind")
448 print MUTANT