Lines Matching refs:s
189 void* operator[](const char* s) const
192 if (this->IsValid() && s)
194 ResDicPatriciaData::ResDicNodeData* x = Get(s, std::strlen(s));
206 void* operator()(const char* s, size_t len) const in operator()
209 NW_NULL_ASSERT(s); in operator()
212 ResDicPatriciaData::ResDicNodeData* x = Get(s, len); in operator()
240 s32 GetIndex(const char* s) const in GetIndex() argument
243 if (IsValid() && s) in GetIndex()
245 size_t len = std::strlen(s); in GetIndex()
246 ResDicPatriciaData::ResDicNodeData* x = Get(s, len); in GetIndex()
298 ResDicPatriciaData::ResDicNodeData* Get(const char* s, size_t len) const;