| 103 | } |
| 104 | |
| 105 | bool DescriptorDatabase::FindAllFileNames(std::vector<std::string>* output) { |
| 106 | for (const auto& it : _index.files()) { |
| 107 | output->push_back(it.file_name()); |
| 108 | } |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | std::vector<std::string> DescriptorDatabase::getAllSymbolNames() const { |
| 113 | std::vector<std::string> output; |