| 171 | } |
| 172 | |
| 173 | void |
| 174 | DefaultOutputMgr::RandomOutputFuncDefs() |
| 175 | { |
| 176 | const vector<Function*> &funcs = get_all_functions(); |
| 177 | size_t size = outs.size(); |
| 178 | vector<Function*>::const_iterator i; |
| 179 | for (i = funcs.begin(); i != funcs.end(); ++i) { |
| 180 | if ((*i)->is_builtin) |
| 181 | continue; |
| 182 | int index = pure_rnd_upto(size); |
| 183 | (*i)->Output(*outs[index]); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | void |
| 188 | DefaultOutputMgr::RandomOutputDefs() |
nothing calls this directly
no test coverage detected