| 3714 | } |
| 3715 | |
| 3716 | void SelectFunctionsForHash(unsigned funcNameHash, unsigned scope) |
| 3717 | { |
| 3718 | HashMap<FunctionInfo*>::Node *curr = funcMap.first(funcNameHash); |
| 3719 | while(curr) |
| 3720 | { |
| 3721 | FunctionInfo *func = curr->value; |
| 3722 | if(func->visible && !((func->address & 0x80000000) && (func->address != -1)) && func->funcType && func->vTopSize >= scope) |
| 3723 | bestFuncList.push_back(func); |
| 3724 | curr = funcMap.next(curr); |
| 3725 | } |
| 3726 | } |
| 3727 | |
| 3728 | unsigned SelectBestFunction(unsigned count, unsigned callArgCount, unsigned int &minRating, TypeInfo* forcedParentType) |
| 3729 | { |
no test coverage detected