Lines Matching refs:s
191 void* operator[](const char* s) const
194 if (this->IsValid() && s)
196 ResDicPatriciaData::ResDicNodeData* x = Get(s, std::strlen(s));
208 void* operator()(const char* s, size_t len) const in operator()
211 NW_NULL_ASSERT(s); in operator()
214 ResDicPatriciaData::ResDicNodeData* x = Get(s, len); in operator()
242 s32 GetIndex(const char* s) const in GetIndex() argument
245 if (IsValid() && s) in GetIndex()
247 size_t len = std::strlen(s); in GetIndex()
248 ResDicPatriciaData::ResDicNodeData* x = Get(s, len); in GetIndex()
300 ResDicPatriciaData::ResDicNodeData* Get(const char* s, size_t len) const;