Lines Matching refs:ConstString
44 size_t GetIndexOfChildWithName(ConstString name) override;
82 static bool isStdTemplate(ConstString type_name, llvm::StringRef type) { in isStdTemplate()
90 static bool isUnorderedMap(ConstString type_name) { in isUnorderedMap()
112 node_sp->GetChildMemberWithName(ConstString("__value_"), true); in GetChildAtIndex()
114 node_sp->GetChildMemberWithName(ConstString("__hash_"), true); in GetChildAtIndex()
117 auto p1_sp = m_backend.GetChildAtNamePath({ConstString("__table_"), in GetChildAtIndex()
118 ConstString("__p1_")}); in GetChildAtIndex()
126 first_sp = p1_sp->GetChildMemberWithName(ConstString("__first_"), in GetChildAtIndex()
133 first_sp = p1_sp->GetChildMemberWithName(ConstString("__value_"), in GetChildAtIndex()
166 value_sp = node_sp->GetChildMemberWithName(ConstString("__value_"), true); in GetChildAtIndex()
167 hash_sp = node_sp->GetChildMemberWithName(ConstString("__hash_"), true); in GetChildAtIndex()
174 node_sp->GetChildMemberWithName(ConstString("__next_"), true).get(); in GetChildAtIndex()
202 m_backend.GetChildMemberWithName(ConstString("__table_"), true); in Update()
207 ConstString("__p2_"), true); in Update()
209 llvm::SmallVector<ConstString, 3> next_path; in Update()
214 ConstString("__first_"), true); in Update()
215 next_path.append({ConstString("__p1_"), ConstString("__first_"), in Update()
216 ConstString("__next_")}); in Update()
222 ConstString("__value_"), true); in Update()
223 next_path.append({ConstString("__p1_"), ConstString("__value_"), in Update()
224 ConstString("__next_")}); in Update()
252 GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName()