Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/lookup.cpp
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/lookup.cpp
r2758 r2760 68 68 69 69 const HashEntry* Lookup::findEntry( const struct HashTable *table, 70 const UString&s )70 const Identifier &s ) 71 71 { 72 72 return findEntry( table, s.data(), s.size() ); … … 82 82 } 83 83 84 int Lookup::find(const struct HashTable *table, const UString&s)84 int Lookup::find(const struct HashTable *table, const Identifier &s) 85 85 { 86 86 return find(table, s.data(), s.size()); … … 97 97 } 98 98 99 unsigned int Lookup::hash(const UString&key)99 unsigned int Lookup::hash(const Identifier &key) 100 100 { 101 101 return hash(key.data(), key.size());
Note:
See TracChangeset
for help on using the changeset viewer.