Lines Matching refs:key
44 virtual void* operator[](const char* key) const = 0;
45 virtual void* operator[](const ResName key) const = 0;
49 virtual s32 GetIndex(const char* key) const = 0;
71 void* operator[](const char* key) const { return m_Dic[ key ]; }
72 void* operator[](const ResName key) const { return m_Dic[ key ]; }
76 s32 GetIndex(const char* key) const { return m_Dic.GetIndex( key ); }
122 void* operator[](const char* key) const
124 s32 idx = this->GetIndex(key);
129 void* operator[](const ResName key) const
131 s32 idx = this->GetIndex(key);
138 s32 GetIndex(const char* key) const;
139 s32 GetIndex(const ResName key) const in GetIndex() argument
141 if ( (! this->IsValid()) || (! key.IsValid()) ) { return -1; } in GetIndex()
142 return this->GetIndex(key.GetName()); in GetIndex()