Lines Matching refs:name
81 const char* name;
196 static void printHashes (const char* name, const EnumMapEntry* entries, int numEntries)
198 printf("%s:\n", name);
201 printf("0x%08x\t%s\n", deStringHash(entries[ndx].name), entries[ndx].name);
221 static inline int getEnumValue (const char* enumName, const EnumMapEntry* entries, int numEntries, const char* name)
223 deUint32 hash = deStringHash(name);
227 if (entries[ndx].hash == hash && deStringEqual(entries[ndx].name, name))
231 throw TestResultParseError(string("Could not map '") + name + "' to " + enumName);
401 const char* TestResultParser::getAttribute (const char* name)
403 if (!m_xmlParser.hasAttribute(name))
404 throw TestResultParseError(string("Missing attribute '") + name + "' in <" + m_xmlParser.getElementName() + ">");
406 return m_xmlParser.getAttribute(name);
513 section->name = getAttribute("Name");
522 number->name = getAttribute("Name");
538 imageSet->name = getAttribute("Name");
547 image->name = getAttribute("Name");
612 info->name = getAttribute("Name");
622 set->name = getAttribute("Name");
668 list->name = getAttribute("Name");
694 valueInfo->name = getAttribute("Name");