key 9 LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php foreach ($_POST as $key => $value) { key 10 LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php $values[] = "$key=$value"; key 13 LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php foreach ($_FILES as $key => $value) { key 24 LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo.php $values[] = $key . '=' . $file['name'] . ':' . $file['type'] . ':' . $content; key 9 LayoutTests/jquery/resources/test/data/headers.php foreach( $_SERVER as $key => $value ) { key 11 LayoutTests/jquery/resources/test/data/headers.php $key = str_replace( "_" , "-" , substr( $key , 0 , 5 ) == "HTTP_" ? substr( $key , 5 ) : $key ); key 12 LayoutTests/jquery/resources/test/data/headers.php $headers[ $key ] = $value; key 16 LayoutTests/jquery/resources/test/data/headers.php foreach( explode( "_" , $_GET[ "keys" ] ) as $key ) { key 17 LayoutTests/jquery/resources/test/data/headers.php echo "$key: " . @$headers[ strtoupper( $key ) ] . "\n"; key 3 LayoutTests/jquery/resources/test/data/params_html.php foreach( $_POST as $key=>$value ) key 4 LayoutTests/jquery/resources/test/data/params_html.php echo "<b id='$key'>$value</b>"; key 9 LayoutTests/jquery/resources/test/data/params_html.php foreach( $_GET as $key=>$value ) key 10 LayoutTests/jquery/resources/test/data/params_html.php echo "<b id='$key'>$value</b>"; key 119 Source/bindings/templates/interface.cpp bool namedSecurityCheck(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>) key 142 Source/bindings/templates/interface.h static bool namedSecurityCheckCustom(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType, v8::Local<v8::Value> data); key 172 Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp bool namedSecurityCheck(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>) key 51 Source/bindings/v8/DOMWrapperMap.h v8::Handle<v8::Object> newLocal(KeyType* key, v8::Isolate* isolate) key 53 Source/bindings/v8/DOMWrapperMap.h return m_map.get(key).newLocal(isolate); key 56 Source/bindings/v8/DOMWrapperMap.h bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, KeyType* key) key 58 Source/bindings/v8/DOMWrapperMap.h typename MapType::iterator it = m_map.find(key); key 65 Source/bindings/v8/DOMWrapperMap.h void setReference(const v8::Persistent<v8::Object>& parent, KeyType* key, v8::Isolate* isolate) key 67 Source/bindings/v8/DOMWrapperMap.h m_map.get(key).setReferenceFrom(parent, isolate); key 70 Source/bindings/v8/DOMWrapperMap.h bool containsKey(KeyType* key) key 72 Source/bindings/v8/DOMWrapperMap.h return m_map.find(key) != m_map.end(); key 75 Source/bindings/v8/DOMWrapperMap.h bool containsKeyAndValue(KeyType* key, v8::Handle<v8::Object> value) key 77 Source/bindings/v8/DOMWrapperMap.h typename MapType::iterator it = m_map.find(key); key 83 Source/bindings/v8/DOMWrapperMap.h void set(KeyType* key, v8::Handle<v8::Object> wrapper, const WrapperConfiguration& configuration) key 85 Source/bindings/v8/DOMWrapperMap.h ASSERT(static_cast<KeyType*>(toNative(wrapper)) == key); key 89 Source/bindings/v8/DOMWrapperMap.h typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>()); key 111 Source/bindings/v8/DOMWrapperMap.h void removeAndDispose(KeyType* key) key 113 Source/bindings/v8/DOMWrapperMap.h typename MapType::iterator it = m_map.find(key); key 129 Source/bindings/v8/DOMWrapperMap.h void* key = static_cast<void*>(toNative(data.GetValue())); key 130 Source/bindings/v8/DOMWrapperMap.h ASSERT(*data.GetParameter()->m_map.get(key).persistent() == data.GetValue()); key 131 Source/bindings/v8/DOMWrapperMap.h data.GetParameter()->removeAndDispose(key); key 98 Source/bindings/v8/Dictionary.cpp bool Dictionary::hasProperty(const String& key) const key 107 Source/bindings/v8/Dictionary.cpp v8::Handle<v8::String> v8Key = v8String(m_isolate, key); key 114 Source/bindings/v8/Dictionary.cpp bool Dictionary::getKey(const String& key, v8::Local<v8::Value>& value) const key 123 Source/bindings/v8/Dictionary.cpp v8::Handle<v8::String> v8Key = v8String(m_isolate, key); key 132 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, v8::Local<v8::Value>& value) const key 134 Source/bindings/v8/Dictionary.cpp return getKey(key, value); key 137 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, bool& value) const key 140 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 150 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, bool& value) const key 153 Source/bindings/v8/Dictionary.cpp get(key, value); key 157 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, int32_t& value) const key 160 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 170 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, double& value, bool& hasValue) const key 173 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) { key 186 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, double& value) const key 189 Source/bindings/v8/Dictionary.cpp return get(key, value, unused); key 192 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, double& value) const key 197 Source/bindings/v8/Dictionary.cpp if (!get(key, value, hasValue) && hasValue) { key 198 Source/bindings/v8/Dictionary.cpp context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "is not of type 'double'.")); key 205 Source/bindings/v8/Dictionary.cpp inline bool Dictionary::getStringType(const String& key, StringType& value) const key 208 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 216 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, String& value) const key 218 Source/bindings/v8/Dictionary.cpp return getStringType(key, value); key 221 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, AtomicString& value) const key 223 Source/bindings/v8/Dictionary.cpp return getStringType(key, value); key 226 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, String& value) const key 231 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 239 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, ScriptValue& value) const key 242 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 249 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, ScriptValue& value) const key 253 Source/bindings/v8/Dictionary.cpp get(key, value); key 257 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, unsigned short& value) const key 260 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 270 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, short& value) const key 273 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 283 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, unsigned& value) const key 286 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 296 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, unsigned long& value) const key 299 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 309 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, unsigned long long& value) const key 312 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 323 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<DOMWindow>& value) const key 326 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 335 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<Storage>& value) const key 338 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 345 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, MessagePortArray& value) const key 348 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 356 Source/bindings/v8/Dictionary.cpp value = toRefPtrNativeArray<MessagePort, V8MessagePort>(v8Value, key, m_isolate, &success); key 360 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, MessagePortArray& value) const key 365 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 368 Source/bindings/v8/Dictionary.cpp return get(key, value); key 371 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, HashSet<AtomicString>& value) const key 374 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 393 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, HashSet<AtomicString>& value) const key 398 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 405 Source/bindings/v8/Dictionary.cpp context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key)); key 409 Source/bindings/v8/Dictionary.cpp return get(key, value); key 412 Source/bindings/v8/Dictionary.cpp bool Dictionary::getWithUndefinedOrNullCheck(const String& key, String& value) const key 415 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) key 423 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const key 426 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 433 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<ArrayBufferView>& value) const key 436 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 443 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<MIDIPort>& value) const key 446 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 453 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<MediaKeyError>& value) const key 456 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 463 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<TrackBase>& value) const key 466 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 483 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionError>& value) const key 486 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 493 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResult>& value) const key 496 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 503 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<SpeechRecognitionResultList>& value) const key 506 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 513 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<Gamepad>& value) const key 516 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 523 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<MediaStream>& value) const key 526 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 533 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtr<EventTarget>& value) const key 536 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 558 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, Dictionary& value) const key 561 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 573 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, Dictionary& value) const key 578 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 582 Source/bindings/v8/Dictionary.cpp return get(key, value); key 587 Source/bindings/v8/Dictionary.cpp context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a Dictionary type.")); key 591 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, Vector<String>& value) const key 594 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 610 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, Vector<String>& value) const key 615 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 622 Source/bindings/v8/Dictionary.cpp context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key)); key 626 Source/bindings/v8/Dictionary.cpp return get(key, value); key 629 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, ArrayValue& value) const key 632 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 644 Source/bindings/v8/Dictionary.cpp bool Dictionary::convert(ConversionContext& context, const String& key, ArrayValue& value) const key 649 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 656 Source/bindings/v8/Dictionary.cpp context.throwTypeError(ExceptionMessages::notASequenceTypeProperty(key)); key 660 Source/bindings/v8/Dictionary.cpp return get(key, value); key 663 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<DOMError>& value) const key 666 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 673 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, OwnPtr<VoidCallback>& value) const key 676 Source/bindings/v8/Dictionary.cpp if (!getKey(key, v8Value)) key 699 Source/bindings/v8/Dictionary.cpp v8::Local<v8::String> key = properties->Get(i)->ToString(); key 700 Source/bindings/v8/Dictionary.cpp if (!options->Has(key)) key 703 Source/bindings/v8/Dictionary.cpp v8::Local<v8::Value> value = options->Get(key); key 704 Source/bindings/v8/Dictionary.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, key, false); key 726 Source/bindings/v8/Dictionary.cpp v8::Local<v8::String> key = properties->Get(i)->ToString(); key 727 Source/bindings/v8/Dictionary.cpp if (!options->Has(key)) key 729 Source/bindings/v8/Dictionary.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringKey, key, false); key 183 Source/bindings/v8/Dictionary.h bool getKey(const String& key, v8::Local<v8::Value>&) const; key 291 Source/bindings/v8/Dictionary.h template<typename T> bool Dictionary::convert(ConversionContext& context, const String& key, T& value) const key 296 Source/bindings/v8/Dictionary.h if (!getKey(key, v8Value)) key 306 Source/bindings/v8/Dictionary.h template<typename T> bool Dictionary::convert(ConversionContext& context, const String& key, Nullable<T>& value) const key 311 Source/bindings/v8/Dictionary.h if (!getKey(key, v8Value)) key 328 Source/bindings/v8/Dictionary.h template<template <typename> class PointerType, typename T> bool Dictionary::convert(ConversionContext& context, const String& key, PointerType<T>& value) const key 332 Source/bindings/v8/Dictionary.h if (!get(key, value)) key 339 Source/bindings/v8/Dictionary.h getKey(key, v8Value); key 343 Source/bindings/v8/Dictionary.h context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a " + context.typeName() + " type.")); key 76 Source/bindings/v8/IDBBindingUtilities.cpp static v8::Handle<v8::Value> toV8(const IDBKey* key, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) key 78 Source/bindings/v8/IDBBindingUtilities.cpp if (!key) { key 84 Source/bindings/v8/IDBBindingUtilities.cpp switch (key->type()) { key 90 Source/bindings/v8/IDBBindingUtilities.cpp return v8::Number::New(isolate, key->number()); key 92 Source/bindings/v8/IDBBindingUtilities.cpp return v8String(isolate, key->string()); key 94 Source/bindings/v8/IDBBindingUtilities.cpp return toV8(Uint8Array::create(reinterpret_cast<const unsigned char*>(key->binary()->data()), key->binary()->size()), creationContext, isolate); key 96 Source/bindings/v8/IDBBindingUtilities.cpp return v8::Date::New(isolate, key->date()); key 99 Source/bindings/v8/IDBBindingUtilities.cpp v8::Local<v8::Array> array = v8::Array::New(isolate, key->array().size()); key 100 Source/bindings/v8/IDBBindingUtilities.cpp for (size_t i = 0; i < key->array().size(); ++i) key 101 Source/bindings/v8/IDBBindingUtilities.cpp array->Set(i, toV8(key->array()[i].get(), creationContext, isolate)); key 153 Source/bindings/v8/IDBBindingUtilities.cpp return toV8(impl->key(), creationContext, isolate); key 158 Source/bindings/v8/IDBBindingUtilities.cpp v8::Handle<v8::Value> key = toV8(impl->key(), creationContext, isolate); key 159 Source/bindings/v8/IDBBindingUtilities.cpp bool injected = injectV8KeyIntoV8Value(key, value, impl->keyPath(), isolate); key 216 Source/bindings/v8/IDBBindingUtilities.cpp RefPtr<IDBKey> key = createIDBKeyFromValue(value, stack, isolate, allowExperimentalTypes); key 217 Source/bindings/v8/IDBBindingUtilities.cpp if (key) key 218 Source/bindings/v8/IDBBindingUtilities.cpp return key; key 333 Source/bindings/v8/IDBBindingUtilities.cpp RefPtr<IDBKey> key = createIDBKeyFromScriptValueAndKeyPath(value, array[i], isolate, allowExperimentalTypes); key 334 Source/bindings/v8/IDBBindingUtilities.cpp if (!key) key 336 Source/bindings/v8/IDBBindingUtilities.cpp result.append(key); key 365 Source/bindings/v8/IDBBindingUtilities.cpp bool injectV8KeyIntoV8Value(v8::Handle<v8::Value> key, v8::Handle<v8::Value> value, const IDBKeyPath& keyPath, v8::Isolate* isolate) key 384 Source/bindings/v8/IDBBindingUtilities.cpp if (!set(parent, keyPathElements.last(), key, isolate)) key 416 Source/bindings/v8/IDBBindingUtilities.cpp ScriptValue idbKeyToScriptValue(DOMRequestState* state, PassRefPtr<IDBKey> key) key 422 Source/bindings/v8/IDBBindingUtilities.cpp v8::Handle<v8::Value> v8Value(toV8(key.get(), context->Global(), isolate)); key 446 Source/bindings/v8/IDBBindingUtilities.cpp RefPtr<IDBKey> key(prpKey); key 451 Source/bindings/v8/IDBBindingUtilities.cpp ScriptValue keyValue = idbKeyToScriptValue(state, key); key 457 Source/bindings/v8/IDBBindingUtilities.cpp ASSERT(!expectedKey || expectedKey->isEqual(key.get())); key 44 Source/bindings/v8/IDBBindingUtilities.h bool injectV8KeyIntoV8Value(v8::Handle<v8::Value> key, v8::Handle<v8::Value>, const IDBKeyPath&, v8::Isolate*); key 54 Source/bindings/v8/IDBBindingUtilitiesTest.cpp bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath) key 58 Source/bindings/v8/IDBBindingUtilitiesTest.cpp ScriptValue keyValue = idbKeyToScriptValue(0, key); key 64 Source/bindings/v8/IDBBindingUtilitiesTest.cpp RefPtr<IDBKey> key = prpKey; key 65 Source/bindings/v8/IDBBindingUtilitiesTest.cpp bool result = injectKey(key, value, keyPath); key 68 Source/bindings/v8/IDBBindingUtilitiesTest.cpp EXPECT_TRUE(key->isEqual(extractedKey.get())); key 71 Source/bindings/v8/IDBBindingUtilitiesTest.cpp void checkInjectionFails(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath) key 73 Source/bindings/v8/IDBBindingUtilitiesTest.cpp EXPECT_FALSE(injectKey(key, value, keyPath)); key 261 Source/bindings/v8/ScriptController.cpp void ScriptController::bindToWindowObject(LocalFrame* frame, const String& key, NPObject* object) key 275 Source/bindings/v8/ScriptController.cpp global->Set(v8String(m_isolate, key), value); key 111 Source/bindings/v8/ScriptController.h void bindToWindowObject(LocalFrame*, const String& key, NPObject*); key 149 Source/bindings/v8/SerializedScriptValue.cpp static unsigned hash(const G* key) key 151 Source/bindings/v8/SerializedScriptValue.cpp return static_cast<unsigned>(unsafeHandleFromRawValue(key)->GetIdentityHash()); key 484 Source/bindings/v8/SerializedScriptValue.cpp bool writeCryptoKey(const blink::WebCryptoKey& key) key 488 Source/bindings/v8/SerializedScriptValue.cpp switch (key.algorithm().paramsType()) { key 490 Source/bindings/v8/SerializedScriptValue.cpp doWriteAesKey(key); key 493 Source/bindings/v8/SerializedScriptValue.cpp doWriteHmacKey(key); key 497 Source/bindings/v8/SerializedScriptValue.cpp doWriteRsaKey(key); key 504 Source/bindings/v8/SerializedScriptValue.cpp doWriteKeyUsages(key.usages(), key.extractable()); key 507 Source/bindings/v8/SerializedScriptValue.cpp if (!blink::Platform::current()->crypto()->serializeKeyForClone(key, keyData)) key 686 Source/bindings/v8/SerializedScriptValue.cpp void doWriteHmacKey(const blink::WebCryptoKey& key) key 688 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(key.algorithm().paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeHmac); key 691 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(!(key.algorithm().hmacParams()->lengthBits() % 8)); key 692 Source/bindings/v8/SerializedScriptValue.cpp doWriteUint32(key.algorithm().hmacParams()->lengthBits() / 8); key 693 Source/bindings/v8/SerializedScriptValue.cpp doWriteAlgorithmId(key.algorithm().hmacParams()->hash().id()); key 696 Source/bindings/v8/SerializedScriptValue.cpp void doWriteAesKey(const blink::WebCryptoKey& key) key 698 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(key.algorithm().paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeAes); key 701 Source/bindings/v8/SerializedScriptValue.cpp doWriteAlgorithmId(key.algorithm().id()); key 704 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(!(key.algorithm().aesParams()->lengthBits() % 8)); key 705 Source/bindings/v8/SerializedScriptValue.cpp doWriteUint32(key.algorithm().aesParams()->lengthBits() / 8); key 708 Source/bindings/v8/SerializedScriptValue.cpp void doWriteRsaKey(const blink::WebCryptoKey& key) key 710 Source/bindings/v8/SerializedScriptValue.cpp if (key.algorithm().rsaHashedParams()) key 715 Source/bindings/v8/SerializedScriptValue.cpp doWriteAlgorithmId(key.algorithm().id()); key 717 Source/bindings/v8/SerializedScriptValue.cpp switch (key.type()) { key 728 Source/bindings/v8/SerializedScriptValue.cpp const blink::WebCryptoRsaKeyAlgorithmParams* params = key.algorithm().rsaParams(); key 733 Source/bindings/v8/SerializedScriptValue.cpp if (key.algorithm().rsaHashedParams()) key 734 Source/bindings/v8/SerializedScriptValue.cpp doWriteAlgorithmId(key.algorithm().rsaHashedParams()->hash().id()); key 1303 Source/bindings/v8/SerializedScriptValue.cpp Key* key = V8Key::toNative(value.As<v8::Object>()); key 1304 Source/bindings/v8/SerializedScriptValue.cpp if (!key) key 1306 Source/bindings/v8/SerializedScriptValue.cpp return m_writer.writeCryptoKey(key->key()); key 2173 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoKey key = blink::WebCryptoKey::createNull(); key 2175 Source/bindings/v8/SerializedScriptValue.cpp algorithm, type, extractable, usages, keyData, keyDataLength, key)) { key 2179 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<Key> k = Key::create(key); key 25 Source/bindings/v8/V8HiddenValue.cpp v8::Local<v8::Value> V8HiddenValue::getHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key) key 27 Source/bindings/v8/V8HiddenValue.cpp return object->GetHiddenValue(key); key 30 Source/bindings/v8/V8HiddenValue.cpp bool V8HiddenValue::setHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key, v8::Handle<v8::Value> value) key 32 Source/bindings/v8/V8HiddenValue.cpp return object->SetHiddenValue(key, value); key 35 Source/bindings/v8/V8HiddenValue.cpp bool V8HiddenValue::deleteHiddenValue(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::String> key) key 37 Source/bindings/v8/V8HiddenValue.cpp return object->DeleteHiddenValue(key); key 40 Source/bindings/v8/V8HiddenValue.cpp v8::Local<v8::Value> V8HiddenValue::getHiddenValueFromMainWorldWrapper(v8::Isolate* isolate, ScriptWrappable* wrappable, v8::Handle<v8::String> key) key 43 Source/bindings/v8/V8HiddenValue.cpp return wrapper.IsEmpty() ? v8::Local<v8::Value>() : getHiddenValue(isolate, wrapper, key); key 173 Source/bindings/v8/V8NPObject.cpp UnsafePersistent<v8::FunctionTemplate> get(PrivateIdentifier* key) key 175 Source/bindings/v8/V8NPObject.cpp return m_map.get(key); key 178 Source/bindings/v8/V8NPObject.cpp void set(PrivateIdentifier* key, v8::Handle<v8::FunctionTemplate> handle) key 180 Source/bindings/v8/V8NPObject.cpp ASSERT(!m_map.contains(key)); key 182 Source/bindings/v8/V8NPObject.cpp wrapper.SetWeak(key, &setWeakCallback); key 183 Source/bindings/v8/V8NPObject.cpp m_map.set(key, UnsafePersistent<v8::FunctionTemplate>(wrapper)); key 199 Source/bindings/v8/V8NPObject.cpp void clear(PrivateIdentifier* key) key 201 Source/bindings/v8/V8NPObject.cpp MapType::iterator it = m_map.find(key); key 216 Source/bindings/v8/V8NPObject.cpp static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate) key 246 Source/bindings/v8/V8NPObject.cpp if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) { key 258 Source/bindings/v8/V8NPObject.cpp temp->SetCallHandler(npObjectMethodHandler, key); key 264 Source/bindings/v8/V8NPObject.cpp v8Function->SetName(v8::Handle<v8::String>::Cast(key)); key 424 Source/bindings/v8/V8WindowShell.cpp static v8::Handle<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const AtomicString& key, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) key 426 Source/bindings/v8/V8WindowShell.cpp if (!htmlDocument->hasNamedItem(key) && !htmlDocument->hasExtraNamedItem(key)) key 429 Source/bindings/v8/V8WindowShell.cpp RefPtr<HTMLCollection> items = htmlDocument->documentNamedItems(key); key 174 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp String key = propertyNames.at(i); key 175 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp ASSERT(!key.isNull()); key 176 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp properties->Set(v8::Integer::New(info.GetIsolate(), i), v8String(info.GetIsolate(), key)); key 78 Source/bindings/v8/custom/V8SQLTransactionCustom.cpp v8::Handle<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i); key 79 Source/bindings/v8/custom/V8SQLTransactionCustom.cpp V8TRYCATCH_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key)); key 77 Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp v8::Handle<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i); key 78 Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp V8TRYCATCH_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key)); key 451 Source/bindings/v8/custom/V8WindowCustom.cpp bool V8Window::namedSecurityCheckCustom(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>) key 470 Source/bindings/v8/custom/V8WindowCustom.cpp if (key->IsString()) { key 473 Source/bindings/v8/custom/V8WindowCustom.cpp AtomicString name = toCoreAtomicString(key.As<v8::String>()); key 482 Source/bindings/v8/custom/V8WindowCustom.cpp v8::Handle<v8::String> keyString = key.As<v8::String>(); key 92 Source/bindings/v8/npruntime.cpp static unsigned hash(const StringKey& key) key 96 Source/bindings/v8/npruntime.cpp size_t len = key.m_length; key 97 Source/bindings/v8/npruntime.cpp const char* str = key.m_string; key 166 Source/bindings/v8/npruntime.cpp StringKey key(name); key 168 Source/bindings/v8/npruntime.cpp StringIdentifierMap::iterator iter = identMap->find(key); key 172 Source/bindings/v8/npruntime.cpp size_t nameLen = key.m_length; key 180 Source/bindings/v8/npruntime.cpp key.m_string = nameStorage; key 181 Source/bindings/v8/npruntime.cpp identMap->set(key, identifier); key 81 Source/core/animation/ActiveAnimations.cpp const AnimationPlayer& player = *it->key; key 100 Source/core/animation/ActiveAnimations.cpp it->key->cancelAnimationOnCompositor(); key 16 Source/core/animation/AnimatableValueKeyframe.cpp setPropertyValue(iter->key, iter->value.get()); key 182 Source/core/animation/KeyframeEffectModel.cpp m_interpolationEffect->addInterpolation(keyframes[i]->createInterpolation(iter->key, keyframes[i + 1].get()), key 16 Source/core/animation/StringKeyframe.cpp setPropertyValue(iter->key, iter->value); key 315 Source/core/animation/css/CSSAnimations.cpp inactive.add(iter->key); key 571 Source/core/animation/css/CSSAnimations.cpp CSSPropertyID id = iter->key; key 641 Source/core/animation/css/CSSAnimations.cpp activeInterpolationsForTransitions.remove(iter->key); key 54 Source/core/css/CSSCanvasValue.cpp const_cast<RenderObject*>(curr->key)->imageChanged(static_cast<WrappedImagePtr>(this), &imageChangeRect); key 61 Source/core/css/CSSCanvasValue.cpp const_cast<RenderObject*>(curr->key)->imageChanged(static_cast<WrappedImagePtr>(this)); key 1358 Source/core/css/CSSComputedStyleDeclaration.cpp list->append(cssValuePool().createValue(it->key, CSSPrimitiveValue::CSS_STRING)); key 194 Source/core/css/CSSCrossfadeValue.cpp RenderObject* client = const_cast<RenderObject*>(curr->key); key 57 Source/core/css/CSSFontFaceSource.cpp FontCacheKey key = fontDescription.cacheKey(emptyFontFamily); key 59 Source/core/css/CSSFontFaceSource.cpp RefPtr<SimpleFontData>& fontData = m_fontDataTable.add(key.hash(), nullptr).storedValue->value; key 327 Source/core/css/CSSGrammar.y %type <value> key key 882 Source/core/css/CSSGrammar.y key maybe_space { key 886 Source/core/css/CSSGrammar.y | key_list ',' maybe_space key maybe_space { key 892 Source/core/css/CSSGrammar.y key: key 56 Source/core/css/CSSGridTemplateAreasValue.cpp candidates.append(it->key); key 62 Source/core/css/CSSGridTemplateAreasValue.cpp if (column >= coordinate.columns.initialPositionIndex && column <= coordinate.columns.finalPositionIndex && candidates.contains(it->key)) key 63 Source/core/css/CSSGridTemplateAreasValue.cpp return it->key; key 126 Source/core/css/CSSKeyframeRule.cpp double key = keys->valueAt(i)->fValue; key 127 Source/core/css/CSSKeyframeRule.cpp if (key < 0 || key > 100) { key 134 Source/core/css/CSSKeyframeRule.cpp keyVector->at(i) = key / 100; key 72 Source/core/css/CSSKeyframesRule.cpp int StyleRuleKeyframes::findKeyframeIndex(const String& key) const key 75 Source/core/css/CSSKeyframesRule.cpp if (equalIgnoringCase(key, "from")) key 77 Source/core/css/CSSKeyframesRule.cpp else if (equalIgnoringCase(key, "to")) key 80 Source/core/css/CSSKeyframesRule.cpp percentageString = key; key 58 Source/core/css/CSSKeyframesRule.h int findKeyframeIndex(const String& key) const; key 94 Source/core/css/CSSKeyframesRule.h void deleteRule(const String& key); key 95 Source/core/css/CSSKeyframesRule.h CSSKeyframeRule* findRule(const String& key); key 133 Source/core/css/CSSSegmentedFontFace.cpp FontCacheKey key = fontDescription.cacheKey(emptyFontFamily, desiredTraits); key 135 Source/core/css/CSSSegmentedFontFace.cpp RefPtr<SegmentedFontData>& fontData = m_fontDataTable.add(key.hash(), nullptr).storedValue->value; key 96 Source/core/css/MediaQuery.cpp MediaQueryExp* key = 0; key 100 Source/core/css/MediaQuery.cpp if (key && *exp == *key) key 103 Source/core/css/MediaQuery.cpp key = exp; key 343 Source/core/css/RuleFeature.cpp ensureClassInvalidationSet(it->key).combine(*it->value); key 345 Source/core/css/RuleFeature.cpp ensureAttributeInvalidationSet(it->key).combine(*it->value); key 347 Source/core/css/RuleFeature.cpp ensureIdInvalidationSet(it->key).combine(*it->value); key 142 Source/core/css/RuleSet.cpp void RuleSet::addToRuleSet(const AtomicString& key, PendingRuleMap& map, const RuleData& ruleData) key 144 Source/core/css/RuleSet.cpp OwnPtrWillBeMember<WillBeHeapLinkedStack<RuleData> >& rules = map.add(key, nullptr).storedValue->value; key 333 Source/core/css/RuleSet.cpp CompactRuleMap::ValueType* compactRules = compactMap.add(it->key, nullptr).storedValue; key 136 Source/core/css/RuleSet.h const WillBeHeapTerminatedArray<RuleData>* idRules(const AtomicString& key) const { ASSERT(!m_pendingRules); return m_idRules.get(key); } key 137 Source/core/css/RuleSet.h const WillBeHeapTerminatedArray<RuleData>* classRules(const AtomicString& key) const { ASSERT(!m_pendingRules); return m_classRules.get(key); } key 138 Source/core/css/RuleSet.h const WillBeHeapTerminatedArray<RuleData>* tagRules(const AtomicString& key) const { ASSERT(!m_pendingRules); return m_tagRules.get(key); } key 139 Source/core/css/RuleSet.h const WillBeHeapTerminatedArray<RuleData>* shadowPseudoElementRules(const AtomicString& key) const { ASSERT(!m_pendingRules); return m_shadowPseudoElementRules.get(key); } key 176 Source/core/css/RuleSet.h void addToRuleSet(const AtomicString& key, PendingRuleMap&, const RuleData&); key 118 Source/core/css/resolver/MatchedPropertiesCache.cpp toRemove.append(it->key); key 137 Source/core/css/resolver/MatchedPropertiesCache.cpp toRemove.append(it->key); key 101 Source/core/css/resolver/ScopedStyleTree.cpp ASSERT(it->key->inDocument()); key 102 Source/core/css/resolver/ScopedStyleTree.cpp if (it->value->parent() == target->parent() && scopingNode.containsIncludingShadowDOM(it->key)) key 1099 Source/core/css/resolver/StyleResolver.cpp CSSPropertyID property = iter->key; key 556 Source/core/dom/DocumentMarkerController.cpp if (RenderObject* renderer = iterator->key->renderer()) key 576 Source/core/dom/DocumentMarkerController.cpp const Node* node = i->key; key 720 Source/core/dom/DocumentMarkerController.cpp const Node* node = nodeIterator->key; key 44 Source/core/dom/DocumentOrderedMap.cpp inline bool keyMatchesId(StringImpl* key, Element& element) key 46 Source/core/dom/DocumentOrderedMap.cpp return element.getIdAttribute().impl() == key; key 49 Source/core/dom/DocumentOrderedMap.cpp inline bool keyMatchesMapName(StringImpl* key, Element& element) key 51 Source/core/dom/DocumentOrderedMap.cpp return isHTMLMapElement(element) && toHTMLMapElement(element).getName().impl() == key; key 54 Source/core/dom/DocumentOrderedMap.cpp inline bool keyMatchesLowercasedMapName(StringImpl* key, Element& element) key 56 Source/core/dom/DocumentOrderedMap.cpp return isHTMLMapElement(element) && toHTMLMapElement(element).getName().lower().impl() == key; key 59 Source/core/dom/DocumentOrderedMap.cpp inline bool keyMatchesLabelForAttribute(StringImpl* key, Element& element) key 61 Source/core/dom/DocumentOrderedMap.cpp return isHTMLLabelElement(element) && element.getAttribute(forAttr).impl() == key; key 64 Source/core/dom/DocumentOrderedMap.cpp void DocumentOrderedMap::add(StringImpl* key, Element* element) key 66 Source/core/dom/DocumentOrderedMap.cpp ASSERT(key); key 69 Source/core/dom/DocumentOrderedMap.cpp Map::AddResult addResult = m_map.add(key, adoptPtr(new MapEntry(element))); key 80 Source/core/dom/DocumentOrderedMap.cpp void DocumentOrderedMap::remove(StringImpl* key, Element* element) key 82 Source/core/dom/DocumentOrderedMap.cpp ASSERT(key); key 85 Source/core/dom/DocumentOrderedMap.cpp Map::iterator it = m_map.find(key); key 105 Source/core/dom/DocumentOrderedMap.cpp inline Element* DocumentOrderedMap::get(StringImpl* key, const TreeScope* scope) const key 107 Source/core/dom/DocumentOrderedMap.cpp ASSERT(key); key 110 Source/core/dom/DocumentOrderedMap.cpp MapEntry* entry = m_map.get(key); key 120 Source/core/dom/DocumentOrderedMap.cpp if (!keyMatches(key, *element)) key 129 Source/core/dom/DocumentOrderedMap.cpp Element* DocumentOrderedMap::getElementById(StringImpl* key, const TreeScope* scope) const key 131 Source/core/dom/DocumentOrderedMap.cpp return get<keyMatchesId>(key, scope); key 134 Source/core/dom/DocumentOrderedMap.cpp const Vector<Element*>& DocumentOrderedMap::getAllElementsById(StringImpl* key, const TreeScope* scope) const key 136 Source/core/dom/DocumentOrderedMap.cpp ASSERT(key); key 140 Source/core/dom/DocumentOrderedMap.cpp Map::iterator it = m_map.find(key); key 151 Source/core/dom/DocumentOrderedMap.cpp if (!keyMatchesId(key, *element)) key 162 Source/core/dom/DocumentOrderedMap.cpp Element* DocumentOrderedMap::getElementByMapName(StringImpl* key, const TreeScope* scope) const key 164 Source/core/dom/DocumentOrderedMap.cpp return get<keyMatchesMapName>(key, scope); key 167 Source/core/dom/DocumentOrderedMap.cpp Element* DocumentOrderedMap::getElementByLowercasedMapName(StringImpl* key, const TreeScope* scope) const key 169 Source/core/dom/DocumentOrderedMap.cpp return get<keyMatchesLowercasedMapName>(key, scope); key 172 Source/core/dom/DocumentOrderedMap.cpp Element* DocumentOrderedMap::getElementByLabelForAttribute(StringImpl* key, const TreeScope* scope) const key 174 Source/core/dom/DocumentOrderedMap.cpp return get<keyMatchesLabelForAttribute>(key, scope); key 71 Source/core/dom/MutationObserverInterestGroup.cpp MutationObserver* observer = iter->key; key 231 Source/core/dom/Node.cpp printf(" Number of <%s> tags: %zu\n", it->key.utf8().data(), it->value); key 62 Source/core/dom/PresentationAttributeStyle.cpp PresentationAttributeCacheKey key; key 146 Source/core/dom/PresentationAttributeStyle.cpp static unsigned computePresentationAttributeCacheHash(const PresentationAttributeCacheKey& key) key 148 Source/core/dom/PresentationAttributeStyle.cpp if (!key.tagName) key 150 Source/core/dom/PresentationAttributeStyle.cpp ASSERT(key.attributesAndValues.size()); key 151 Source/core/dom/PresentationAttributeStyle.cpp unsigned attributeHash = StringHasher::hashMemory(key.attributesAndValues.data(), key.attributesAndValues.size() * sizeof(key.attributesAndValues[0])); key 152 Source/core/dom/PresentationAttributeStyle.cpp return WTF::pairIntHash(key.tagName->existingHash(), attributeHash); key 169 Source/core/dom/PresentationAttributeStyle.cpp if (cacheValue->value && cacheValue->value->key != cacheKey) key 192 Source/core/dom/PresentationAttributeStyle.cpp newEntry->key = cacheKey; key 470 Source/core/dom/TreeScope.cpp Element* TreeScope::getElementByAccessKey(const String& key) const key 472 Source/core/dom/TreeScope.cpp if (key.isEmpty()) key 477 Source/core/dom/TreeScope.cpp if (equalIgnoringCase(element->fastGetAttribute(accesskeyAttr), key)) key 480 Source/core/dom/TreeScope.cpp if (Element* shadowResult = shadowRoot->getElementByAccessKey(key)) key 154 Source/core/dom/TreeScope.h Element* getElementByAccessKey(const String& key) const; key 280 Source/core/dom/shadow/ElementShadow.cpp const InsertionPoint* ElementShadow::finalDestinationInsertionPointFor(const Node* key) const key 282 Source/core/dom/shadow/ElementShadow.cpp NodeToDestinationInsertionPoints::const_iterator it = m_nodeToInsertionPoints.find(key); key 286 Source/core/dom/shadow/ElementShadow.cpp const DestinationInsertionPoints* ElementShadow::destinationInsertionPointsFor(const Node* key) const key 288 Source/core/dom/shadow/ElementShadow.cpp NodeToDestinationInsertionPoints::const_iterator it = m_nodeToInsertionPoints.find(key); key 67 Source/core/events/KeyboardEvent.cpp static inline KeyboardEvent::KeyLocationCode keyLocationCode(const PlatformKeyboardEvent& key) key 69 Source/core/events/KeyboardEvent.cpp if (key.isKeypad()) key 72 Source/core/events/KeyboardEvent.cpp switch (key.windowsVirtualKeyCode()) { key 106 Source/core/events/KeyboardEvent.cpp KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view) key 107 Source/core/events/KeyboardEvent.cpp : UIEventWithKeyState(eventTypeForKeyboardEventType(key.type()), key 108 Source/core/events/KeyboardEvent.cpp true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey()) key 109 Source/core/events/KeyboardEvent.cpp , m_keyEvent(adoptPtr(new PlatformKeyboardEvent(key))) key 110 Source/core/events/KeyboardEvent.cpp , m_keyIdentifier(key.keyIdentifier()) key 111 Source/core/events/KeyboardEvent.cpp , m_location(keyLocationCode(key)) key 113 Source/core/events/KeyboardEvent.cpp , m_isAutoRepeat(key.isAutoRepeat()) key 75 Source/core/fetch/CrossOriginAccessControl.cpp if (!isOnAccessControlSimpleRequestHeaderWhitelist(it->key, it->value)) key 125 Source/core/fetch/CrossOriginAccessControl.cpp headerBuffer.append(it->key); key 131 Source/core/fetch/CrossOriginAccessControl.cpp headerBuffer.append(it->key); key 121 Source/core/fetch/ImageResource.cpp switchContainerSizeRequests.set(it->key, it->value); key 125 Source/core/fetch/ImageResource.cpp revalidatedImageResource->setContainerSizeForRenderer(it->key, it->value.first, it->value.second); key 328 Source/core/fetch/ImageResource.cpp setContainerSizeForRenderer(it->key, it->value.first, it->value.second); key 169 Source/core/fetch/RawResource.cpp AtomicString headerName = i->key; key 176 Source/core/fetch/RawResource.cpp AtomicString headerName = i->key; key 604 Source/core/fetch/Resource.cpp ResourceClient* client = m_clientsAwaitingCallback.begin()->key; key 676 Source/core/fetch/Resource.cpp ResourceClient* client = it->key; key 716 Source/core/fetch/Resource.cpp if (!shouldUpdateHeaderAfterRevalidation(it->key)) key 718 Source/core/fetch/Resource.cpp m_response.setHTTPHeaderField(it->key, it->value); key 45 Source/core/fetch/ResourceClientWalker.h m_clientVector[clientIndex++] = current->key; key 719 Source/core/fetch/ResourceFetcher.cpp RefPtr<ResourceTimingInfo> info = it->key; key 1078 Source/core/fetch/ResourceFetcher.cpp resourcesToDelete.append(it->key); key 76 Source/core/html/FormDataList.cpp const FormDataList::Item& key = items[i]; key 80 Source/core/html/FormDataList.cpp FormDataBuilder::beginMultiPartHeader(header, formData->boundary().data(), key.data()); key 133 Source/core/html/FormDataList.cpp FormDataBuilder::addKeyValuePairAsFormData(encodedData, key.data(), value.data(), encodingType); key 56 Source/core/html/FormDataList.h void appendData(const String& key, const String& value) key 58 Source/core/html/FormDataList.h appendString(key); key 61 Source/core/html/FormDataList.h void appendData(const String& key, const CString& value) key 63 Source/core/html/FormDataList.h appendString(key); key 66 Source/core/html/FormDataList.h void appendData(const String& key, int value) key 68 Source/core/html/FormDataList.h appendString(key); key 71 Source/core/html/FormDataList.h void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String()) key 73 Source/core/html/FormDataList.h appendString(key); key 77 Source/core/html/HTMLCollection.h static void addElementToMap(StringToElementsMap& map, const AtomicString& key, Element* element) key 79 Source/core/html/HTMLCollection.h OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).storedValue->value; key 61 Source/core/html/HTMLFrameOwnerElement.cpp Widget* child = it->key.get(); key 49 Source/core/html/HTMLMetaElement.h typedef void (HTMLMetaElement::*KeyValuePairCallback)(const String& key, const String& value, void* data); key 50 Source/core/html/HTMLMetaElement.h void processViewportKeyValuePair(const String& key, const String& value, void* data); key 57 Source/core/html/HTMLMetaElement.h float parsePositiveNumber(const String& key, const String& value, bool* ok = 0); key 59 Source/core/html/HTMLMetaElement.h Length parseViewportValueAsLength(const String& key, const String& value); key 60 Source/core/html/HTMLMetaElement.h float parseViewportValueAsZoom(const String& key, const String& value); key 61 Source/core/html/HTMLMetaElement.h float parseViewportValueAsUserZoom(const String& key, const String& value); key 62 Source/core/html/HTMLMetaElement.h float parseViewportValueAsDPI(const String& key, const String& value); key 57 Source/core/html/PublicURLManager.cpp found->key->registerURL(origin, url, registrable); key 65 Source/core/html/PublicURLManager.cpp i->key->unregisterURL(url); key 77 Source/core/html/PublicURLManager.cpp URLRegistry* registry = i->key; key 81 Source/core/html/PublicURLManager.cpp KURL url(ParsedURLString, j->key); key 84 Source/core/html/PublicURLManager.cpp urlsToRemove.append(j->key); key 101 Source/core/html/PublicURLManager.cpp i->key->unregisterURL(KURL(ParsedURLString, j->key)); key 448 Source/core/html/canvas/WebGLFramebuffer.cpp GLenum attachmentType = it->key; key 499 Source/core/html/canvas/WebGLFramebuffer.cpp if (!isAttachmentComplete(attachment, it->key, reason)) key 509 Source/core/html/canvas/WebGLFramebuffer.cpp switch (it->key) { key 65 Source/core/html/forms/BaseCheckableInputType.cpp const String& key = event->keyIdentifier(); key 66 Source/core/html/forms/BaseCheckableInputType.cpp if (key == "U+0020") { key 44 Source/core/html/forms/BaseClickableWithKeyInputType.cpp const String& key = event->keyIdentifier(); key 45 Source/core/html/forms/BaseClickableWithKeyInputType.cpp if (key == "U+0020") { key 68 Source/core/html/forms/BaseClickableWithKeyInputType.cpp const String& key = event->keyIdentifier(); key 69 Source/core/html/forms/BaseClickableWithKeyInputType.cpp if (key != "U+0020") key 65 Source/core/html/forms/CheckboxInputType.cpp const String& key = event->keyIdentifier(); key 66 Source/core/html/forms/CheckboxInputType.cpp if (key != "U+0020") key 163 Source/core/html/forms/FormController.cpp unsigned FormElementKeyHash::hash(const FormElementKey& key) key 165 Source/core/html/forms/FormController.cpp return StringHasher::hashMemory<sizeof(FormElementKey)>(&key); key 233 Source/core/html/forms/FormController.cpp const FormElementKey& key = it->key; key 236 Source/core/html/forms/FormController.cpp stateVector.append(key.name()); key 237 Source/core/html/forms/FormController.cpp stateVector.append(key.type()); key 245 Source/core/html/forms/FormController.cpp FormElementKey key(name.impl(), type.impl()); key 246 Source/core/html/forms/FormController.cpp FormElementStateMap::iterator it = m_stateForNewFormElements.find(key); key 252 Source/core/html/forms/FormController.cpp m_stateForNewFormElements.set(key, stateList); key 276 Source/core/html/forms/FormController.cpp const FormElementKey& key = it->key; key 277 Source/core/html/forms/FormController.cpp if (!equal(key.type(), "file", 4)) key 418 Source/core/html/forms/FormController.cpp stateVector.append(it->key); key 133 Source/core/html/forms/InputType.cpp return it == factoryMap()->end() ? InputTypeNames::text : it->key; key 69 Source/core/html/forms/RadioInputType.cpp const String& key = event->keyIdentifier(); key 70 Source/core/html/forms/RadioInputType.cpp if (key != "Up" && key != "Down" && key != "Left" && key != "Right") key 82 Source/core/html/forms/RadioInputType.cpp bool forward = (key == "Down" || key == "Right"); key 109 Source/core/html/forms/RadioInputType.cpp const String& key = event->keyIdentifier(); key 110 Source/core/html/forms/RadioInputType.cpp if (key != "U+0020") key 190 Source/core/html/forms/RangeInputType.cpp const String& key = event->keyIdentifier(); key 210 Source/core/html/forms/RangeInputType.cpp if (key == "Up") key 212 Source/core/html/forms/RangeInputType.cpp else if (key == "Down") key 214 Source/core/html/forms/RangeInputType.cpp else if (key == "Left") key 216 Source/core/html/forms/RangeInputType.cpp else if (key == "Right") key 218 Source/core/html/forms/RangeInputType.cpp else if (key == "PageUp") key 220 Source/core/html/forms/RangeInputType.cpp else if (key == "PageDown") key 222 Source/core/html/forms/RangeInputType.cpp else if (key == "Home") key 224 Source/core/html/forms/RangeInputType.cpp else if (key == "End") key 109 Source/core/html/forms/SearchInputType.cpp const String& key = event->keyIdentifier(); key 110 Source/core/html/forms/SearchInputType.cpp if (key == "U+001B") { key 208 Source/core/html/forms/TextFieldInputType.cpp const String& key = event->keyIdentifier(); key 209 Source/core/html/forms/TextFieldInputType.cpp if (key == "Up") key 211 Source/core/html/forms/TextFieldInputType.cpp else if (key == "Down" && !event->altKey()) key 263 Source/core/inspector/DOMPatchSupport.cpp DiffTable::iterator oldIt = oldTable.find(newIt->key); key 376 Source/core/inspector/DOMPatchSupport.cpp if (!innerPatchNode(it->value, it->key, exceptionState)) key 83 Source/core/inspector/InjectedScriptManager.cpp return injectedScriptFor(it->key); key 128 Source/core/inspector/InjectedScriptManager.cpp idsToRemove.append(it->key); key 137 Source/core/inspector/InjectedScriptManager.cpp ScriptState* scriptState = it->key; key 814 Source/core/inspector/InspectorCSSAgent.cpp .setFamilyName(it->key) key 1400 Source/core/inspector/InspectorCSSAgent.cpp Element* element = toElement(m_domAgent->nodeForId(it->key)); key 294 Source/core/inspector/InspectorCanvasAgent.cpp String frameId = m_pageAgent->frameId(it->key); key 343 Source/core/inspector/InspectorCanvasAgent.cpp InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, mainWorldScriptState(it->key)); key 503 Source/core/inspector/InspectorDOMDebuggerAgent.cpp if (url.contains(it->key)) { key 504 Source/core/inspector/InspectorDOMDebuggerAgent.cpp breakpointURL = it->key; key 120 Source/core/inspector/InspectorDOMStorageAgent.cpp String name(storageArea->key(i, exceptionState, frame)); key 141 Source/core/inspector/InspectorDOMStorageAgent.cpp void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key, const String& value) key 151 Source/core/inspector/InspectorDOMStorageAgent.cpp storageArea->setItem(key, value, exceptionState, frame); key 155 Source/core/inspector/InspectorDOMStorageAgent.cpp void InspectorDOMStorageAgent::removeDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key) key 165 Source/core/inspector/InspectorDOMStorageAgent.cpp storageArea->removeItem(key, exceptionState, frame); key 176 Source/core/inspector/InspectorDOMStorageAgent.cpp void InspectorDOMStorageAgent::didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin) key 183 Source/core/inspector/InspectorDOMStorageAgent.cpp if (key.isNull()) key 186 Source/core/inspector/InspectorDOMStorageAgent.cpp m_frontend->domstorage()->domStorageItemRemoved(id, key); key 188 Source/core/inspector/InspectorDOMStorageAgent.cpp m_frontend->domstorage()->domStorageItemAdded(id, key, newValue); key 190 Source/core/inspector/InspectorDOMStorageAgent.cpp m_frontend->domstorage()->domStorageItemUpdated(id, key, oldValue, newValue); key 64 Source/core/inspector/InspectorDOMStorageAgent.h virtual void setDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, const String& value) OVERRIDE; key 65 Source/core/inspector/InspectorDOMStorageAgent.h virtual void removeDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key) OVERRIDE; key 68 Source/core/inspector/InspectorDOMStorageAgent.h void didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*); key 346 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointId, it->key, breakpoint, UserBreakpointSource); key 1168 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(it->key, scriptId, breakpoint, UserBreakpointSource); key 1170 Source/core/inspector/InspectorDebuggerAgent.cpp m_frontend->breakpointResolved(it->key, location); key 89 Source/core/inspector/InspectorResourceAgent.cpp headersObject->setString(it->key.string(), it->value); key 309 Source/core/inspector/InspectorResourceAgent.cpp request.setHTTPHeaderField(AtomicString(it->key), AtomicString(value)); key 455 Source/core/inspector/InspectorResourceAgent.cpp xhrReplayData->addHeader(it->key, it->value); key 689 Source/core/inspector/InspectorResourceAgent.cpp xhr->setRequestHeader(it->key, it->value, IGNORE_EXCEPTION); key 743 Source/core/inspector/InspectorResourceAgent.cpp *errorString = "Request header \"" + it->key + "\" value is not a string"; key 746 Source/core/inspector/InspectorResourceAgent.cpp request.addHTTPHeaderField(AtomicString(it->key), AtomicString(value)); key 146 Source/core/inspector/InspectorState.cpp RefPtr<JSONObject> agentStateObject = m_stateObject->getObject(it->key); key 149 Source/core/inspector/InspectorState.cpp m_stateObject->setObject(it->key, agentStateObject); key 217 Source/core/inspector/InspectorWorkerAgent.cpp m_inspectorFrontend->worker()->workerTerminated(it->key); key 228 Source/core/inspector/InspectorWorkerAgent.cpp createWorkerFrontendChannel(it->key, it->value); key 413 Source/core/inspector/JSONParser.cpp String key; key 414 Source/core/inspector/JSONParser.cpp if (!decodeString(tokenStart + 1, tokenEnd - 1, &key)) key 426 Source/core/inspector/JSONParser.cpp object->setValue(key, value); key 54 Source/core/inspector/NetworkResourcesData.cpp void XHRReplayData::addHeader(const AtomicString& key, const AtomicString& value) key 56 Source/core/inspector/NetworkResourcesData.cpp m_headers.set(key, value); key 297 Source/core/inspector/NetworkResourcesData.cpp setXHRReplayData(it->key, xhrReplayData); key 334 Source/core/inspector/NetworkResourcesData.cpp result.append(it->key); key 353 Source/core/inspector/NetworkResourcesData.cpp preservedMap.set(it->key, it->value); key 58 Source/core/inspector/NetworkResourcesData.h void addHeader(const AtomicString& key, const AtomicString& value); key 133 Source/core/inspector/TraceEventDispatcher.cpp remainingHandlers.add(it->key, it->value); key 126 Source/core/loader/CrossOriginPreflightResultCache.cpp if (!m_headers.contains(it->key) && !isOnAccessControlSimpleRequestHeaderWhitelist(it->key, it->value)) { key 127 Source/core/loader/CrossOriginPreflightResultCache.cpp errorDescription = "Request header field " + it->key.string() + " is not allowed by Access-Control-Allow-Headers."; key 3056 Source/core/page/EventHandler.cpp String key = evt.unmodifiedText(); key 3057 Source/core/page/EventHandler.cpp Element* elem = m_frame->document()->getElementByAccessKey(key.lower()); key 97 Source/core/page/HistoryController.cpp framesToRemove.append(it->key); key 101 Source/core/page/HistoryController.cpp uniqueNamesToRemove.append(it->key); key 179 Source/core/page/HistoryController.cpp if (it->key->host()) key 180 Source/core/page/HistoryController.cpp it->key->loader().loadHistoryItem(it->value.get(), HistorySameDocumentLoad, cachePolicy); key 183 Source/core/page/HistoryController.cpp if (it->key->host()) key 184 Source/core/page/HistoryController.cpp it->key->loader().loadHistoryItem(it->value.get(), HistoryDifferentDocumentLoad, cachePolicy); key 302 Source/core/page/PrintContext.cpp graphicsContext.addURLTargetAtPoint(it->key, point); key 147 Source/core/page/TouchDisambiguation.cpp highlightNodes.append(it->key); key 209 Source/core/page/WindowFeatures.cpp bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue) key 211 Source/core/page/WindowFeatures.cpp DialogFeaturesMap::const_iterator it = features.find(key); key 218 Source/core/page/WindowFeatures.cpp float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue) key 220 Source/core/page/WindowFeatures.cpp DialogFeaturesMap::const_iterator it = features.find(key); key 252 Source/core/page/WindowFeatures.cpp String key = featureString.left(separatorPosition).stripWhiteSpace().lower(); key 261 Source/core/page/WindowFeatures.cpp map.set(key, value); key 82 Source/core/page/WindowFeatures.h static bool boolFeature(const DialogFeaturesMap&, const char* key, bool defaultValue = false); key 83 Source/core/page/WindowFeatures.h static float floatFeature(const DialogFeaturesMap&, const char* key, float min, float max, float defaultValue); key 422 Source/core/page/scrolling/ScrollingCoordinator.cpp for (const RenderLayer* layer = layerIter->key; !compositedLayer;) { key 497 Source/core/page/scrolling/ScrollingCoordinator.cpp const RenderLayer* layer = layerIter->key; key 560 Source/core/page/scrolling/ScrollingCoordinator.cpp const RenderLayer* layer = iter->key; key 741 Source/core/page/scrolling/ScrollingCoordinator.cpp Node* target = iter->key; key 751 Source/core/page/scrolling/ScrollingCoordinator.cpp const Node* target = iter->key; key 973 Source/core/rendering/FastTextAutosizer.cpp Fingerprint fingerprint = fingerprintIt->key; key 115 Source/core/rendering/FloatingObjects.h static unsigned hash(FloatingObject* key) { return DefaultHash<RenderBox*>::Hash::hash(key->renderer()); } key 120 Source/core/rendering/FloatingObjects.h static unsigned hash(RenderBox* key) { return DefaultHash<RenderBox*>::Hash::hash(key); } key 127 Source/core/rendering/ImageQualityController.cpp if (LocalFrame* frame = it->key->document().frame()) { key 134 Source/core/rendering/ImageQualityController.cpp it->key->repaint(); key 453 Source/core/rendering/RenderCounter.cpp destroyCounterNodeWithoutMapRemoval(it->key, it->value.get()); key 507 Source/core/rendering/RenderCounter.cpp makeCounterNode(renderer, it->key, false); key 513 Source/core/rendering/RenderCounter.cpp RefPtr<CounterNode> node = counterMap->get(it->key); key 515 Source/core/rendering/RenderCounter.cpp makeCounterNode(renderer, it->key, false); key 521 Source/core/rendering/RenderCounter.cpp findPlaceForCounter(renderer, it->key, node->hasResetType(), newParent, newPreviousSibling); key 522 Source/core/rendering/RenderCounter.cpp if (node != counterMap->get(it->key)) key 530 Source/core/rendering/RenderCounter.cpp newParent->insertAfter(node.get(), newPreviousSibling.get(), it->key); key 562 Source/core/rendering/RenderCounter.cpp CounterDirectiveMap::const_iterator oldMapIt = oldCounterDirectives->find(it->key); key 566 Source/core/rendering/RenderCounter.cpp RenderCounter::destroyCounterNode(renderer, it->key); key 571 Source/core/rendering/RenderCounter.cpp makeCounterNode(renderer, it->key, false); key 575 Source/core/rendering/RenderCounter.cpp if (!newCounterDirectives->contains(it->key)) key 576 Source/core/rendering/RenderCounter.cpp RenderCounter::destroyCounterNode(renderer, it->key); key 588 Source/core/rendering/RenderCounter.cpp makeCounterNode(renderer, it->key, false); key 1854 Source/core/rendering/RenderLayer.cpp it->key->setIsOverlapped(false); key 1924 Source/core/rendering/RenderLayer.cpp it->key->setIsOverlapped(true); key 1925 Source/core/rendering/RenderLayer.cpp overlappedRequestClients.append(it->key); key 240 Source/core/rendering/RenderQuote.cpp Language key = { lowercaseLang.data(), 0, 0, 0, 0, 0 }; key 241 Source/core/rendering/RenderQuote.cpp Language* match = std::lower_bound(languages, languagesEnd, key); key 242 Source/core/rendering/RenderQuote.cpp if (match == languagesEnd || strcmp(match->lang, key.lang)) key 656 Source/core/rendering/RenderView.cpp i->key->setSelectionStateIfNeeded(SelectionNone); key 712 Source/core/rendering/RenderView.cpp RenderObject* obj = i->key; key 734 Source/core/rendering/RenderView.cpp RenderBlock* block = i->key; key 294 Source/core/rendering/TextAutosizer.cpp void TextAutosizer::addNonAutosizedCluster(unsigned key, TextAutosizingClusterInfo& value) key 296 Source/core/rendering/TextAutosizer.cpp HashMap<unsigned, OwnPtr<Vector<TextAutosizingClusterInfo> > >::const_iterator it = m_nonAutosizedClusters.find(key); key 298 Source/core/rendering/TextAutosizer.cpp m_nonAutosizedClusters.add(key, adoptPtr(new Vector<TextAutosizingClusterInfo>(1, value))); key 128 Source/core/rendering/TextAutosizer.h void addNonAutosizedCluster(unsigned key, TextAutosizingClusterInfo& value); key 46 Source/core/rendering/shapes/ShapeInfo.h static InfoType& ensureInfo(const KeyType& key) key 49 Source/core/rendering/shapes/ShapeInfo.h if (InfoType* info = infoMap.get(&key)) key 51 Source/core/rendering/shapes/ShapeInfo.h typename InfoMap::AddResult result = infoMap.add(&key, InfoType::createInfo(key)); key 54 Source/core/rendering/shapes/ShapeInfo.h static void removeInfo(const KeyType& key) { infoMap().remove(&key); } key 55 Source/core/rendering/shapes/ShapeInfo.h static InfoType* info(const KeyType& key) { return infoMap().get(&key); } key 65 Source/core/rendering/style/KeyframeList.cpp if (keyframe.key() < 0 || keyframe.key() > 1) key 71 Source/core/rendering/style/KeyframeList.cpp if (m_keyframes[i].key() == keyframe.key()) { key 77 Source/core/rendering/style/KeyframeList.cpp if (m_keyframes[i].key() > keyframe.key()) { key 44 Source/core/rendering/style/KeyframeList.h KeyframeValue(double key, PassRefPtr<RenderStyle> style) key 45 Source/core/rendering/style/KeyframeList.h : m_key(key) key 55 Source/core/rendering/style/KeyframeList.h double key() const { return m_key; } key 56 Source/core/rendering/style/KeyframeList.h void setKey(double key) { m_key = key; } key 394 Source/core/rendering/svg/RenderSVGResourceFilter.cpp markClientForInvalidation(it->key, RepaintInvalidation); key 194 Source/core/rendering/svg/SVGResourcesCache.cpp Element* clientElement = toElement(it->key->node()); key 65 Source/core/rendering/svg/SVGTextLayoutAttributes.cpp fprintf(stderr, " ---> pos=%i, data={", it->key); key 107 Source/core/storage/Storage.cpp String key = this->key(i, exceptionState); key 110 Source/core/storage/Storage.cpp ASSERT(!key.isNull()); key 111 Source/core/storage/Storage.cpp String val = getItem(key, exceptionState); key 114 Source/core/storage/Storage.cpp names[i] = key; key 49 Source/core/storage/Storage.h String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); } key 50 Source/core/storage/Storage.h String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); } key 51 Source/core/storage/Storage.h void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); } key 52 Source/core/storage/Storage.h void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); } key 54 Source/core/storage/Storage.h bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); } key 75 Source/core/storage/StorageArea.cpp return m_storageArea->key(index); key 78 Source/core/storage/StorageArea.cpp String StorageArea::getItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) key 84 Source/core/storage/StorageArea.cpp return m_storageArea->getItem(key); key 87 Source/core/storage/StorageArea.cpp void StorageArea::setItem(const String& key, const String& value, ExceptionState& exceptionState, LocalFrame* frame) key 94 Source/core/storage/StorageArea.cpp m_storageArea->setItem(key, value, frame->document()->url(), result); key 96 Source/core/storage/StorageArea.cpp exceptionState.throwDOMException(QuotaExceededError, "Setting the value of '" + key + "' exceeded the quota."); key 99 Source/core/storage/StorageArea.cpp void StorageArea::removeItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) key 105 Source/core/storage/StorageArea.cpp m_storageArea->removeItem(key, frame->document()->url()); key 117 Source/core/storage/StorageArea.cpp bool StorageArea::contains(const String& key, ExceptionState& exceptionState, LocalFrame* frame) key 123 Source/core/storage/StorageArea.cpp return !getItem(key, exceptionState, frame).isNull(); key 143 Source/core/storage/StorageArea.cpp void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess) key 151 Source/core/storage/StorageArea.cpp frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); key 153 Source/core/storage/StorageArea.cpp InspectorInstrumentation::didDispatchDOMStorageEvent(*it, key, oldValue, newValue, LocalStorage, securityOrigin); key 170 Source/core/storage/StorageArea.cpp void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const blink::WebStorageNamespace& sessionNamespace, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess) key 179 Source/core/storage/StorageArea.cpp frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); key 181 Source/core/storage/StorageArea.cpp InspectorInstrumentation::didDispatchDOMStorageEvent(page, key, oldValue, newValue, SessionStorage, securityOrigin); key 60 Source/core/storage/StorageArea.h String key(unsigned index, ExceptionState&, LocalFrame* sourceFrame); key 61 Source/core/storage/StorageArea.h String getItem(const String& key, ExceptionState&, LocalFrame* sourceFrame); key 62 Source/core/storage/StorageArea.h void setItem(const String& key, const String& value, ExceptionState&, LocalFrame* sourceFrame); key 63 Source/core/storage/StorageArea.h void removeItem(const String& key, ExceptionState&, LocalFrame* sourceFrame); key 65 Source/core/storage/StorageArea.h bool contains(const String& key, ExceptionState&, LocalFrame* sourceFrame); key 70 Source/core/storage/StorageArea.h static void dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, key 72 Source/core/storage/StorageArea.h static void dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, key 51 Source/core/storage/StorageEvent.cpp PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) key 53 Source/core/storage/StorageEvent.cpp return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea)); key 61 Source/core/storage/StorageEvent.cpp StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) key 63 Source/core/storage/StorageEvent.cpp , m_key(key) key 74 Source/core/storage/StorageEvent.cpp , m_key(initializer.key) key 83 Source/core/storage/StorageEvent.cpp void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) key 90 Source/core/storage/StorageEvent.cpp m_key = key; key 40 Source/core/storage/StorageEvent.h String key; key 50 Source/core/storage/StorageEvent.h static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); key 54 Source/core/storage/StorageEvent.h const String& key() const { return m_key; } key 61 Source/core/storage/StorageEvent.h void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); key 72 Source/core/storage/StorageEvent.h StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); key 236 Source/core/svg/SVGDocumentExtensions.cpp toBeRemoved.append(it->key); key 258 Source/core/svg/SVGDocumentExtensions.cpp toBeRemoved.append(it->key); key 342 Source/core/svg/SVGDocumentExtensions.cpp SVGElement* referencedElement = it->key; key 364 Source/core/svg/SVGDocumentExtensions.cpp ASSERT(it->key == referencedElement); key 389 Source/core/svg/SVGDocumentExtensions.cpp ASSERT(it->key == referencedElement); key 218 Source/core/svg/SVGElement.h static unsigned hash(const QualifiedName& key) key 220 Source/core/svg/SVGElement.h if (key.hasPrefix()) { key 221 Source/core/svg/SVGElement.h QualifiedNameComponents components = { nullAtom.impl(), key.localName().impl(), key.namespaceURI().impl() }; key 224 Source/core/svg/SVGElement.h return DefaultHash<QualifiedName>::Hash::hash(key); key 87 Source/core/svg/animation/SMILTimeContainer.cpp ElementAttributePair key(target, attributeName); key 88 Source/core/svg/animation/SMILTimeContainer.cpp OwnPtr<AnimationsVector>& scheduled = m_scheduledAnimations.add(key, nullptr).storedValue->value; key 107 Source/core/svg/animation/SMILTimeContainer.cpp ElementAttributePair key(target, attributeName); key 108 Source/core/svg/animation/SMILTimeContainer.cpp AnimationsVector* scheduled = m_scheduledAnimations.get(key); key 1120 Source/core/xml/XMLHttpRequest.cpp if (isSetCookieHeader(it->key) && !securityOrigin()->canLoadLocalResources()) key 1123 Source/core/xml/XMLHttpRequest.cpp if (!m_sameOriginRequest && !isOnAccessControlResponseHeaderWhitelist(it->key) && !accessControlExposeHeaderSet.contains(it->key)) key 1126 Source/core/xml/XMLHttpRequest.cpp stringBuilder.append(it->key); key 201 Source/core/xml/XSLTProcessorLibxslt.cpp parameterArray[index++] = fastStrDup(it->key.utf8().data()); key 150 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java private static <K, T> Set<T> getOrCreateSetByKey(Map<K, Set<T>> map, K key) { key 151 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java Set<T> set = map.get(key); key 154 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/FunctionReceiverChecker.java map.put(key, set); key 98 Source/modules/crypto/CryptoResultImpl.cpp void CryptoResultImpl::completeWithKey(const blink::WebCryptoKey& key) key 104 Source/modules/crypto/CryptoResultImpl.cpp m_promiseResolver->resolve(Key::create(key)); key 130 Source/modules/crypto/Key.cpp Key::Key(const blink::WebCryptoKey& key) key 131 Source/modules/crypto/Key.cpp : m_key(key) key 50 Source/modules/crypto/Key.h static PassRefPtrWillBeRawPtr<Key> create(const blink::WebCryptoKey& key) key 52 Source/modules/crypto/Key.h return adoptRefWillBeNoop(new Key(key)); key 62 Source/modules/crypto/Key.h const blink::WebCryptoKey& key() const { return m_key; } key 57 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise startCryptoOperation(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferView* signature, ArrayBufferView* dataBuffer, ExceptionState& exceptionState) key 63 Source/modules/crypto/SubtleCrypto.cpp if (requiresKey && !key) { key 83 Source/modules/crypto/SubtleCrypto.cpp if (requiresKey && !key->canBeUsedForAlgorithm(algorithm, operationType, result.get())) key 91 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->encrypt(algorithm, key->key(), data, dataSize, result->result()); key 94 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->decrypt(algorithm, key->key(), data, dataSize, result->result()); key 97 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->sign(algorithm, key->key(), data, dataSize, result->result()); key 100 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->verifySignature(algorithm, key->key(), reinterpret_cast<const unsigned char*>(signature->baseAddress()), signature->byteLength(), data, dataSize, result->result()); key 120 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::encrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState) key 122 Source/modules/crypto/SubtleCrypto.cpp return startCryptoOperation(rawAlgorithm, key, Encrypt, 0, data, exceptionState); key 125 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::decrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState) key 127 Source/modules/crypto/SubtleCrypto.cpp return startCryptoOperation(rawAlgorithm, key, Decrypt, 0, data, exceptionState); key 130 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::sign(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState) key 132 Source/modules/crypto/SubtleCrypto.cpp return startCryptoOperation(rawAlgorithm, key, Sign, 0, data, exceptionState); key 135 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::verifySignature(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState& exceptionState) key 137 Source/modules/crypto/SubtleCrypto.cpp return startCryptoOperation(rawAlgorithm, key, Verify, signature, data, exceptionState); key 190 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::exportKey(const String& rawFormat, Key* key, ExceptionState& exceptionState) key 192 Source/modules/crypto/SubtleCrypto.cpp if (!key) { key 204 Source/modules/crypto/SubtleCrypto.cpp if (!key->extractable()) { key 209 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->exportKey(format, key->key(), result->result()); key 213 Source/modules/crypto/SubtleCrypto.cpp ScriptPromise SubtleCrypto::wrapKey(const String& rawFormat, Key* key, Key* wrappingKey, const Dictionary& rawWrapAlgorithm, ExceptionState& exceptionState) key 215 Source/modules/crypto/SubtleCrypto.cpp if (!key) { key 236 Source/modules/crypto/SubtleCrypto.cpp if (!key->extractable()) { key 244 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->wrapKey(format, key->key(), wrappingKey->key(), wrapAlgorithm, result->result()); key 285 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->unwrapKey(format, wrappedKeyData, wrappedKeyDataSize, unwrappingKey->key(), unwrapAlgorithm, unwrappedKeyAlgorithm, extractable, keyUsages, result->result()); key 177 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::webkitAddKey(HTMLMediaElement& element, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState& exceptionState) key 179 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp HTMLMediaElementEncryptedMedia::from(element).addKey(element.webMediaPlayer(), keySystem, key, initData, sessionId, exceptionState); key 182 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::addKey(blink::WebMediaPlayer* webMediaPlayer, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState& exceptionState) key 194 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp if (!key) { key 199 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp if (!key->length()) { key 216 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebMediaPlayer::MediaKeyException result = webMediaPlayer->addKey(keySystem, key->data(), key->length(), initDataPointer, initDataLength, sessionId); key 220 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::webkitAddKey(HTMLMediaElement& mediaElement, const String& keySystem, PassRefPtr<Uint8Array> key, ExceptionState& exceptionState) key 222 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp webkitAddKey(mediaElement, keySystem, key, Uint8Array::create(0), String(), exceptionState); key 26 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h static void webkitAddKey(HTMLMediaElement&, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState&); key 27 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h static void webkitAddKey(HTMLMediaElement&, const String& keySystem, PassRefPtr<Uint8Array> key, ExceptionState&); key 54 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h void addKey(blink::WebMediaPlayer*, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState&); key 186 Source/modules/indexeddb/IDBAny.cpp IDBAny::IDBAny(PassRefPtr<SharedBuffer> value, PassRefPtr<IDBKey> key, const IDBKeyPath& keyPath) key 188 Source/modules/indexeddb/IDBAny.cpp , m_idbKey(key) key 195 Source/modules/indexeddb/IDBAny.cpp IDBAny::IDBAny(PassRefPtr<IDBKey> key) key 197 Source/modules/indexeddb/IDBAny.cpp , m_idbKey(key) key 73 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(PassRefPtr<SharedBuffer> value, PassRefPtr<IDBKey> key, const IDBKeyPath& keyPath) key 75 Source/modules/indexeddb/IDBAny.h return adoptRef(new IDBAny(value, key, keyPath)); key 109 Source/modules/indexeddb/IDBAny.h const IDBKey* key() const; key 177 Source/modules/indexeddb/IDBCursor.cpp RefPtr<IDBKey> key = keyValue.isUndefined() || keyValue.isNull() ? nullptr : scriptValueToIDBKey(&requestState, keyValue); key 178 Source/modules/indexeddb/IDBCursor.cpp if (key && !key->isValid()) { key 182 Source/modules/indexeddb/IDBCursor.cpp continueFunction(key.release(), nullptr, exceptionState); key 189 Source/modules/indexeddb/IDBCursor.cpp RefPtr<IDBKey> key = scriptValueToIDBKey(&requestState, keyValue); key 191 Source/modules/indexeddb/IDBCursor.cpp if (!key->isValid() || !primaryKey->isValid()) { key 195 Source/modules/indexeddb/IDBCursor.cpp continueFunction(key.release(), primaryKey.release(), exceptionState); key 198 Source/modules/indexeddb/IDBCursor.cpp void IDBCursor::continueFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, ExceptionState& exceptionState) key 200 Source/modules/indexeddb/IDBCursor.cpp ASSERT(!primaryKey || (key && primaryKey)); key 221 Source/modules/indexeddb/IDBCursor.cpp if (key) { key 224 Source/modules/indexeddb/IDBCursor.cpp const bool ok = m_key->isLessThan(key.get()) key 225 Source/modules/indexeddb/IDBCursor.cpp || (primaryKey && m_key->isEqual(key.get()) && m_primaryKey->isLessThan(primaryKey.get())); key 232 Source/modules/indexeddb/IDBCursor.cpp const bool ok = key->isLessThan(m_key.get()) key 233 Source/modules/indexeddb/IDBCursor.cpp || (primaryKey && key->isEqual(m_key.get()) && primaryKey->isLessThan(m_primaryKey.get())); key 245 Source/modules/indexeddb/IDBCursor.cpp m_backend->continueFunction(key, primaryKey, WebIDBCallbacksImpl::create(m_request).leakPtr()); key 353 Source/modules/indexeddb/IDBCursor.cpp void IDBCursor::setValueReady(PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) key 355 Source/modules/indexeddb/IDBCursor.cpp m_key = key; key 63 Source/modules/indexeddb/IDBCursor.h ScriptValue key(ExecutionContext*); key 70 Source/modules/indexeddb/IDBCursor.h void continueFunction(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 71 Source/modules/indexeddb/IDBCursor.h void continuePrimaryKey(ExecutionContext*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&); key 396 Source/modules/indexeddb/IDBDatabase.cpp ASSERT(it->key != IDBObjectStoreMetadata::InvalidId); key 397 Source/modules/indexeddb/IDBDatabase.cpp return it->key; key 157 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::get(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState) key 160 Source/modules/indexeddb/IDBIndex.cpp return getInternal(context, key, exceptionState, false); key 163 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::getKey(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState) key 166 Source/modules/indexeddb/IDBIndex.cpp return getInternal(context, key, exceptionState, true); key 169 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::getInternal(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState, bool keyOnly) key 184 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); key 60 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> openCursor(ExecutionContext*, const ScriptValue& key, const String& direction, ExceptionState&); key 63 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> get(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 64 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> getKey(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 77 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> getInternal(ExecutionContext*, const ScriptValue& key, ExceptionState&, bool keyOnly); key 47 Source/modules/indexeddb/IDBKeyRange.cpp RefPtr<IDBKey> key = scriptValueToIDBKey(&requestState, value); key 48 Source/modules/indexeddb/IDBKeyRange.cpp if (!key || !key->isValid()) { key 53 Source/modules/indexeddb/IDBKeyRange.cpp return adoptRef(new IDBKeyRange(key, key, LowerBoundClosed, UpperBoundClosed)); key 79 Source/modules/indexeddb/IDBKeyRange.cpp RefPtr<IDBKey> key = prpKey; key 80 Source/modules/indexeddb/IDBKeyRange.cpp if (!key || !key->isValid()) { key 85 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); key 91 Source/modules/indexeddb/IDBKeyRange.cpp RefPtr<IDBKey> key = scriptValueToIDBKey(&requestState, keyValue); key 92 Source/modules/indexeddb/IDBKeyRange.cpp if (!key || !key->isValid()) { key 97 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); key 68 Source/modules/indexeddb/IDBKeyRange.h static PassRefPtr<IDBKeyRange> only(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 80 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::get(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState) key 95 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); key 131 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::add(ScriptState* state, ScriptValue& value, const ScriptValue& key, ExceptionState& exceptionState) key 134 Source/modules/indexeddb/IDBObjectStore.cpp return put(WebIDBDatabase::AddOnly, IDBAny::create(this), state, value, key, exceptionState); key 137 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::put(ScriptState* state, ScriptValue& value, const ScriptValue& key, ExceptionState& exceptionState) key 140 Source/modules/indexeddb/IDBObjectStore.cpp return put(WebIDBDatabase::AddOrUpdate, IDBAny::create(this), state, value, key, exceptionState); key 147 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKey> key = keyValue.isUndefined() ? nullptr : scriptValueToIDBKey(&requestState, keyValue); key 148 Source/modules/indexeddb/IDBObjectStore.cpp return put(putMode, source, state, value, key.release(), exceptionState); key 153 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKey> key = prpKey; key 188 Source/modules/indexeddb/IDBObjectStore.cpp if (putMode != WebIDBDatabase::CursorUpdate && usesInLineKeys && key) { key 192 Source/modules/indexeddb/IDBObjectStore.cpp if (!usesInLineKeys && !hasKeyGenerator && !key) { key 213 Source/modules/indexeddb/IDBObjectStore.cpp key = keyPathKey; key 215 Source/modules/indexeddb/IDBObjectStore.cpp if (key && !key->isValid()) { key 225 Source/modules/indexeddb/IDBObjectStore.cpp indexIds.append(it->key); key 233 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->put(m_transaction->id(), id(), blink::WebData(valueBuffer), key.release(), static_cast<WebIDBDatabase::PutMode>(putMode), WebIDBCallbacksImpl::create(request).leakPtr(), indexIds, indexKeys); key 237 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::deleteFunction(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState) key 257 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); key 615 Source/modules/indexeddb/IDBObjectStore.cpp ASSERT(it->key != IDBIndexMetadata::InvalidId); key 616 Source/modules/indexeddb/IDBObjectStore.cpp return it->key; key 70 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> get(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 71 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> add(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); key 72 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> put(ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); key 73 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> deleteFunction(ExecutionContext*, const ScriptValue& key, ExceptionState&); key 106 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> put(blink::WebIDBDatabase::PutMode, PassRefPtr<IDBAny> source, ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); key 183 Source/modules/indexeddb/IDBRequest.cpp void IDBRequest::setResultCursor(PassRefPtr<IDBCursor> cursor, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) key 186 Source/modules/indexeddb/IDBRequest.cpp m_cursorKey = key; key 242 Source/modules/indexeddb/IDBRequest.cpp void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) key 260 Source/modules/indexeddb/IDBRequest.cpp setResultCursor(cursor, key, primaryKey, value); key 354 Source/modules/indexeddb/IDBRequest.cpp void IDBRequest::onSuccess(PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) key 361 Source/modules/indexeddb/IDBRequest.cpp setResultCursor(m_pendingCursor.release(), key, primaryKey, value); key 256 Source/modules/indexeddb/IDBTransaction.cpp it->key->setMetadata(it->value); key 315 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp static PassRefPtr<IDBKey> idbKeyFromInspectorObject(JSONObject* key) key 320 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp if (!key->getString("type", &type)) key 330 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp if (!key->getNumber("number", &number)) key 335 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp if (!key->getString("string", &string)) key 340 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp if (!key->getNumber("date", &date)) key 345 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<JSONArray> array = key->getArray("array"); key 451 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp .setKey(idbCursor->key(context).toJSONValue(scriptState)->toJSONString()) key 81 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onSuccess(WebIDBCursor* cursor, const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value) key 83 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp m_request->onSuccess(adoptPtr(cursor), key, primaryKey, value); key 91 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key) key 93 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp m_request->onSuccess(key); key 101 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onSuccess(const WebData& value, const WebIDBKey& key, const WebIDBKeyPath& keyPath) key 103 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp m_request->onSuccess(value, key, keyPath); key 116 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key, const WebIDBKey& primaryKey, const WebData& value) key 118 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp m_request->onSuccess(key, primaryKey, value); key 76 Source/modules/mediastream/MediaConstraintsImpl.cpp mandatoryConstraintsVector.append(blink::WebMediaConstraint(iter->key, iter->value)); key 100 Source/modules/mediastream/MediaConstraintsImpl.cpp String key = localNames[0]; key 102 Source/modules/mediastream/MediaConstraintsImpl.cpp ok = constraint.get(key, value); key 105 Source/modules/mediastream/MediaConstraintsImpl.cpp optionalConstraintsVector.append(blink::WebMediaConstraint(key, value)); key 50 Source/modules/mediastream/RTCStatsReport.cpp result.append(it->key); key 84 Source/modules/websockets/WebSocketExtensionDispatcher.cpp m_acceptedExtensionsBuilder.append(iterator->key); key 134 Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp HashMap<String, String>::const_iterator parsed = parsedParameters.find(iterator->key); key 114 Source/modules/websockets/WebSocketHandshake.cpp unsigned char key[nonceSize]; key 115 Source/modules/websockets/WebSocketHandshake.cpp cryptographicallyRandomValues(key, nonceSize); key 116 Source/modules/websockets/WebSocketHandshake.cpp return base64Encode(reinterpret_cast<char*>(key), nonceSize); key 65 Source/platform/Cookie.h static unsigned hash(Cookie key) key 67 Source/platform/Cookie.h return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure; key 332 Source/platform/JSONValues.cpp doubleQuoteString(it->key, output); key 41 Source/platform/LinkHash.h static unsigned hash(LinkHash key) { return static_cast<unsigned>(key); } key 56 Source/platform/RefCountedSupplement.h static void provideTo(Supplementable<T>& host, const char* key, PassRefPtr<ThisType> supplement) key 58 Source/platform/RefCountedSupplement.h host.provideSupplement(key, adoptPtr(new Wrapper(supplement))); key 61 Source/platform/RefCountedSupplement.h static ThisType* from(Supplementable<T>& host, const char* key) key 63 Source/platform/RefCountedSupplement.h Supplement<T>* found = static_cast<Supplement<T>*>(host.requireSupplement(key)); key 134 Source/platform/Supplementable.h static void provideTo(SupplementableBase<T, isGarbageCollected>& host, const char* key, typename SupplementableTraits<T, isGarbageCollected>::SupplementArgumentType supplement) key 136 Source/platform/Supplementable.h host.provideSupplement(key, supplement); key 139 Source/platform/Supplementable.h static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isGarbageCollected>& host, const char* key) key 141 Source/platform/Supplementable.h return host.requireSupplement(key); key 144 Source/platform/Supplementable.h static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isGarbageCollected>* host, const char* key) key 146 Source/platform/Supplementable.h return host ? host->requireSupplement(key) : 0; key 173 Source/platform/Supplementable.h void provideSupplement(const char* key, typename SupplementableTraits<T, isGarbageCollected>::SupplementArgumentType supplement) key 176 Source/platform/Supplementable.h ASSERT(!this->m_supplements.get(key)); key 177 Source/platform/Supplementable.h this->m_supplements.set(key, supplement); key 180 Source/platform/Supplementable.h void removeSupplement(const char* key) key 183 Source/platform/Supplementable.h this->m_supplements.remove(key); key 186 Source/platform/Supplementable.h SupplementBase<T, isGarbageCollected>* requireSupplement(const char* key) key 189 Source/platform/Supplementable.h return this->m_supplements.get(key); key 63 Source/platform/exported/WebCryptoKey.cpp WebCryptoKey key; key 64 Source/platform/exported/WebCryptoKey.cpp key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages)); key 65 Source/platform/exported/WebCryptoKey.cpp return key; key 74 Source/platform/exported/WebCryptoResult.cpp void WebCryptoResult::completeWithKey(const WebCryptoKey& key) key 76 Source/platform/exported/WebCryptoResult.cpp ASSERT(!key.isNull()); key 77 Source/platform/exported/WebCryptoResult.cpp m_impl->completeWithKey(key); key 194 Source/platform/exported/WebURLRequest.cpp visitor->visitHeader(it->key, it->value); key 271 Source/platform/exported/WebURLResponse.cpp visitor->visitHeader(it->key, it->value); key 97 Source/platform/fonts/FontCache.cpp FontCacheKey key = fontDescription.cacheKey(familyName); key 100 Source/platform/fonts/FontCache.cpp FontPlatformDataCache::iterator it = gFontPlatformDataCache->find(key); key 103 Source/platform/fonts/FontCache.cpp gFontPlatformDataCache->set(key, adoptPtr(result)); key 117 Source/platform/fonts/FontCache.cpp gFontPlatformDataCache->set(key, adoptPtr(new FontPlatformData(*result))); // Cache the result under the old name. key 132 Source/platform/fonts/FontCache.cpp PassRefPtr<OpenTypeVerticalData> FontCache::getVerticalData(const FontFileKey& key, const FontPlatformData& platformData) key 135 Source/platform/fonts/FontCache.cpp FontVerticalDataCache::iterator result = fontVerticalDataCache.find(key); key 142 Source/platform/fonts/FontCache.cpp fontVerticalDataCache.set(key, verticalData); key 198 Source/platform/fonts/FontCache.cpp keysToRemove.append(platformData->key); key 224 Source/platform/fonts/FontCache.cpp keysToRemove.append(verticalData->key); key 98 Source/platform/fonts/FontCacheKey.h static unsigned hash(const FontCacheKey& key) key 100 Source/platform/fonts/FontCacheKey.h return key.hash(); key 62 Source/platform/fonts/FontDataCache.h DEFINE_STATIC_LOCAL(FontPlatformData, key, (0.f, false, false)); key 63 Source/platform/fonts/FontDataCache.h return key; key 409 Source/platform/fonts/GlyphPageTreeNode.cpp printf("%s\t%p %s\n", indent.data(), it->key, it->key->description().utf8().data()); key 428 Source/platform/fonts/GlyphPageTreeNode.cpp printf("\nPage %d:\n", it->key); key 429 Source/platform/fonts/GlyphPageTreeNode.cpp showGlyphPageTree(it->key); key 160 Source/platform/fonts/SimpleFontData.h const SimpleFontData* getCompositeFontReferenceFontData(NSFont *key) const; key 101 Source/platform/fonts/WidthCache.h static unsigned hash(const SmallStringKey& key) { return key.hash(); } key 108 Source/platform/fonts/WidthCache.h static bool isEmptyValue(const SmallStringKey& key) { return key.isHashTableEmptyValue(); } key 130 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp CachedShapingResults* find(const std::wstring& key) const; key 133 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp bool insert(const std::wstring& key, CachedShapingResults* run); key 153 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp bool HarfBuzzRunCache::insert(const std::wstring& key, CachedShapingResults* data) key 156 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp m_harfBuzzRunMap.insert(CachedShapingResultsMap::value_type(key, data)); key 178 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp inline CachedShapingResults* HarfBuzzRunCache::find(const std::wstring& key) const key 180 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp CachedShapingResultsMap::const_iterator it = m_harfBuzzRunMap.find(key); key 816 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp std::wstring key(src, src + currentRun->numCharacters()); key 818 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp CachedShapingResults* cachedResults = runCache.find(key); key 857 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp runCache.insert(key, new CachedShapingResults(harfBuzzBuffer.get(), m_font, props.direction)); key 36 Source/platform/fonts/mac/SimpleFontDataCoreText.cpp unsigned key = typesettingFeatures + 1; key 37 Source/platform/fonts/mac/SimpleFontDataCoreText.cpp HashMap<unsigned, RetainPtr<CFDictionaryRef> >::AddResult addResult = m_CFStringAttributes.add(key, RetainPtr<CFDictionaryRef>()); key 30 Source/platform/geometry/IntSizeHash.h static unsigned hash(const WebCore::IntSize& key) { return pairIntHash(key.width(), key.height()); } key 368 Source/platform/graphics/ImageDecodingStore.cpp typename U::KeyType key = cacheEntry->cacheKey(); key 370 Source/platform/graphics/ImageDecodingStore.cpp result.storedValue->value.add(key); key 371 Source/platform/graphics/ImageDecodingStore.cpp cacheMap->add(key, cacheEntry); key 72 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp FilterColorSpacePair key(effect, colorSpace); key 73 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp FilterBuilderHashMap::iterator it = m_map.find(key); key 80 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp m_map.set(key, filter); key 37 Source/platform/graphics/skia/SkSizeHash.h static unsigned hash(const SkSize& key) { return pairIntHash(key.width(), key.height()); } key 61 Source/platform/graphics/skia/SkSizeHash.h static unsigned hash(const SkISize& key) { return pairIntHash(key.width(), key.height()); } key 893 Source/platform/heap/Handle.h static unsigned hash(const U& key) { return PtrHash<T*>::hash(key); } key 905 Source/platform/heap/Handle.h static unsigned hash(const RefPtr<P>& key) { return hash(key.get()); } key 1317 Source/platform/heap/Heap.h return hasDeadMember(visitor, t.key) || hasDeadMember(visitor, t.value); key 1607 Source/platform/heap/Heap.h CollectionBackingTraceTrait<WTF::ShouldBeTraced<typename Traits::KeyTraits>::value, Traits::KeyTraits::isWeak, markWeakMembersStrongly, Key, typename Traits::KeyTraits>::mark(visitor, self.key); key 63 Source/platform/heap/HeapTest.cpp static unsigned hash(const ThreadMarker& key) key 65 Source/platform/heap/HeapTest.cpp return static_cast<unsigned>(reinterpret_cast<uintptr_t>(key.m_creatingThread) + key.m_num); key 2209 Source/platform/heap/HeapTest.cpp int key = it->key->value(); key 2211 Source/platform/heap/HeapTest.cpp EXPECT_TRUE(key >= 0 && key < 1100); key 2968 Source/platform/heap/HeapTest.cpp void* key = &IntWrapper::s_destructorCalls; key 2973 Source/platform/heap/HeapTest.cpp map->add(key, IntVector()); key 2975 Source/platform/heap/HeapTest.cpp HeapHashMap<void*, IntVector>::iterator it = map->find(key); key 2976 Source/platform/heap/HeapTest.cpp EXPECT_EQ(0u, map->get(key).size()); key 2979 Source/platform/heap/HeapTest.cpp EXPECT_EQ(1u, map->get(key).size()); key 2983 Source/platform/heap/HeapTest.cpp EXPECT_EQ(1u, map->get(key).size()); key 3016 Source/platform/heap/HeapTest.cpp void* key = &IntWrapper::s_destructorCalls; key 3021 Source/platform/heap/HeapTest.cpp map->add(key, IntSet()); key 3023 Source/platform/heap/HeapTest.cpp HeapHashMap<void*, IntSet>::iterator it = map->find(key); key 3024 Source/platform/heap/HeapTest.cpp EXPECT_EQ(0u, map->get(key).size()); key 3027 Source/platform/heap/HeapTest.cpp EXPECT_EQ(1u, map->get(key).size()); key 3031 Source/platform/heap/HeapTest.cpp EXPECT_EQ(1u, map->get(key).size()); key 441 Source/platform/heap/Visitor.h CollectionBackingTraceTrait<WTF::ShouldBeTraced<KeyTraits>::value, KeyTraits::isWeak, false, Key, KeyTraits>::mark(visitor, it->key); key 94 Source/platform/mhtml/MHTMLParser.cpp String key; key 100 Source/platform/mhtml/MHTMLParser.cpp ASSERT(!key.isEmpty()); key 105 Source/platform/mhtml/MHTMLParser.cpp if (!key.isEmpty()) { key 106 Source/platform/mhtml/MHTMLParser.cpp if (keyValuePairs.find(key) != keyValuePairs.end()) key 107 Source/platform/mhtml/MHTMLParser.cpp WTF_LOG_ERROR("Key duplicate found in MIME header. Key is '%s', previous value replaced.", key.ascii().data()); key 108 Source/platform/mhtml/MHTMLParser.cpp keyValuePairs.add(key, value.toString().stripWhiteSpace()); key 109 Source/platform/mhtml/MHTMLParser.cpp key = String(); key 117 Source/platform/mhtml/MHTMLParser.cpp key = line.substring(0, semiColonIndex).lower().stripWhiteSpace(); key 121 Source/platform/mhtml/MHTMLParser.cpp if (!key.isEmpty()) key 122 Source/platform/mhtml/MHTMLParser.cpp keyValuePairs.set(key, value.toString().stripWhiteSpace()); key 186 Source/platform/network/FormDataBuilder.cpp void FormDataBuilder::addKeyValuePairAsFormData(Vector<char>& buffer, const CString& key, const CString& value, FormData::EncodingType encodingType) key 191 Source/platform/network/FormDataBuilder.cpp append(buffer, key); key 197 Source/platform/network/FormDataBuilder.cpp encodeStringAsFormData(buffer, key); key 47 Source/platform/network/FormDataBuilder.h static void addKeyValuePairAsFormData(Vector<char>&, const CString& key, const CString& value, FormData::EncodingType = FormData::FormURLEncoded); key 54 Source/platform/network/HTTPHeaderMap.cpp data->uncheckedAppend(make_pair(it->key.string().isolatedCopy(), it->value.string().isolatedCopy())); key 86 Source/platform/network/HTTPHeaderMap.cpp static bool equal(const AtomicString& key, const char* cString) key 88 Source/platform/network/HTTPHeaderMap.cpp return equalIgnoringCase(key, cString); key 251 Source/platform/network/HTTPParsers.cpp String key = keyValuePairs[i].left(valueStartPos).stripWhiteSpace(); key 253 Source/platform/network/HTTPParsers.cpp if (key.isEmpty() || key != "filename") key 222 Source/platform/network/ParsedContentType.cpp void ParsedContentType::setContentTypeParameter(const SubstringRange& key, const SubstringRange& value) key 224 Source/platform/network/ParsedContentType.cpp m_parameters.set(substringForRange(m_contentType, key), substringForRange(m_contentType, value)); key 252 Source/platform/network/ResourceRequest.cpp addHTTPHeaderField(it->key, it->value); key 36 Source/platform/weborigin/KURLHash.h static unsigned hash(const KURL& key) key 38 Source/platform/weborigin/KURLHash.h return key.string().impl()->hash(); key 39 Source/web/WebIDBKey.cpp WebIDBKey key; key 40 Source/web/WebIDBKey.cpp key.assignArray(array); key 41 Source/web/WebIDBKey.cpp return key; key 46 Source/web/WebIDBKey.cpp WebIDBKey key; key 47 Source/web/WebIDBKey.cpp key.assignBinary(binary); key 48 Source/web/WebIDBKey.cpp return key; key 53 Source/web/WebIDBKey.cpp WebIDBKey key; key 54 Source/web/WebIDBKey.cpp key.assignString(string); key 55 Source/web/WebIDBKey.cpp return key; key 60 Source/web/WebIDBKey.cpp WebIDBKey key; key 61 Source/web/WebIDBKey.cpp key.assignDate(date); key 62 Source/web/WebIDBKey.cpp return key; key 67 Source/web/WebIDBKey.cpp WebIDBKey key; key 68 Source/web/WebIDBKey.cpp key.assignNumber(number); key 69 Source/web/WebIDBKey.cpp return key; key 74 Source/web/WebIDBKey.cpp WebIDBKey key; key 75 Source/web/WebIDBKey.cpp key.assignInvalid(); key 76 Source/web/WebIDBKey.cpp return key; key 81 Source/web/WebIDBKey.cpp WebIDBKey key; key 82 Source/web/WebIDBKey.cpp key.assignNull(); key 83 Source/web/WebIDBKey.cpp return key; key 129 Source/web/WebIDBKey.cpp RefPtr<IDBKey> key = array[i]; key 130 Source/web/WebIDBKey.cpp switch (key->type()) { key 132 Source/web/WebIDBKey.cpp convertToWebIDBKeyArray(key->array(), subkeys); key 136 Source/web/WebIDBKey.cpp keys[i] = WebIDBKey::createBinary(key->binary()); key 139 Source/web/WebIDBKey.cpp keys[i] = WebIDBKey::createString(key->string()); key 142 Source/web/WebIDBKey.cpp keys[i] = WebIDBKey::createDate(key->date()); key 145 Source/web/WebIDBKey.cpp keys[i] = WebIDBKey::createNumber(key->number()); key 370 Source/web/WebInputEventFactoryWin.cpp typedef SHORT (WINAPI *GetKeyStateFunction)(int key); key 44 Source/web/WebStorageEventDispatcherImpl.cpp const WebString& key, const WebString& oldValue, key 51 Source/web/WebStorageEventDispatcherImpl.cpp key, oldValue, newValue, securityOrigin.get(), pageURL, key 56 Source/web/WebStorageEventDispatcherImpl.cpp const WebString& key, const WebString& oldValue, key 63 Source/web/WebStorageEventDispatcherImpl.cpp key, oldValue, newValue, securityOrigin.get(), pageURL, key 3256 Source/web/WebViewImpl.cpp bool WebViewImpl::inspectorSetting(const WebString& key, WebString* value) const key 3258 Source/web/WebViewImpl.cpp if (!m_inspectorSettingsMap->contains(key)) key 3260 Source/web/WebViewImpl.cpp *value = m_inspectorSettingsMap->get(key); key 3264 Source/web/WebViewImpl.cpp void WebViewImpl::setInspectorSetting(const WebString& key, key 3267 Source/web/WebViewImpl.cpp m_inspectorSettingsMap->set(key, value); key 3268 Source/web/WebViewImpl.cpp client()->didUpdateInspectorSetting(key, value); key 267 Source/web/WebViewImpl.h virtual bool inspectorSetting(const WebString& key, WebString* value) const OVERRIDE; key 268 Source/web/WebViewImpl.h virtual void setInspectorSetting(const WebString& key, const WebString& value) OVERRIDE; key 229 Source/wtf/HashCountedSet.h vector[i] = (*it).key; key 41 Source/wtf/HashFunctions.h unsigned key = key8; key 42 Source/wtf/HashFunctions.h key += ~(key << 15); key 43 Source/wtf/HashFunctions.h key ^= (key >> 10); key 44 Source/wtf/HashFunctions.h key += (key << 3); key 45 Source/wtf/HashFunctions.h key ^= (key >> 6); key 46 Source/wtf/HashFunctions.h key += ~(key << 11); key 47 Source/wtf/HashFunctions.h key ^= (key >> 16); key 48 Source/wtf/HashFunctions.h return key; key 54 Source/wtf/HashFunctions.h unsigned key = key16; key 55 Source/wtf/HashFunctions.h key += ~(key << 15); key 56 Source/wtf/HashFunctions.h key ^= (key >> 10); key 57 Source/wtf/HashFunctions.h key += (key << 3); key 58 Source/wtf/HashFunctions.h key ^= (key >> 6); key 59 Source/wtf/HashFunctions.h key += ~(key << 11); key 60 Source/wtf/HashFunctions.h key ^= (key >> 16); key 61 Source/wtf/HashFunctions.h return key; key 65 Source/wtf/HashFunctions.h inline unsigned intHash(uint32_t key) key 67 Source/wtf/HashFunctions.h key += ~(key << 15); key 68 Source/wtf/HashFunctions.h key ^= (key >> 10); key 69 Source/wtf/HashFunctions.h key += (key << 3); key 70 Source/wtf/HashFunctions.h key ^= (key >> 6); key 71 Source/wtf/HashFunctions.h key += ~(key << 11); key 72 Source/wtf/HashFunctions.h key ^= (key >> 16); key 73 Source/wtf/HashFunctions.h return key; key 77 Source/wtf/HashFunctions.h inline unsigned intHash(uint64_t key) key 79 Source/wtf/HashFunctions.h key += ~(key << 32); key 80 Source/wtf/HashFunctions.h key ^= (key >> 22); key 81 Source/wtf/HashFunctions.h key += ~(key << 13); key 82 Source/wtf/HashFunctions.h key ^= (key >> 8); key 83 Source/wtf/HashFunctions.h key += (key << 3); key 84 Source/wtf/HashFunctions.h key ^= (key >> 15); key 85 Source/wtf/HashFunctions.h key += ~(key << 27); key 86 Source/wtf/HashFunctions.h key ^= (key >> 31); key 87 Source/wtf/HashFunctions.h return static_cast<unsigned>(key); key 103 Source/wtf/HashFunctions.h static unsigned hash(T key) { return intHash(static_cast<typename IntTypes<sizeof(T)>::UnsignedType>(key)); } key 110 Source/wtf/HashFunctions.h static unsigned hash(T key) key 112 Source/wtf/HashFunctions.h return intHash(bitwise_cast<Bits>(key)); key 124 Source/wtf/HashFunctions.h static unsigned hash(T key) key 130 Source/wtf/HashFunctions.h return IntHash<uintptr_t>::hash(reinterpret_cast<uintptr_t>(key)); key 140 Source/wtf/HashFunctions.h static unsigned hash(const RefPtr<P>& key) { return hash(key.get()); } key 148 Source/wtf/HashFunctions.h static unsigned hash(const RawPtr<P>& key) { return hash(key.get()); } key 94 Source/wtf/HashIterators.h const KeyType* get() const { return &(m_impl.get()->key); } key 129 Source/wtf/HashIterators.h KeyType* get() const { return &(m_impl.get()->key); } key 40 Source/wtf/HashMap.h static const typename T::KeyType& extract(const T& p) { return p.key; } key 255 Source/wtf/HashMap.h return isHashTraitsEmptyValue<KeyTraits>(value.key); key 261 Source/wtf/HashMap.h template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); } key 263 Source/wtf/HashMap.h template<typename T, typename U, typename V> static void translate(T& location, const U& key, const V& mapped) key 265 Source/wtf/HashMap.h location.key = key; key 272 Source/wtf/HashMap.h template<typename T> static unsigned hash(const T& key) { return Translator::hash(key); } key 274 Source/wtf/HashMap.h template<typename T, typename U, typename V> static void translate(T& location, const U& key, const V& mapped, unsigned hashCode) key 276 Source/wtf/HashMap.h Translator::translate(location.key, key, hashCode); key 324 Source/wtf/HashMap.h inline typename HashMap<T, U, V, W, X, Y>::iterator HashMap<T, U, V, W, X, Y>::find(KeyPeekInType key) key 326 Source/wtf/HashMap.h return m_impl.find(key); key 330 Source/wtf/HashMap.h inline typename HashMap<T, U, V, W, X, Y>::const_iterator HashMap<T, U, V, W, X, Y>::find(KeyPeekInType key) const key 332 Source/wtf/HashMap.h return m_impl.find(key); key 336 Source/wtf/HashMap.h inline bool HashMap<T, U, V, W, X, Y>::contains(KeyPeekInType key) const key 338 Source/wtf/HashMap.h return m_impl.contains(key); key 367 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::inlineAdd(KeyPeekInType key, MappedPassInReferenceType mapped) key 369 Source/wtf/HashMap.h return m_impl.template add<HashMapTranslator<ValueTraits, HashFunctions> >(key, mapped); key 374 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::set(KeyPeekInType key, MappedPassInType mapped) key 376 Source/wtf/HashMap.h AddResult result = inlineAdd(key, mapped); key 387 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::add(const TYPE& key, MappedPassInType value) key 389 Source/wtf/HashMap.h return m_impl.template addPassingHashCode<HashMapTranslatorAdapter<ValueTraits, HashTranslator> >(key, value); key 394 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::add(KeyPeekInType key, MappedPassInType mapped) key 396 Source/wtf/HashMap.h return inlineAdd(key, mapped); key 401 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::get(KeyPeekInType key) const key 403 Source/wtf/HashMap.h ValueType* entry = const_cast<HashTableType&>(m_impl).lookup(key); key 416 Source/wtf/HashMap.h inline void HashMap<T, U, V, W, X, Y>::remove(KeyPeekInType key) key 418 Source/wtf/HashMap.h remove(find(key)); key 429 Source/wtf/HashMap.h HashMap<T, U, V, W, X, Y>::take(KeyPeekInType key) key 431 Source/wtf/HashMap.h iterator it = find(key); key 440 Source/wtf/HashMap.h inline bool HashMap<T, U, V, W, X, Y>::isValidKey(KeyPeekInType key) key 442 Source/wtf/HashMap.h if (KeyTraits::isDeletedValue(key)) key 446 Source/wtf/HashMap.h if (key == KeyTraits::emptyValue()) key 449 Source/wtf/HashMap.h if (isHashTraitsEmptyValue<KeyTraits>(key)) key 467 Source/wtf/HashMap.h const_iterator bPos = b.find(it->key); key 496 Source/wtf/HashMap.h delete it->key; key 63 Source/wtf/HashMapTest.cpp static int bucketForKey(double key) key 65 Source/wtf/HashMapTest.cpp return DefaultHash<double>::Hash::hash(key) & (TestDoubleHashTraits::minimumTableSize - 1); key 121 Source/wtf/HashMapTest.cpp ASSERT_EQ(iter->key, ownCounter->get()); key 136 Source/wtf/HashSet.h template<typename T> static unsigned hash(const T& key) { return Translator::hash(key); } key 138 Source/wtf/HashSet.h template<typename T, typename U> static void translate(T& location, const U& key, const U&, unsigned hashCode) key 140 Source/wtf/HashSet.h Translator::translate(location, key, hashCode); key 219 Source/wtf/HashTable.h swap(a.key, b.key); key 229 Source/wtf/HashTable.h template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); } key 355 Source/wtf/HashTable.h template<typename HashTranslator, typename T, typename Extra> AddResult add(const T& key, const Extra&); key 356 Source/wtf/HashTable.h template<typename HashTranslator, typename T, typename Extra> AddResult addPassingHashCode(const T& key, const Extra&); key 358 Source/wtf/HashTable.h iterator find(KeyPeekInType key) { return find<IdentityTranslatorType>(key); } key 359 Source/wtf/HashTable.h const_iterator find(KeyPeekInType key) const { return find<IdentityTranslatorType>(key); } key 360 Source/wtf/HashTable.h bool contains(KeyPeekInType key) const { return contains<IdentityTranslatorType>(key); } key 375 Source/wtf/HashTable.h ValueType* lookup(KeyPeekInType key) { return lookup<IdentityTranslatorType>(key); } key 395 Source/wtf/HashTable.h LookupType lookupForWriting(const Key& key) { return lookupForWriting<IdentityTranslatorType>(key); }; key 495 Source/wtf/HashTable.h inline unsigned doubleHash(unsigned key) key 497 Source/wtf/HashTable.h key = ~key + (key >> 23); key 498 Source/wtf/HashTable.h key ^= (key << 12); key 499 Source/wtf/HashTable.h key ^= (key >> 7); key 500 Source/wtf/HashTable.h key ^= (key << 2); key 501 Source/wtf/HashTable.h key ^= (key >> 20); key 502 Source/wtf/HashTable.h return key; key 507 Source/wtf/HashTable.h inline Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookup(const T& key) key 515 Source/wtf/HashTable.h unsigned h = HashTranslator::hash(key); key 533 Source/wtf/HashTable.h if (HashTranslator::equal(Extractor::extract(*entry), key)) key 542 Source/wtf/HashTable.h if (!isDeletedBucket(*entry) && HashTranslator::equal(Extractor::extract(*entry), key)) key 563 Source/wtf/HashTable.h inline typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::LookupType HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookupForWriting(const T& key) key 570 Source/wtf/HashTable.h unsigned h = HashTranslator::hash(key); key 593 Source/wtf/HashTable.h if (HashTranslator::equal(Extractor::extract(*entry), key)) key 604 Source/wtf/HashTable.h else if (HashTranslator::equal(Extractor::extract(*entry), key)) key 625 Source/wtf/HashTable.h inline typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::FullLookupType HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::fullLookupForWriting(const T& key) key 632 Source/wtf/HashTable.h unsigned h = HashTranslator::hash(key); key 655 Source/wtf/HashTable.h if (HashTranslator::equal(Extractor::extract(*entry), key)) key 666 Source/wtf/HashTable.h else if (HashTranslator::equal(Extractor::extract(*entry), key)) key 712 Source/wtf/HashTable.h typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::add(const T& key, const Extra& extra) key 722 Source/wtf/HashTable.h unsigned h = HashTranslator::hash(key); key 745 Source/wtf/HashTable.h if (HashTranslator::equal(Extractor::extract(*entry), key)) key 756 Source/wtf/HashTable.h else if (HashTranslator::equal(Extractor::extract(*entry), key)) key 782 Source/wtf/HashTable.h HashTranslator::translate(*entry, key, extra); key 794 Source/wtf/HashTable.h typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::AddResult HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::addPassingHashCode(const T& key, const Extra& extra) key 799 Source/wtf/HashTable.h FullLookupType lookupResult = fullLookupForWriting<HashTranslator>(key); key 815 Source/wtf/HashTable.h HashTranslator::translate(*entry, key, extra, h); key 844 Source/wtf/HashTable.h inline typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::iterator HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::find(const T& key) key 846 Source/wtf/HashTable.h ValueType* entry = lookup<HashTranslator>(key); key 855 Source/wtf/HashTable.h inline typename HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::const_iterator HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::find(const T& key) const key 857 Source/wtf/HashTable.h ValueType* entry = const_cast<HashTable*>(this)->lookup<HashTranslator>(key); key 866 Source/wtf/HashTable.h bool HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::contains(const T& key) const key 868 Source/wtf/HashTable.h return const_cast<HashTable*>(this)->lookup<HashTranslator>(key); key 909 Source/wtf/HashTable.h inline void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::remove(KeyPeekInType key) key 911 Source/wtf/HashTable.h remove(find(key)); key 264 Source/wtf/HashTraits.h : key(_key) key 271 Source/wtf/HashTraits.h : key(other.key) key 276 Source/wtf/HashTraits.h KeyTypeArg key; key 299 Source/wtf/HashTraits.h static void constructDeletedValue(TraitType& slot) { KeyTraits::constructDeletedValue(slot.key); } key 300 Source/wtf/HashTraits.h static bool isDeletedValue(const TraitType& value) { return KeyTraits::isDeletedValue(value.key); } key 126 Source/wtf/InstanceCounter.cpp builder.append(it->key); key 295 Source/wtf/ListHashSet.h template<typename T> static unsigned hash(const T& key) { return HashArg::hash(key->m_value); } key 526 Source/wtf/ListHashSet.h template<typename T> static unsigned hash(const T& key) { return HashFunctions::hash(key); } key 528 Source/wtf/ListHashSet.h template<typename T, typename U, typename V> static void translate(T*& location, const U& key, const V& allocator) key 530 Source/wtf/ListHashSet.h location = new (allocator) T(key); key 718 Source/wtf/ListHashSet.h template<typename T> static unsigned hash(const T& key) { return Translator::hash(key); } key 78 Source/wtf/RefCountedLeakCounter.cpp WTF_LOG(RefCountedLeaks, "No leak checking done: %s", leakMessageSuppressionReasons->begin()->key); key 292 Source/wtf/RetainPtr.h static unsigned hash(const RetainPtr<P>& key) { return hash(key.get()); } key 111 Source/wtf/ThreadSpecific.h inline void threadSpecificKeyCreate(ThreadSpecificKey* key, void (*destructor)(void *)) key 113 Source/wtf/ThreadSpecific.h int error = pthread_key_create(key, destructor); key 118 Source/wtf/ThreadSpecific.h inline void threadSpecificKeyDelete(ThreadSpecificKey key) key 120 Source/wtf/ThreadSpecific.h int error = pthread_key_delete(key); key 125 Source/wtf/ThreadSpecific.h inline void threadSpecificSet(ThreadSpecificKey key, void* value) key 127 Source/wtf/ThreadSpecific.h pthread_setspecific(key, value); key 130 Source/wtf/ThreadSpecific.h inline void* threadSpecificGet(ThreadSpecificKey key) key 132 Source/wtf/ThreadSpecific.h return pthread_getspecific(key); key 90 Source/wtf/ThreadSpecificWin.cpp void threadSpecificKeyCreate(ThreadSpecificKey* key, void (*destructor)(void *)) key 92 Source/wtf/ThreadSpecificWin.cpp *key = new PlatformThreadSpecificKey(destructor); key 95 Source/wtf/ThreadSpecificWin.cpp destructorsList().push(*key); key 98 Source/wtf/ThreadSpecificWin.cpp void threadSpecificKeyDelete(ThreadSpecificKey key) key 101 Source/wtf/ThreadSpecificWin.cpp destructorsList().remove(key); key 102 Source/wtf/ThreadSpecificWin.cpp delete key; key 105 Source/wtf/ThreadSpecificWin.cpp void threadSpecificSet(ThreadSpecificKey key, void* data) key 107 Source/wtf/ThreadSpecificWin.cpp key->setValue(data); key 110 Source/wtf/ThreadSpecificWin.cpp void* threadSpecificGet(ThreadSpecificKey key) key 112 Source/wtf/ThreadSpecificWin.cpp return key->value(); key 125 Source/wtf/ThreadSpecificWin.cpp PlatformThreadSpecificKey* key = destructorsList().head(); key 126 Source/wtf/ThreadSpecificWin.cpp while (key) { key 127 Source/wtf/ThreadSpecificWin.cpp PlatformThreadSpecificKey* nextKey = key->next(); key 128 Source/wtf/ThreadSpecificWin.cpp key->callDestructor(); key 129 Source/wtf/ThreadSpecificWin.cpp key = nextKey; key 151 Source/wtf/ThreadingPthreads.cpp return i->key; key 38 Source/wtf/text/AtomicStringHash.h static unsigned hash(const AtomicString& key) key 40 Source/wtf/text/AtomicStringHash.h return key.impl()->existingHash(); key 45 Source/wtf/text/StringHash.h static unsigned hash(StringImpl* key) { return key->hash(); } key 51 Source/wtf/text/StringHash.h static unsigned hash(const RefPtr<StringImpl>& key) { return key->hash(); } key 57 Source/wtf/text/StringHash.h static unsigned hash(const String& key) { return key.impl()->hash(); } key 100 Source/wtf/text/StringHash.h static unsigned hash(const RefPtr<StringImpl>& key) key 102 Source/wtf/text/StringHash.h return hash(key.get()); key 110 Source/wtf/text/StringHash.h static unsigned hash(const String& key) key 112 Source/wtf/text/StringHash.h return hash(key.impl()); key 114 Source/wtf/text/StringHash.h static unsigned hash(const AtomicString& key) key 116 Source/wtf/text/StringHash.h return hash(key.impl()); key 134 Source/wtf/text/StringHash.h static unsigned hash(unsigned key) { return key; } key 192 Source/wtf/text/TextEncodingRegistry.cpp names.append(it->key); key 358 Source/wtf/text/TextEncodingRegistry.cpp fprintf(stderr, "'%s' => '%s'\n", it->key, it->value); key 197 public/platform/WebCrypto.h virtual void wrapKey(WebCryptoKeyFormat, const WebCryptoKey& key, const WebCryptoKey& wrappingKey, const WebCryptoAlgorithm&, WebCryptoResult result) { result.completeWithError(); } key 153 public/platform/WebMediaPlayer.h virtual MediaKeyException addKey(const WebString& keySystem, const unsigned char* key, unsigned keyLength, const unsigned char* initData, unsigned initDataLength, const WebString& sessionId) { return MediaKeyExceptionKeySystemNotSupported; } key 57 public/platform/WebStorageArea.h virtual WebString key(unsigned index) = 0; key 61 public/platform/WebStorageArea.h virtual WebString getItem(const WebString& key) = 0; key 66 public/platform/WebStorageArea.h virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& pageUrl, Result& result) key 69 public/platform/WebStorageArea.h setItem(key, newValue, pageUrl, result, unused); key 75 public/platform/WebStorageArea.h virtual void removeItem(const WebString& key, const WebURL& pageUrl) key 78 public/platform/WebStorageArea.h removeItem(key, pageUrl, unused); key 92 public/platform/WebStorageArea.h virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { } key 93 public/platform/WebStorageArea.h virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue) { } key 46 public/web/WebStorageEventDispatcher.h const WebString& key, const WebString& oldValue, key 53 public/web/WebStorageEventDispatcher.h const WebString& key, const WebString& oldValue, key 370 public/web/WebView.h virtual bool inspectorSetting(const WebString& key, key 372 public/web/WebView.h virtual void setInspectorSetting(const WebString& key, key 296 public/web/WebViewClient.h virtual void didUpdateInspectorSetting(const WebString& key, const WebString& value) { }