Home | History | Annotate | Download | only in lib

Lines Matching full:keep_funcs

422   // functions. keep_funcs keeps the names of these functions around
425 std::vector<std::string> keep_funcs;
426 keep_funcs.reserve(exportForEachCount + exportReduceCount*4);
429 keep_funcs.push_back(std::string(exportForEachNameList[i]) + ".expand");
431 auto keepFuncsPushBackIfPresent = [&keep_funcs](const char *Name) {
432 if (Name) keep_funcs.push_back(Name);
435 keep_funcs.push_back(std::string(exportReduceList[i].mAccumulatorName) + ".expand");
438 keep_funcs.push_back(exportReduceList[i].mCombinerName);
440 keep_funcs.push_back(nameReduceCombinerFromAccumulator(exportReduceList[i].mAccumulatorName));
445 for (auto &symbol_name : keep_funcs) {