| 248 | } |
| 249 | |
| 250 | char const * GlobalStringTable::Entry::Get(uint32_t i) const |
| 251 | { |
| 252 | if (i < StringPtrItems) { |
| 253 | return StringPtrs[i]; |
| 254 | } |
| 255 | else { |
| 256 | return Next->Get(i - StringPtrItems); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | const char * GlobalStringTable::Find(char const * s, uint64_t length) const |
| 261 | { |
no outgoing calls
no test coverage detected