| 127 | } |
| 128 | |
| 129 | AnnotationSourceItem* AnnotationResTable::GetItem(int index){ |
| 130 | if (index < 0 || index >= (int)m_resourceTable.size()){ |
| 131 | assert(false); |
| 132 | } |
| 133 | return m_resourceTable[index]; |
| 134 | } |
| 135 | |
| 136 | const char* AnnotationResTable::format_to_string(const char *hex_str, int fmt) |
| 137 | { |
no test coverage detected