| 238 | } |
| 239 | |
| 240 | uint32_t GlobalStringTable::Entry::Count() const |
| 241 | { |
| 242 | if (Next) { |
| 243 | return StringPtrItems + Next->Count(); |
| 244 | } |
| 245 | else { |
| 246 | return StringPtrItems; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | char const * GlobalStringTable::Entry::Get(uint32_t i) const |
| 251 | { |
no outgoing calls
no test coverage detected