| 141 | } |
| 142 | |
| 143 | SimFieldDictionary::Entry *SimFieldDictionary::findDynamicField(const String &fieldName) const |
| 144 | { |
| 145 | U32 bucket = getHashValue( fieldName ); |
| 146 | |
| 147 | for( Entry *walk = mHashTable[bucket]; walk; walk = walk->next ) |
| 148 | { |
| 149 | if( fieldName.equal(walk->slotName, String::NoCase) ) |
| 150 | return walk; |
| 151 | } |
| 152 | |
| 153 | return NULL; |
| 154 | } |
| 155 | |
| 156 | SimFieldDictionary::Entry *SimFieldDictionary::findDynamicField( StringTableEntry fieldName) const |
| 157 | { |
no test coverage detected