bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, AtomicString& value)
{
    return getStringType(dictionary, key, value);
}
Exemplo n.º 2
0
bool Dictionary::get(const String& key, AtomicString& value) const
{
    return getStringType(key, value);
}
Exemplo n.º 3
0
CORE_EXPORT bool DictionaryHelper::get(const Dictionary& dictionary,
                                       const StringView& key,
                                       String& value) {
  return getStringType(dictionary, key, value);
}