| 110 | } |
| 111 | |
| 112 | std::vector<std::string> DescriptorDatabase::getAllSymbolNames() const { |
| 113 | std::vector<std::string> output; |
| 114 | output.reserve(_index.symbols_size()); |
| 115 | for (const auto& symbol : _index.symbols()) { |
| 116 | output.push_back(symbol.full_name()); |
| 117 | } |
| 118 | return output; |
| 119 | } |
| 120 | |
| 121 | size_t DescriptorDatabase::getSymbolsSize() const { |
| 122 | return _index.symbols_size(); |