Lines Matching refs:Name
135 bool RegistryKeyImpl::HasValue(const std::wstring& Name) const in HasValue()
140 StringList::iterator iter = std::find(names->begin(), iter_end, Name); in HasValue()
147 CompareNamesCaseInsensitive(const std::wstring& Name) : in CompareNamesCaseInsensitive()
148 name_(Name) in CompareNamesCaseInsensitive()
168 bool RegistryKeyImpl::HasSubKey(const std::wstring& Name) const in HasSubKey()
173 …ingList::iterator iter = std::find_if(names->begin(), iter_end, CompareNamesCaseInsensitive(Name)); in HasSubKey()
205 void RegistryKeyImpl::CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name) in CopyValue() argument
207 assert(RegistryKey->HasValue(Name)); in CopyValue()
209 SetValue((const RegistryValue&)(RegistryKey->GetValue(Name))); in CopyValue()
211 SetValue(RegistryKey->GetValue(Name)); in CopyValue()
213 assert(HasValue(Name)); in CopyValue()
229 void RegistryKeyImpl::CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name, const std… in CopyValue() argument
231 assert(RegistryKey->HasValue(Name)); in CopyValue()
233 RegistryValue RegVal = RegistryKey->GetValue(Name); in CopyValue()