Lines Matching defs:key
37 const char key;
46 const char key;
56 const unsigned char key;
83 const Elf64_Word key;
92 const Elf32_Half key;
102 const Elf64_Half key;
368 const Elf64_Word key;
409 const Elf_Word key;
436 const Elf_Word key;
445 const Elf_Word key;
456 const Elf_Word key;
469 const Elf_Word key;
1235 template <typename T> static std::string str_##name( const T key ) \
1237 return format_assoc( name##_table, key ); \
1258 std::string static find_value_in_table( const T& table, const K& key )
1263 if ( table[i].key == key ) {
1274 static std::string format_assoc( const T& table, const K& key )
1276 std::string str = find_value_in_table( table, key );
1279 oss << str << " (0x" << std::hex << key << ")";
1288 static std::string format_assoc( const T& table, const char key )
1290 return format_assoc( table, (const int)key );