Lines Matching refs:key
42 virtual void* operator[](const char* key) const = 0;
43 virtual void* operator[](const ResName key) const = 0;
47 virtual s32 GetIndex(const char* key) const = 0;
69 void* operator[](const char* key) const { return m_Dic[ key ]; }
70 void* operator[](const ResName key) const { return m_Dic[ key ]; }
74 s32 GetIndex(const char* key) const { return m_Dic.GetIndex( key ); }
120 void* operator[](const char* key) const
122 s32 idx = this->GetIndex(key);
127 void* operator[](const ResName key) const
129 s32 idx = this->GetIndex(key);
136 s32 GetIndex(const char* key) const;
137 s32 GetIndex(const ResName key) const in GetIndex() argument
139 if ( (! this->IsValid()) || (! key.IsValid()) ) { return -1; } in GetIndex()
140 return this->GetIndex(key.GetName()); in GetIndex()