create 21 Source/bindings/templates/callback_interface.h static PassOwnPtr<{{v8_class}}> create(v8::Handle<v8::Function> callback, ExecutionContext* context) create 649 Source/bindings/templates/interface.cpp RefPtrWillBeRawPtr<{{cpp_class}}> event = {{cpp_class}}::create(type, eventInit, exceptionState); create 653 Source/bindings/templates/interface.cpp RefPtrWillBeRawPtr<{{cpp_class}}> event = {{cpp_class}}::create(type, eventInit); create 122 Source/bindings/templates/methods.cpp {{argument.name}} = V8{{argument.idl_type}}::create(v8::Handle<v8::Function>::Cast(info[{{argument.index}}]), currentExecutionContext(info.GetIsolate())); create 131 Source/bindings/templates/methods.cpp OwnPtr<{{argument.idl_type}}> {{argument.name}} = {% if argument.is_nullable %}info[{{argument.index}}]->IsNull() ? nullptr : {% endif %}V8{{argument.idl_type}}::create(v8::Handle<v8::Function>::Cast(info[{{argument.index}}]), currentExecutionContext(info.GetIsolate())); create 143 Source/bindings/templates/methods.cpp {{argument.cpp_type}} {{argument.name}} = SerializedScriptValue::create(info[{{argument.index}}], 0, 0, exceptionState, info.GetIsolate()); create 397 Source/bindings/templates/methods.cpp {{ref_ptr}}<{{cpp_class}}> impl = {{cpp_class}}::create({{constructor.argument_list | join(', ')}}); create 21 Source/bindings/tests/results/V8TestCallbackInterface.h static PassOwnPtr<V8TestCallbackInterface> create(v8::Handle<v8::Function> callback, ExecutionContext* context) create 188 Source/bindings/tests/results/V8TestInterface2.cpp RefPtr<TestInterface2> impl = TestInterface2::create(); create 55 Source/bindings/tests/results/V8TestInterfaceConstructor.cpp RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(context, document, exceptionState); create 88 Source/bindings/tests/results/V8TestInterfaceConstructor.cpp RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(context, document, doubleArg, stringArg, testInterfaceEmptyArg, dictionaryArg, sequenceStringArg, sequenceDictionaryArg, optionalDictionaryArg, optionalTestInterfaceEmptyArg, exceptionState); create 52 Source/bindings/tests/results/V8TestInterfaceConstructor2.cpp RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(stringArg); create 73 Source/bindings/tests/results/V8TestInterfaceConstructor2.cpp RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(testInterfaceEmptyArg, longArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalStringArg, defaultUndefinedOptionalDictionaryArg); create 54 Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp RefPtr<TestInterfaceConstructor3> impl = TestInterfaceConstructor3::create(stringArg); create 272 Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp RefPtrWillBeRawPtr<TestInterfaceEventConstructor> event = TestInterfaceEventConstructor::create(type, eventInit, exceptionState); create 101 Source/bindings/tests/results/V8TestInterfaceWillBeGarbageCollected.cpp RefPtrWillBeRawPtr<TestInterfaceWillBeGarbageCollected> impl = TestInterfaceWillBeGarbageCollected::create(str); create 138 Source/bindings/tests/results/V8TestNode.cpp RefPtr<TestNode> impl = TestNode::create(); create 832 Source/bindings/tests/results/V8TestObject.cpp V8TRYCATCH_VOID(RefPtr<SerializedScriptValue>, cppValue, SerializedScriptValue::create(v8Value, info.GetIsolate())); create 4915 Source/bindings/tests/results/V8TestObject.cpp V8TRYCATCH_VOID(RefPtrWillBeRawPtr<MediaQueryListListener>, mediaQueryListListenerArg, MediaQueryListListener::create(ScriptValue(info[0], info.GetIsolate()))); create 5422 Source/bindings/tests/results/V8TestObject.cpp OwnPtr<TestCallbackInterface> testCallbackInterfaceArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 5442 Source/bindings/tests/results/V8TestObject.cpp optionalTestCallbackInterfaceArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 5465 Source/bindings/tests/results/V8TestObject.cpp OwnPtr<TestCallbackInterface> testCallbackInterfaceArg = info[0]->IsNull() ? nullptr : V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 5668 Source/bindings/tests/results/V8TestObject.cpp RefPtr<SerializedScriptValue> serializedScriptValueArg = SerializedScriptValue::create(info[0], 0, 0, exceptionState, info.GetIsolate()); create 6427 Source/bindings/tests/results/V8TestObject.cpp OwnPtr<TestCallbackInterface> testCallbackInterfaceArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 7428 Source/bindings/tests/results/V8TestObject.cpp OwnPtr<TestCallbackInterface> testCallbackInterfaceArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 7452 Source/bindings/tests/results/V8TestObject.cpp optionalTestCallbackInterfaceArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 149 Source/bindings/tests/results/V8TestTypedefs.cpp OwnPtr<TestCallbackInterface> testCallbackInterfaceTypeArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), currentExecutionContext(info.GetIsolate())); create 248 Source/bindings/tests/results/V8TestTypedefs.cpp RefPtr<TestTypedefs> impl = TestTypedefs::create(stringArg); create 43 Source/bindings/v8/CustomElementBinding.h static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*); create 150 Source/bindings/v8/CustomElementConstructorBuilder.cpp m_callbacks = V8CustomElementLifecycleCallbacks::create(executionContext.get(), m_prototype, created, attached, detached, attributeChanged); create 233 Source/bindings/v8/CustomElementConstructorBuilder.cpp return m_callbacks->setBinding(definition, CustomElementBinding::create(m_scriptState->isolate(), m_prototype, m_wrapperType)); create 66 Source/bindings/v8/DOMWrapperWorld.cpp DEFINE_STATIC_REF(DOMWrapperWorld, cachedMainWorld, (DOMWrapperWorld::create(MainWorldId, mainWorldExtensionGroup))); create 134 Source/bindings/v8/DOMWrapperWorld.cpp world = DOMWrapperWorld::create(worldId, extensionGroup); create 62 Source/bindings/v8/DOMWrapperWorld.h static PassRefPtr<DOMWrapperWorld> create(int worldId = -1, int extensionGroup = -1); create 682 Source/bindings/v8/Dictionary.cpp value = V8VoidCallback::create(v8::Handle<v8::Function>::Cast(v8Value), currentExecutionContext(m_isolate)); create 67 Source/bindings/v8/IDBBindingUtilities.cpp RefPtr<DOMStringList> keyPaths = DOMStringList::create(); create 94 Source/bindings/v8/IDBBindingUtilities.cpp return toV8(Uint8Array::create(reinterpret_cast<const unsigned char*>(key->binary()->data()), key->binary()->size()), creationContext, isolate); create 185 Source/bindings/v8/IDBBindingUtilities.cpp return IDBKey::createBinary(SharedBuffer::create(start, length)); create 95 Source/bindings/v8/IDBBindingUtilitiesTest.cpp : m_scope(V8ExecutionScope::create(v8::Isolate::GetCurrent())) create 21 Source/bindings/v8/MIDIAccessResolver.h static PassOwnPtr<MIDIAccessResolver> create(PassRefPtr<ScriptPromiseResolver> resolver, v8::Isolate* isolate) create 32 Source/bindings/v8/NewScriptState.cpp , m_perContextData(V8PerContextData::create(context, m_world)) create 24 Source/bindings/v8/NewScriptState.h static PassRefPtr<NewScriptState> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>); create 94 Source/bindings/v8/ScriptCallStackFactory.cpp return ScriptCallStack::create(scriptCallFrames); create 134 Source/bindings/v8/ScriptCallStackFactory.cpp return ScriptArguments::create(state, arguments); create 94 Source/bindings/v8/ScriptController.cpp , m_windowShell(V8WindowShell::create(frame, DOMWrapperWorld::mainWorld(), m_isolate)) create 233 Source/bindings/v8/ScriptController.cpp OwnPtr<V8WindowShell> isolatedWorldShell = V8WindowShell::create(m_frame, world, m_isolate); create 336 Source/bindings/v8/ScriptController.cpp return SharedPersistent<v8::Object>::create(wrapper, m_isolate); create 302 Source/bindings/v8/ScriptDebugServer.cpp TypeBuilder::Debugger::SetScriptSourceError::CompileError::create() create 308 Source/bindings/v8/ScriptDebugServer.cpp errorData = TypeBuilder::Debugger::SetScriptSourceError::create(); create 334 Source/bindings/v8/ScriptDebugServer.cpp return JavaScriptCallFrame::create(v8::Debug::GetDebugContext(), v8::Handle<v8::Object>::Cast(currentCallFrameV8)); create 76 Source/bindings/v8/ScriptEventListener.cpp return V8LazyEventListener::create(name.localName(), eventParameterName(node->isSVGElement()), value, sourceURL, position, node, isolate); create 94 Source/bindings/v8/ScriptEventListener.cpp return V8LazyEventListener::create(name.localName(), eventParameterName(frame->document()->isSVGDocument()), value, sourceURL, position, 0, toIsolate(frame)); create 52 Source/bindings/v8/ScriptHeapSnapshot.h static PassRefPtr<ScriptHeapSnapshot> create(const v8::HeapSnapshot* snapshot) create 95 Source/bindings/v8/ScriptProfiler.cpp return ScriptProfile::create(profile, idleTime); create 242 Source/bindings/v8/ScriptProfiler.cpp return snapshot ? ScriptHeapSnapshot::create(snapshot) : nullptr; create 73 Source/bindings/v8/ScriptPromiseResolver.h static PassRefPtr<ScriptPromiseResolver> create(ExecutionContext*); create 74 Source/bindings/v8/ScriptPromiseResolver.h static PassRefPtr<ScriptPromiseResolver> create(v8::Isolate*); create 56 Source/bindings/v8/ScriptPromiseResolverTest.cpp m_scope = V8ExecutionScope::create(m_isolate); create 57 Source/bindings/v8/ScriptPromiseResolverTest.cpp m_resolver = ScriptPromiseResolver::create(m_isolate); create 54 Source/bindings/v8/ScriptPromiseTest.cpp m_scope = V8ExecutionScope::create(m_isolate); create 85 Source/bindings/v8/ScriptPromiseTest.cpp ScriptPromise promise = ScriptPromiseResolver::create(m_isolate)->promise(); create 81 Source/bindings/v8/ScriptValue.cpp return JSONBasicValue::create(value->BooleanValue()); create 83 Source/bindings/v8/ScriptValue.cpp return JSONBasicValue::create(value->NumberValue()); create 85 Source/bindings/v8/ScriptValue.cpp return JSONString::create(toCoreString(value.As<v8::String>())); create 88 Source/bindings/v8/ScriptValue.cpp RefPtr<JSONArray> inspectorArray = JSONArray::create(); create 100 Source/bindings/v8/ScriptValue.cpp RefPtr<JSONObject> jsonObject = JSONObject::create(); create 55 Source/bindings/v8/ScriptValue.h , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::create(value, isolate)) create 1938 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<ImageData> imageData = ImageData::create(IntSize(width, height)); create 1956 Source/bindings/v8/SerializedScriptValue.cpp RefPtr<ArrayBuffer> arrayBuffer = ArrayBuffer::create(bufferStart, byteLength); create 1993 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Int8Array::create(arrayBuffer.release(), byteOffset, byteLength), v8::Handle<v8::Object>(), m_isolate); create 1996 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Uint8Array::create(arrayBuffer.release(), byteOffset, byteLength), v8::Handle<v8::Object>(), m_isolate); create 1999 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Uint8ClampedArray::create(arrayBuffer.release(), byteOffset, byteLength), v8::Handle<v8::Object>(), m_isolate); create 2005 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Int16Array::create(arrayBuffer.release(), byteOffset, shortLength), v8::Handle<v8::Object>(), m_isolate); create 2012 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Uint16Array::create(arrayBuffer.release(), byteOffset, shortLength), v8::Handle<v8::Object>(), m_isolate); create 2019 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Int32Array::create(arrayBuffer.release(), byteOffset, intLength), v8::Handle<v8::Object>(), m_isolate); create 2026 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Uint32Array::create(arrayBuffer.release(), byteOffset, intLength), v8::Handle<v8::Object>(), m_isolate); create 2033 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Float32Array::create(arrayBuffer.release(), byteOffset, floatLength), v8::Handle<v8::Object>(), m_isolate); create 2040 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(Float64Array::create(arrayBuffer.release(), byteOffset, floatLength), v8::Handle<v8::Object>(), m_isolate); create 2044 Source/bindings/v8/SerializedScriptValue.cpp *value = toV8(DataView::create(arrayBuffer.release(), byteOffset, byteLength), v8::Handle<v8::Object>(), m_isolate); create 2080 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<Blob> blob = Blob::create(getOrCreateBlobDataHandle(uuid, type, size)); create 2096 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<DOMFileSystem> fs = DOMFileSystem::create(currentExecutionContext(m_isolate), name, static_cast<WebCore::FileSystemType>(type), KURL(ParsedURLString, url)); create 2117 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<FileList> fileList = FileList::create(); create 2179 Source/bindings/v8/SerializedScriptValue.cpp RefPtrWillBeRawPtr<Key> k = Key::create(key); create 2214 Source/bindings/v8/SerializedScriptValue.cpp return File::create(path, name, relativePath, hasSnapshot > 0, size, lastModified, getOrCreateBlobDataHandle(uuid, type)); create 2270 Source/bindings/v8/SerializedScriptValue.cpp return BlobDataHandle::create(uuid, type, size); create 2579 Source/bindings/v8/SerializedScriptValue.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(m_arrayBufferContents->at(index)); create 2713 Source/bindings/v8/SerializedScriptValue.cpp return create(data, v8::Isolate::GetCurrent()); create 73 Source/bindings/v8/SerializedScriptValue.h static PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value>, MessagePortArray*, ArrayBufferArray*, ExceptionState&, v8::Isolate*); create 76 Source/bindings/v8/SerializedScriptValue.h static PassRefPtr<SerializedScriptValue> create(const String&); create 77 Source/bindings/v8/SerializedScriptValue.h static PassRefPtr<SerializedScriptValue> create(const String&, v8::Isolate*); create 78 Source/bindings/v8/SerializedScriptValue.h static PassRefPtr<SerializedScriptValue> create(); create 80 Source/bindings/v8/SerializedScriptValue.h static PassRefPtr<SerializedScriptValue> create(const ScriptValue&, ExceptionState&, ScriptState*); create 45 Source/bindings/v8/SharedPersistent.h static PassRefPtr<SharedPersistent<T> > create(v8::Handle<T> value, v8::Isolate* isolate) create 130 Source/bindings/v8/V8Binding.cpp RefPtr<NodeFilter> filter = NodeFilter::create(); create 135 Source/bindings/v8/V8Binding.cpp RefPtr<NodeFilterCondition> condition = V8NodeFilterCondition::create(callback, filterWrapper, isolate); create 483 Source/bindings/v8/V8Binding.cpp resolver = V8CustomXPathNSResolver::create(value->ToObject(), isolate); create 676 Source/bindings/v8/V8Binding.cpp , m_scriptState(NewScriptState::create(isolate->GetCurrentContext(), DOMWrapperWorld::create())) create 757 Source/bindings/v8/V8Binding.h static PassOwnPtr<V8ExecutionScope> create(v8::Isolate*); create 73 Source/bindings/v8/V8Callback.h return V8CallbackType::create(v8::Handle<v8::Function>::Cast(value), currentExecutionContext(isolate)); create 51 Source/bindings/v8/V8CustomElementLifecycleCallbacks.h static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged); create 45 Source/bindings/v8/V8ErrorHandler.h static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, v8::Isolate* isolate) create 47 Source/bindings/v8/V8EventListener.h static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate) create 103 Source/bindings/v8/V8EventListenerList.h RefPtr<V8EventListener> wrapperPtr = WrapperType::create(object, isAttribute, isolate); create 115 Source/bindings/v8/V8Initializer.cpp RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, resource, message->GetLineNumber(), message->GetStartColumn() + 1, &world); create 222 Source/bindings/v8/V8Initializer.cpp RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, message->GetLineNumber(), message->GetStartColumn() + 1, &DOMWrapperWorld::current(isolate)); create 51 Source/bindings/v8/V8LazyEventListener.h static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) create 43 Source/bindings/v8/V8MutationCallback.h static PassOwnPtr<V8MutationCallback> create(v8::Handle<v8::Function> callback, ExecutionContext* context, v8::Handle<v8::Object> owner, v8::Isolate* isolate) create 64 Source/bindings/v8/V8NodeFilterCondition.h static PassRefPtr<V8NodeFilterCondition> create(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, v8::Isolate* isolate) create 64 Source/bindings/v8/V8PerContextData.h static PassOwnPtr<V8PerContextData> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>); create 131 Source/bindings/v8/V8PerIsolateData.cpp m_blinkInJSScriptState = NewScriptState::create(v8::Context::New(m_isolate), DOMWrapperWorld::create()); create 58 Source/bindings/v8/V8ThrowException.cpp RefPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanitizedMessage); create 283 Source/bindings/v8/V8WindowShell.cpp m_scriptState = NewScriptState::create(context, m_world); create 58 Source/bindings/v8/V8WindowShell.h static PassOwnPtr<V8WindowShell> create(LocalFrame*, DOMWrapperWorld&, v8::Isolate*); create 44 Source/bindings/v8/V8WorkerGlobalScopeEventListener.h static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, v8::Isolate* isolate) create 71 Source/bindings/v8/WorkerScriptController.cpp m_world = DOMWrapperWorld::create(WorkerWorldId); create 113 Source/bindings/v8/WorkerScriptController.cpp ThreadState::current()->addCleanupTask(IsolateCleanupTask::create(m_isolate)); create 125 Source/bindings/v8/WorkerScriptController.cpp m_scriptState = NewScriptState::create(context, m_world); create 210 Source/bindings/v8/WorkerScriptController.cpp ErrorEvent::createSanitizedError(m_world.get()) : ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, m_world.get()); create 218 Source/bindings/v8/WorkerScriptController.cpp event = ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, m_world.get()); create 88 Source/bindings/v8/custom/V8ArrayBufferCustom.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(contents); create 43 Source/bindings/v8/custom/V8BlobCustom.cpp RefPtrWillBeRawPtr<Blob> blob = Blob::create(); create 74 Source/bindings/v8/custom/V8BlobCustom.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 81 Source/bindings/v8/custom/V8BlobCustom.cpp RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize)); create 47 Source/bindings/v8/custom/V8CustomXPathNSResolver.h static PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver, v8::Isolate*); create 57 Source/bindings/v8/custom/V8DedicatedWorkerGlobalScopeCustom.cpp RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &ports, &arrayBuffers, exceptionState, info.GetIsolate()); create 66 Source/bindings/v8/custom/V8DeviceMotionEventCustom.cpp return DeviceMotionData::Acceleration::create(canProvideX, x, canProvideY, y, canProvideZ, z); create 98 Source/bindings/v8/custom/V8DeviceMotionEventCustom.cpp return DeviceMotionData::RotationRate::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma); create 115 Source/bindings/v8/custom/V8DeviceMotionEventCustom.cpp RefPtrWillBeRawPtr<DeviceMotionData> deviceMotionData = DeviceMotionData::create(acceleration.release(), accelerationIncludingGravity.release(), rotationRate.release(), intervalProvided, interval); create 51 Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp RefPtrWillBeRawPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); create 86 Source/bindings/v8/custom/V8FileCustom.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 93 Source/bindings/v8/custom/V8FileCustom.cpp RefPtrWillBeRawPtr<File> file = File::create(fileName, properties.lastModified(), BlobDataHandle::create(blobData.release(), fileSize)); create 45 Source/bindings/v8/custom/V8GeolocationCustom.cpp RefPtrWillBeRawPtr<PositionOptions> options = PositionOptions::create(); create 57 Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp return toV8(NamedNodesCollection::create(namedItems), info.Holder(), info.GetIsolate()); create 60 Source/bindings/v8/custom/V8HTMLCanvasElementCustom.cpp RefPtr<WebGLContextAttributes> webGLAttributes = WebGLContextAttributes::create(); create 87 Source/bindings/v8/custom/V8HTMLCanvasElementCustom.cpp RefPtr<Canvas2DContextAttributes> canvas2DAttributes = Canvas2DContextAttributes::create(); create 65 Source/bindings/v8/custom/V8HistoryCustom.cpp RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(info[0], 0, 0, exceptionState, info.GetIsolate()); create 81 Source/bindings/v8/custom/V8HistoryCustom.cpp RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(info[0], 0, 0, exceptionState, info.GetIsolate()); create 47 Source/bindings/v8/custom/V8MessageChannelCustom.cpp RefPtr<MessageChannel> obj = MessageChannel::create(context); create 56 Source/bindings/v8/custom/V8MessagePortCustom.cpp RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &portArray, &arrayBufferArray, exceptionState, info.GetIsolate()); create 63 Source/bindings/v8/custom/V8MutationObserverCustom.cpp OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, info.GetIsolate()); create 64 Source/bindings/v8/custom/V8MutationObserverCustom.cpp RefPtr<MutationObserver> observer = MutationObserver::create(callback.release()); create 455 Source/bindings/v8/custom/V8PromiseCustom.cpp m_derivedStack.append(Derived::create(derivedPromise, onFulfilled, onRejected, promise, isolate)); create 104 Source/bindings/v8/custom/V8SQLTransactionCustom.cpp callback = V8SQLStatementCallback::create(v8::Handle<v8::Function>::Cast(info[2]), executionContext); create 114 Source/bindings/v8/custom/V8SQLTransactionCustom.cpp errorCallback = V8SQLStatementErrorCallback::create(v8::Handle<v8::Function>::Cast(info[3]), executionContext); create 31 Source/bindings/v8/custom/V8ServiceWorkerCustom.cpp RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &ports, &arrayBuffers, exceptionState, info.GetIsolate()); create 164 Source/bindings/v8/custom/V8TypedArrayCustom.h RefPtr<TypedArray> typedArray = TypedArray::create(arrayBuffer, view->ByteOffset(), Traits::length(view)); create 57 Source/bindings/v8/custom/V8WebKitPointCustom.cpp RefPtrWillBeRawPtr<DOMPoint> point = DOMPoint::create(x, y); create 283 Source/bindings/v8/custom/V8WindowCustom.cpp RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &portArray, &arrayBufferArray, exceptionState, info.GetIsolate()); create 57 Source/bindings/v8/custom/V8WorkerCustom.cpp RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &ports, &arrayBuffers, exceptionState, info.GetIsolate()); create 65 Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp RefPtrWillBeRawPtr<XMLHttpRequest> xmlHttpRequest = XMLHttpRequest::create(context, securityOrigin); create 45 Source/core/accessibility/AXARIAGrid.h static PassRefPtr<AXARIAGrid> create(RenderObject*); create 41 Source/core/accessibility/AXARIAGridCell.h static PassRefPtr<AXARIAGridCell> create(RenderObject*); create 41 Source/core/accessibility/AXARIAGridRow.h static PassRefPtr<AXARIAGridRow> create(RenderObject*); create 43 Source/core/accessibility/AXImageMapLink.h static PassRefPtr<AXImageMapLink> create(); create 43 Source/core/accessibility/AXInlineTextBox.h static PassRefPtr<AXInlineTextBox> create(PassRefPtr<AbstractInlineTextBox>); create 41 Source/core/accessibility/AXList.h static PassRefPtr<AXList> create(RenderObject*); create 41 Source/core/accessibility/AXListBox.h static PassRefPtr<AXListBox> create(RenderObject*); create 48 Source/core/accessibility/AXListBoxOption.h static PassRefPtr<AXListBoxOption> create(); create 58 Source/core/accessibility/AXMediaControls.cpp return AccessibilityMediaTimeline::create(renderer); create 62 Source/core/accessibility/AXMediaControls.cpp return AccessibilityMediaTimeDisplay::create(renderer); create 65 Source/core/accessibility/AXMediaControls.cpp return AXMediaControlsContainer::create(renderer); create 41 Source/core/accessibility/AXMediaControls.h static PassRefPtr<AXObject> create(RenderObject*); create 60 Source/core/accessibility/AXMediaControls.h static PassRefPtr<AXObject> create(RenderObject*); create 75 Source/core/accessibility/AXMediaControls.h static PassRefPtr<AXObject> create(RenderObject*); create 93 Source/core/accessibility/AXMediaControls.h static PassRefPtr<AXObject> create(RenderObject*); create 40 Source/core/accessibility/AXMenuList.h static PassRefPtr<AXMenuList> create(RenderMenuList* renderer); create 38 Source/core/accessibility/AXMenuListOption.h static PassRefPtr<AXMenuListOption> create() { return adoptRef(new AXMenuListOption); } create 40 Source/core/accessibility/AXMenuListPopup.h static PassRefPtr<AXMenuListPopup> create() { return adoptRef(new AXMenuListPopup); } create 63 Source/core/accessibility/AXNodeObject.h static PassRefPtr<AXNodeObject> create(Node*); create 114 Source/core/accessibility/AXObjectCache.cpp m_computedObjectAttributeCache = AXComputedObjectAttributeCache::create(); create 275 Source/core/accessibility/AXObjectCache.cpp return AXList::create(renderer); create 279 Source/core/accessibility/AXObjectCache.cpp return AXARIAGrid::create(renderer); create 281 Source/core/accessibility/AXObjectCache.cpp return AXARIAGridRow::create(renderer); create 283 Source/core/accessibility/AXObjectCache.cpp return AXARIAGridCell::create(renderer); create 287 Source/core/accessibility/AXObjectCache.cpp return AccessibilityMediaControl::create(renderer); create 290 Source/core/accessibility/AXObjectCache.cpp return AXSVGRoot::create(renderer); create 295 Source/core/accessibility/AXObjectCache.cpp return AXListBox::create(toRenderListBox(cssBox)); create 297 Source/core/accessibility/AXObjectCache.cpp return AXMenuList::create(toRenderMenuList(cssBox)); create 301 Source/core/accessibility/AXObjectCache.cpp return AXTable::create(toRenderTable(cssBox)); create 303 Source/core/accessibility/AXObjectCache.cpp return AXTableRow::create(toRenderTableRow(cssBox)); create 305 Source/core/accessibility/AXObjectCache.cpp return AXTableCell::create(toRenderTableCell(cssBox)); create 309 Source/core/accessibility/AXObjectCache.cpp return AXProgressIndicator::create(toRenderProgress(cssBox)); create 313 Source/core/accessibility/AXObjectCache.cpp return AXSlider::create(toRenderSlider(cssBox)); create 316 Source/core/accessibility/AXObjectCache.cpp return AXRenderObject::create(renderer); create 321 Source/core/accessibility/AXObjectCache.cpp return AXNodeObject::create(node); create 326 Source/core/accessibility/AXObjectCache.cpp return AXInlineTextBox::create(inlineTextBox); create 339 Source/core/accessibility/AXObjectCache.cpp newObj = AXScrollView::create(toScrollView(widget)); create 341 Source/core/accessibility/AXObjectCache.cpp newObj = AXScrollbar::create(toScrollbar(widget)); create 460 Source/core/accessibility/AXObjectCache.cpp obj = AXListBoxOption::create(); create 463 Source/core/accessibility/AXObjectCache.cpp obj = AXImageMapLink::create(); create 466 Source/core/accessibility/AXObjectCache.cpp obj = AXTableColumn::create(); create 469 Source/core/accessibility/AXObjectCache.cpp obj = AXTableHeaderContainer::create(); create 472 Source/core/accessibility/AXObjectCache.cpp obj = AXSliderThumb::create(); create 475 Source/core/accessibility/AXObjectCache.cpp obj = AXMenuListPopup::create(); create 478 Source/core/accessibility/AXObjectCache.cpp obj = AXMenuListOption::create(); create 481 Source/core/accessibility/AXObjectCache.cpp obj = AXSpinButton::create(); create 484 Source/core/accessibility/AXObjectCache.cpp obj = AXSpinButtonPart::create(); create 58 Source/core/accessibility/AXObjectCache.h static PassOwnPtr<AXComputedObjectAttributeCache> create() { return adoptPtr(new AXComputedObjectAttributeCache()); } create 33 Source/core/accessibility/AXProgressIndicator.h static PassRefPtr<AXProgressIndicator> create(RenderProgress*); create 1745 Source/core/accessibility/AXRenderObject.cpp RefPtrWillBeRawPtr<Range> range = Range::create(m_renderer->document()); create 1771 Source/core/accessibility/AXRenderObject.cpp RefPtrWillBeRawPtr<Range> range = Range::create(m_renderer->document()); create 63 Source/core/accessibility/AXRenderObject.h static PassRefPtr<AXRenderObject> create(RenderObject*); create 41 Source/core/accessibility/AXSVGRoot.h static PassRefPtr<AXSVGRoot> create(RenderObject*); create 39 Source/core/accessibility/AXScrollView.h static PassRefPtr<AXScrollView> create(ScrollView*); create 40 Source/core/accessibility/AXScrollbar.h static PassRefPtr<AXScrollbar> create(Scrollbar*); create 42 Source/core/accessibility/AXSlider.h static PassRefPtr<AXSlider> create(RenderObject*); create 68 Source/core/accessibility/AXSlider.h static PassRefPtr<AXSliderThumb> create(); create 37 Source/core/accessibility/AXSpinButton.h static PassRefPtr<AXSpinButton> create(); create 57 Source/core/accessibility/AXSpinButton.h static PassRefPtr<AXSpinButtonPart> create(); create 45 Source/core/accessibility/AXTable.h static PassRefPtr<AXTable> create(RenderObject*); create 41 Source/core/accessibility/AXTableCell.h static PassRefPtr<AXTableCell> create(RenderObject*); create 44 Source/core/accessibility/AXTableColumn.h static PassRefPtr<AXTableColumn> create(); create 42 Source/core/accessibility/AXTableHeaderContainer.h static PassRefPtr<AXTableHeaderContainer> create(); create 41 Source/core/accessibility/AXTableRow.h static PassRefPtr<AXTableRow> create(RenderObject*); create 58 Source/core/animation/AnimatableClipPathOperation.cpp return AnimatableClipPathOperation::create(ShapeClipPathOperation::create(toShape->blend(fromShape, fraction)).get()); create 42 Source/core/animation/AnimatableClipPathOperation.h static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation) create 111 Source/core/animation/AnimatableColor.cpp return create(m_color.interpolateTo(color->m_color, fraction), create 118 Source/core/animation/AnimatableColor.cpp return create(m_color.addWith(color->m_color), create 62 Source/core/animation/AnimatableColor.h static PassRefPtrWillBeRawPtr<AnimatableColor> create(const AnimatableColorImpl&, const AnimatableColorImpl& visitedLinkColor); create 85 Source/core/animation/AnimatableColorTest.cpp RefPtrWillBeRawPtr<AnimatableColor> first = AnimatableColor::create(AnimatableColorImpl(Color(0xFF53647C)), AnimatableColorImpl(Color(0xFF000000))); create 86 Source/core/animation/AnimatableColorTest.cpp RefPtrWillBeRawPtr<AnimatableColor> second = AnimatableColor::create(AnimatableColorImpl(Color(0xFF506070)), AnimatableColorImpl(Color(0xFF000000))); create 58 Source/core/animation/AnimatableDouble.cpp return AnimatableDouble::create(blend(m_number, other->m_number, fraction)); create 70 Source/core/animation/AnimatableDouble.cpp return AnimatableDouble::create(m_number + other->m_number); create 48 Source/core/animation/AnimatableDouble.h static PassRefPtrWillBeRawPtr<AnimatableDouble> create(double number, Constraint constraint = Unconstrained) create 44 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get())); create 45 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get())); create 50 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10).get())); create 51 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_FALSE(AnimatableDouble::create(5)->equals(AnimatableDouble::create(10).get())); create 56 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<CSSValue> cssValue5 = CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_NUMBER); create 57 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<CSSValue> cssValue10 = CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_NUMBER); create 58 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_TRUE(AnimatableDouble::create(5)->toCSSValue()->equals(*cssValue5.get())); create 59 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_FALSE(AnimatableDouble::create(5)->toCSSValue()->equals(*cssValue10.get())); create 64 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(5.9, AnimatableDouble::create(5.9)->toDouble()); create 65 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(-10, AnimatableDouble::create(-10)->toDouble()); create 71 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> from10 = AnimatableDouble::create(10); create 72 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20); create 84 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(-10, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(-2).get(), AnimatableDouble::create(-8).get()).get())->toDouble()); create 85 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(0, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(50).get(), AnimatableDouble::create(-50).get()).get())->toDouble()); create 86 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(10, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(4).get(), AnimatableDouble::create(6).get()).get())->toDouble()); create 87 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(20, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(0).get(), AnimatableDouble::create(20).get()).get())->toDouble()); create 88 Source/core/animation/AnimatableDoubleTest.cpp EXPECT_EQ(30, toAnimatableDouble(AnimatableValue::add(AnimatableDouble::create(30).get(), AnimatableDouble::create(0).get()).get())->toDouble()); create 93 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> first = AnimatableDouble::create(-1.5); create 94 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> second = AnimatableDouble::create(2.25); create 95 Source/core/animation/AnimatableDoubleTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> third = AnimatableDouble::create(3); create 63 Source/core/animation/AnimatableFilterOperations.cpp return AnimatableFilterOperations::create(result); create 42 Source/core/animation/AnimatableFilterOperations.h static PassRefPtrWillBeRawPtr<AnimatableFilterOperations> create(const FilterOperations& operations) create 58 Source/core/animation/AnimatableImage.cpp RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue); create 59 Source/core/animation/AnimatableImage.cpp crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimitiveValue::CSS_NUMBER)); create 60 Source/core/animation/AnimatableImage.cpp return create(crossfadeValue); create 43 Source/core/animation/AnimatableImage.h static PassRefPtrWillBeRawPtr<AnimatableImage> create(const StyleImage& image) create 45 Source/core/animation/AnimatableImage.h return create(image.cssValue()); create 57 Source/core/animation/AnimatableImage.h static PassRefPtrWillBeRawPtr<AnimatableImage> create(PassRefPtr<CSSValue> value) create 47 Source/core/animation/AnimatableLength.cpp return create(calcValue->expressionNode(), primitiveValue); create 52 Source/core/animation/AnimatableLength.cpp return create(primitiveValue->getDoubleValue() * scale, unitType, primitiveValue); create 56 Source/core/animation/AnimatableLength.cpp return create(toCSSCalcValue(value)->expressionNode()); create 105 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(blend(m_number, length->m_number, fraction), type); create 111 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(scale(1 - fraction).get(), length->scale(fraction).get()); create 126 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(m_number + length->m_number, type); create 128 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(this, length); create 162 Source/core/animation/AnimatableLength.cpp m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(CSSCalcValue::create(m_calcExpression, range == AllValues ? ValueRangeAll : ValueRangeNonNegative)); create 164 Source/core/animation/AnimatableLength.cpp m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(clampedNumber(range), static_cast<CSSPrimitiveValue::UnitTypes>(numberTypeToPrimitiveUnit(m_unitType))); create 172 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(CSSCalcValue::createExpressionNode( create 174 Source/core/animation/AnimatableLength.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(factor, CSSPrimitiveValue::CSS_NUMBER)), create 177 Source/core/animation/AnimatableLength.cpp return AnimatableLength::create(m_number * factor, m_unitType); create 66 Source/core/animation/AnimatableLength.h static PassRefPtrWillBeRawPtr<AnimatableLength> create(CSSValue*); create 67 Source/core/animation/AnimatableLength.h static PassRefPtrWillBeRawPtr<AnimatableLength> create(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue = 0) create 71 Source/core/animation/AnimatableLength.h static PassRefPtrWillBeRawPtr<AnimatableLength> create(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> calcExpression, CSSPrimitiveValue* cssPrimitiveValue = 0) create 113 Source/core/animation/AnimatableLength.h static PassRefPtrWillBeRawPtr<AnimatableLength> create(const AnimatableLength* leftAddend, const AnimatableLength* rightAddend) create 116 Source/core/animation/AnimatableLength.h return create(CSSCalcValue::createExpressionNode(leftAddend->toCSSCalcExpressionNode(), rightAddend->toCSSCalcExpressionNode(), CalcAdd)); create 39 Source/core/animation/AnimatableLengthBox.cpp return AnimatableLengthBox::create( create 49 Source/core/animation/AnimatableLengthBox.cpp return AnimatableLengthBox::create( create 41 Source/core/animation/AnimatableLengthBox.h static PassRefPtrWillBeRawPtr<AnimatableLengthBox> create(PassRefPtrWillBeRawPtr<AnimatableValue> left, PassRefPtrWillBeRawPtr<AnimatableValue> right, PassRefPtrWillBeRawPtr<AnimatableValue> top, PassRefPtrWillBeRawPtr<AnimatableValue> bottom) create 48 Source/core/animation/AnimatableLengthBoxAndBool.cpp return AnimatableLengthBoxAndBool::create( create 59 Source/core/animation/AnimatableLengthBoxAndBool.cpp return AnimatableLengthBoxAndBool::create( create 41 Source/core/animation/AnimatableLengthBoxAndBool.h static PassRefPtrWillBeRawPtr<AnimatableLengthBoxAndBool> create(PassRefPtrWillBeRawPtr<AnimatableValue> box, bool flag) create 39 Source/core/animation/AnimatableLengthPoint.cpp return AnimatableLengthPoint::create( create 47 Source/core/animation/AnimatableLengthPoint.cpp return AnimatableLengthPoint::create( create 41 Source/core/animation/AnimatableLengthPoint.h static PassRefPtrWillBeRawPtr<AnimatableLengthPoint> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y) create 39 Source/core/animation/AnimatableLengthPoint3D.cpp return AnimatableLengthPoint3D::create( create 48 Source/core/animation/AnimatableLengthPoint3D.cpp return AnimatableLengthPoint3D::create( create 41 Source/core/animation/AnimatableLengthPoint3D.h static PassRefPtrWillBeRawPtr<AnimatableLengthPoint3D> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z) create 39 Source/core/animation/AnimatableLengthSize.cpp return AnimatableLengthSize::create( create 47 Source/core/animation/AnimatableLengthSize.cpp return AnimatableLengthSize::create( create 41 Source/core/animation/AnimatableLengthSize.h static PassRefPtrWillBeRawPtr<AnimatableLengthSize> create(PassRefPtrWillBeRawPtr<AnimatableValue> width, PassRefPtrWillBeRawPtr<AnimatableValue> height) create 61 Source/core/animation/AnimatableLengthTest.cpp return AnimatableLength::create(CSSPrimitiveValue::create(value, type).get()); create 66 Source/core/animation/AnimatableLengthTest.cpp return AnimatableLength::create(createCalc(valueLeft, typeLeft, valueRight, typeRight).get()); create 71 Source/core/animation/AnimatableLengthTest.cpp return CSSCalcValue::create(CSSCalcValue::createExpressionNode( create 72 Source/core/animation/AnimatableLengthTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(valueLeft, typeLeft), valueLeft == trunc(valueLeft)), create 73 Source/core/animation/AnimatableLengthTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(valueRight, typeRight), valueRight == trunc(valueRight)), create 80 Source/core/animation/AnimatableLengthTest.cpp return AnimatableLength::create(cssValue)->toCSSValue(); create 100 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PX).get())); create 101 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_CM).get())); create 102 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_MM).get())); create 103 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_IN).get())); create 104 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PT).get())); create 105 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PC).get())); create 106 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_EMS).get())); create 107 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_EXS).get())); create 108 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_REMS).get())); create 109 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 110 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_VW).get())); create 111 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_VH).get())); create 112 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_VMIN).get())); create 113 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_VMAX).get())); create 116 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create(createCalc(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM)).get())); create 118 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(AnimatableLength::canCreateFrom(CSSPrimitiveValue::create("NaN", CSSPrimitiveValue::CSS_STRING).get())); create 123 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_PX).get())); create 124 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_CM).get())); create 125 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_MM).get())); create 126 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_IN).get())); create 127 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_PT).get())); create 128 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_PC).get())); create 129 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_EMS).get())); create 130 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_EXS).get())); create 131 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_REMS).get())); create 132 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 133 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_VW).get())); create 134 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_VH).get())); create 135 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_VMIN).get())); create 136 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(static_cast<bool>(create(5, CSSPrimitiveValue::CSS_VMAX).get())); create 139 Source/core/animation/AnimatableLengthTest.cpp AnimatableLength::create(createCalc(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM).get()).get() create 142 Source/core/animation/AnimatableLengthTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(createCalc(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM)).get()).get() create 150 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_PX), toCSSValue); create 151 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_CM), toCSSValue); create 152 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_MM), toCSSValue); create 153 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_IN), toCSSValue); create 154 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_PT), toCSSValue); create 155 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_PC), toCSSValue); create 156 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_EMS), toCSSValue); create 157 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_EXS), toCSSValue); create 158 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_REMS), toCSSValue); create 159 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_PERCENTAGE), toCSSValue); create 160 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_VW), toCSSValue); create 161 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_VH), toCSSValue); create 162 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_VMIN), toCSSValue); create 163 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(-5, CSSPrimitiveValue::CSS_VMAX), toCSSValue); create 165 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(createCalc(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_IN)), toCSSValue); create 166 Source/core/animation/AnimatableLengthTest.cpp EXPECT_ROUNDTRIP(CSSPrimitiveValue::create(createCalc(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_IN)), toCSSValue); create 172 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(-5, WebCore::Fixed), create(-5, CSSPrimitiveValue::CSS_PX)->toLength(conversionDataZoom1)); create 173 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(-15, WebCore::Fixed), create(-5, CSSPrimitiveValue::CSS_PX)->toLength(conversionDataZoom3)); create 174 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(0, WebCore::Fixed), create(-5, CSSPrimitiveValue::CSS_PX)->toLength(conversionDataZoom1, NonNegativeValues)); create 175 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(0, WebCore::Fixed), create(-5, CSSPrimitiveValue::CSS_PX)->toLength(conversionDataZoom3, NonNegativeValues)); create 177 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(-5, Percent), create(-5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom1)); create 178 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(-5, Percent), create(-5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom3)); create 179 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(0, Percent), create(-5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom1, NonNegativeValues)); create 180 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(Length(0, Percent), create(-5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom3, NonNegativeValues)); create 183 Source/core/animation/AnimatableLengthTest.cpp Length(CalculationValue::create( create 189 Source/core/animation/AnimatableLengthTest.cpp create(-5, CSSPrimitiveValue::CSS_PX, -5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom1)); create 191 Source/core/animation/AnimatableLengthTest.cpp Length(CalculationValue::create( create 197 Source/core/animation/AnimatableLengthTest.cpp create(-5, CSSPrimitiveValue::CSS_PX, -5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom3)); create 199 Source/core/animation/AnimatableLengthTest.cpp Length(CalculationValue::create( create 205 Source/core/animation/AnimatableLengthTest.cpp create(-5, CSSPrimitiveValue::CSS_PX, -5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom1, NonNegativeValues)); create 207 Source/core/animation/AnimatableLengthTest.cpp Length(CalculationValue::create( create 213 Source/core/animation/AnimatableLengthTest.cpp create(-5, CSSPrimitiveValue::CSS_PX, -5, CSSPrimitiveValue::CSS_PERCENTAGE)->toLength(conversionDataZoom3, NonNegativeValues)); create 218 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> from10px = create(10, CSSPrimitiveValue::CSS_PX); create 219 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> to20pxAsInches = create(20.0 / 96, CSSPrimitiveValue::CSS_IN); create 221 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(5, CSSPrimitiveValue::CSS_PX), create 224 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(10, CSSPrimitiveValue::CSS_PX), create 226 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(14, CSSPrimitiveValue::CSS_PX), create 228 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(15, CSSPrimitiveValue::CSS_PX), create 230 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(16, CSSPrimitiveValue::CSS_PX), create 232 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(20.0 / 96, CSSPrimitiveValue::CSS_IN), create 234 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(25, CSSPrimitiveValue::CSS_PX), create 237 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> from10em = create(10, CSSPrimitiveValue::CSS_EMS); create 238 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> to20rem = create(20, CSSPrimitiveValue::CSS_REMS); create 239 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(15, CSSPrimitiveValue::CSS_EMS, -10, CSSPrimitiveValue::CSS_REMS), create 241 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(10, CSSPrimitiveValue::CSS_EMS), create 243 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(6, CSSPrimitiveValue::CSS_EMS, 8, CSSPrimitiveValue::CSS_REMS), create 245 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(5, CSSPrimitiveValue::CSS_EMS, 10, CSSPrimitiveValue::CSS_REMS), create 247 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(4, CSSPrimitiveValue::CSS_EMS, 12, CSSPrimitiveValue::CSS_REMS), create 249 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(20, CSSPrimitiveValue::CSS_REMS), create 251 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(-5, CSSPrimitiveValue::CSS_EMS, 30, CSSPrimitiveValue::CSS_REMS), create 255 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> from0px = create(0, CSSPrimitiveValue::CSS_PX); create 256 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(-10, CSSPrimitiveValue::CSS_REMS), create 259 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PX), create 261 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(10, CSSPrimitiveValue::CSS_REMS), create 263 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(20, CSSPrimitiveValue::CSS_REMS), create 265 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(30, CSSPrimitiveValue::CSS_REMS), create 269 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> from0percent = create(0, CSSPrimitiveValue::CSS_PERCENTAGE); create 270 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PERCENTAGE, -10, CSSPrimitiveValue::CSS_REMS), create 273 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PERCENTAGE), create 275 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PERCENTAGE, 10, CSSPrimitiveValue::CSS_REMS), create 278 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(20, CSSPrimitiveValue::CSS_REMS), create 280 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PERCENTAGE, 30, CSSPrimitiveValue::CSS_REMS), create 286 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(10, CSSPrimitiveValue::CSS_PX), create 287 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_PX).get(), create(0, CSSPrimitiveValue::CSS_MM).get())); create 288 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(100, CSSPrimitiveValue::CSS_PX), create 289 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(4, CSSPrimitiveValue::CSS_PX).get(), create(1, CSSPrimitiveValue::CSS_IN).get())); create 291 Source/core/animation/AnimatableLengthTest.cpp create(10, CSSPrimitiveValue::CSS_EMS, 20, CSSPrimitiveValue::CSS_REMS), create 292 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_EMS).get(), create(20, CSSPrimitiveValue::CSS_REMS).get())); create 294 Source/core/animation/AnimatableLengthTest.cpp create(10, CSSPrimitiveValue::CSS_EMS), create 295 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(10, CSSPrimitiveValue::CSS_EMS).get(), create(0, CSSPrimitiveValue::CSS_REMS).get())); create 297 Source/core/animation/AnimatableLengthTest.cpp create(20, CSSPrimitiveValue::CSS_REMS), create 298 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(0, CSSPrimitiveValue::CSS_EMS).get(), create(20, CSSPrimitiveValue::CSS_REMS).get())); create 301 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> rems20 = create(20, CSSPrimitiveValue::CSS_REMS); create 302 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(rems20.get(), AnimatableValue::add(create(0, CSSPrimitiveValue::CSS_EMS).get(), rems20.get()).get()); create 303 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(rems20.get(), AnimatableValue::add(rems20.get(), create(0, CSSPrimitiveValue::CSS_EMS).get()).get()); create 306 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> zeropercent = create(0, CSSPrimitiveValue::CSS_PERCENTAGE); create 307 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(0, CSSPrimitiveValue::CSS_PERCENTAGE, -10, CSSPrimitiveValue::CSS_REMS), create 308 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(zeropercent.get(), create(-10, CSSPrimitiveValue::CSS_REMS).get())); create 309 Source/core/animation/AnimatableLengthTest.cpp EXPECT_REFV_EQ(create(-10, CSSPrimitiveValue::CSS_REMS, 0, CSSPrimitiveValue::CSS_PERCENTAGE), create 310 Source/core/animation/AnimatableLengthTest.cpp AnimatableValue::add(create(-10, CSSPrimitiveValue::CSS_REMS).get(), zeropercent.get())); create 315 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_PX))); create 316 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_PERCENTAGE))); create 317 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_EMS))); create 318 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_EXS))); create 319 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_REMS))); create 320 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_VW))); create 321 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_VH))); create 322 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_VMIN))); create 323 Source/core/animation/AnimatableLengthTest.cpp EXPECT_TRUE(isUnitlessZero(create(0, CSSPrimitiveValue::CSS_VMAX))); create 325 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(1, CSSPrimitiveValue::CSS_PX))); create 326 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(2, CSSPrimitiveValue::CSS_PERCENTAGE))); create 327 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(3, CSSPrimitiveValue::CSS_EMS))); create 328 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(4, CSSPrimitiveValue::CSS_EXS))); create 329 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(5, CSSPrimitiveValue::CSS_REMS))); create 330 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(6, CSSPrimitiveValue::CSS_VW))); create 331 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(7, CSSPrimitiveValue::CSS_VH))); create 332 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(8, CSSPrimitiveValue::CSS_VMIN))); create 333 Source/core/animation/AnimatableLengthTest.cpp EXPECT_FALSE(isUnitlessZero(create(9, CSSPrimitiveValue::CSS_VMAX))); create 338 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> length10px = create(10, CSSPrimitiveValue::CSS_PX); create 339 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePixels, commonUnitType(length10px, create(1, CSSPrimitiveValue::CSS_PX).get())); create 340 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length10px, create(2, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 341 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length10px, create(3, CSSPrimitiveValue::CSS_EMS).get())); create 342 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length10px, create(4, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM).get())); create 343 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length10px, create(0, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 345 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> length0px = create(0, CSSPrimitiveValue::CSS_PX); create 346 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePixels, commonUnitType(length0px, create(1, CSSPrimitiveValue::CSS_PX).get())); create 347 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePercentage, commonUnitType(length0px, create(2, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 348 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeFontSize, commonUnitType(length0px, create(3, CSSPrimitiveValue::CSS_EMS).get())); create 349 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length0px, create(4, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM).get())); create 350 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePercentage, commonUnitType(length0px, create(0, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 352 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> length0percent = create(0, CSSPrimitiveValue::CSS_PERCENTAGE); create 353 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length0percent, create(1, CSSPrimitiveValue::CSS_PX).get())); create 354 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePercentage, commonUnitType(length0percent, create(2, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 355 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length0percent, create(3, CSSPrimitiveValue::CSS_EMS).get())); create 356 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(length0percent, create(4, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM).get())); create 357 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypePercentage, commonUnitType(length0percent, create(0, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 359 Source/core/animation/AnimatableLengthTest.cpp RefPtrWillBeRawPtr<AnimatableLength> lengthCalc = create(3, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM); create 360 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(lengthCalc, create(1, CSSPrimitiveValue::CSS_PX).get())); create 361 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(lengthCalc, create(2, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 362 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(lengthCalc, create(3, CSSPrimitiveValue::CSS_EMS).get())); create 363 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(lengthCalc, create(4, CSSPrimitiveValue::CSS_PX, 5, CSSPrimitiveValue::CSS_CM).get())); create 364 Source/core/animation/AnimatableLengthTest.cpp EXPECT_EQ(AnimatableLength::UnitTypeCalc, commonUnitType(lengthCalc, create(0, CSSPrimitiveValue::CSS_PERCENTAGE).get())); create 45 Source/core/animation/AnimatableNeutral.h static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); } create 50 Source/core/animation/AnimatableNeutralTest.cpp RefPtrWillBeRawPtr<CSSValue> cssValue = CSSArrayFunctionValue::create(); create 51 Source/core/animation/AnimatableNeutralTest.cpp RefPtrWillBeRawPtr<AnimatableValue> animatableUnknown = AnimatableUnknown::create(cssValue); create 89 Source/core/animation/AnimatableRepeatable.cpp return create(interpolatedValues); create 103 Source/core/animation/AnimatableRepeatable.cpp return create(addedValues); create 46 Source/core/animation/AnimatableRepeatable.h static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values) create 40 Source/core/animation/AnimatableSVGLength.cpp return create(toAnimatableSVGLength(value)->toSVGLength()->blend(m_length.get(), narrowPrecisionToFloat(fraction))); create 43 Source/core/animation/AnimatableSVGLength.h static PassRefPtrWillBeRawPtr<AnimatableSVGLength> create(PassRefPtr<SVGLength> length) create 47 Source/core/animation/AnimatableSVGPaint.cpp return AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, m_color.interpolateTo(svgPaint->m_color, fraction), String()); create 57 Source/core/animation/AnimatableSVGPaint.cpp return AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, m_color.addWith(svgPaint->m_color), String()); create 43 Source/core/animation/AnimatableSVGPaint.h static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, const Color& color, const String& uri) create 45 Source/core/animation/AnimatableSVGPaint.h return create(type, AnimatableColorImpl(color), uri); create 47 Source/core/animation/AnimatableSVGPaint.h static PassRefPtrWillBeRawPtr<AnimatableSVGPaint> create(SVGPaint::SVGPaintType type, const AnimatableColorImpl& color, const String& uri) create 39 Source/core/animation/AnimatableShadow.cpp return AnimatableShadow::create(ShadowList::blend(m_shadowList.get(), shadowList->m_shadowList.get(), fraction)); create 42 Source/core/animation/AnimatableShadow.h static PassRefPtrWillBeRawPtr<AnimatableShadow> create(PassRefPtr<ShadowList> shadowList) create 59 Source/core/animation/AnimatableShapeValue.cpp return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get()); create 42 Source/core/animation/AnimatableShapeValue.h static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape) create 45 Source/core/animation/AnimatableStrokeDasharrayList.cpp m_values.append(AnimatableSVGLength::create(*it)); create 50 Source/core/animation/AnimatableStrokeDasharrayList.cpp RefPtr<SVGLengthList> lengths = SVGLengthList::create(); create 79 Source/core/animation/AnimatableStrokeDasharrayList.cpp DEFINE_STATIC_LOCAL(Persistent<AnimatableSVGLength>, zeroPixels, (AnimatableSVGLength::create(SVGLength::create()))); create 81 Source/core/animation/AnimatableStrokeDasharrayList.cpp DEFINE_STATIC_REF(AnimatableSVGLength, zeroPixels, AnimatableSVGLength::create(SVGLength::create()).leakRef()); create 43 Source/core/animation/AnimatableStrokeDasharrayList.h static PassRefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> create(PassRefPtr<SVGLengthList> lengths) create 44 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp RefPtr<SVGLengthList> list = SVGLengthList::create(); create 46 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp list->append(SVGLength::create()); create 54 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listA = AnimatableStrokeDasharrayList::create(svgListA); create 55 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listB = AnimatableStrokeDasharrayList::create(svgListB); create 60 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp listB = AnimatableStrokeDasharrayList::create(svgListB); create 64 Source/core/animation/AnimatableStrokeDasharrayListTest.cpp listB = AnimatableStrokeDasharrayList::create(svgListB); create 44 Source/core/animation/AnimatableTransform.cpp return AnimatableTransform::create(transform->m_transform.blend(m_transform, fraction)); create 50 Source/core/animation/AnimatableTransform.cpp return AnimatableTransform::create(m_transform.add(transform->m_transform)); create 42 Source/core/animation/AnimatableTransform.h static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&); create 44 Source/core/animation/AnimatableUnknown.h static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(PassRefPtrWillBeRawPtr<CSSValue> value) create 48 Source/core/animation/AnimatableUnknown.h static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(CSSValueID value) create 47 Source/core/animation/AnimatableUnknownTest.cpp cssValue = CSSArrayFunctionValue::create(); create 48 Source/core/animation/AnimatableUnknownTest.cpp animatableUnknown = AnimatableUnknown::create(cssValue); create 50 Source/core/animation/AnimatableUnknownTest.cpp otherCSSValue = CSSArrayFunctionValue::create(); create 51 Source/core/animation/AnimatableUnknownTest.cpp otherAnimatableUnknown = AnimatableUnknown::create(otherCSSValue); create 48 Source/core/animation/AnimatableValue.cpp DEFINE_STATIC_LOCAL(Persistent<AnimatableNeutral>, neutralSentinelValue, (AnimatableNeutral::create())); create 51 Source/core/animation/AnimatableValue.cpp DEFINE_STATIC_REF(AnimatableNeutral, neutralSentinelValue, (AnimatableNeutral::create())); create 66 Source/core/animation/AnimatableValueKeyframe.cpp return LegacyStyleInterpolation::create(value(), to->value(), property); create 15 Source/core/animation/AnimatableValueKeyframe.h static PassRefPtrWillBeRawPtr<AnimatableValueKeyframe> create() create 62 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create().get()).get())), create 68 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableColor::create(Color(0x000000FF), Color(0xFFFF0000)))); create 72 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableDouble::create(1.0))); create 76 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableLength::create(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PX).get()))); create 80 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableLengthBox::create( create 81 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(1, CSSPrimitiveValue::CSS_PX).get()), create 82 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(2, CSSPrimitiveValue::CSS_EMS).get()), create 83 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(3, CSSPrimitiveValue::CSS_REMS).get()), create 84 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(4, CSSPrimitiveValue::CSS_PT).get()) create 89 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableLengthPoint::create( create 90 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(5, CSSPrimitiveValue::CSS_PERCENTAGE).get()), create 91 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(6, CSSPrimitiveValue::CSS_PX).get()) create 96 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableLengthSize::create( create 97 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(3, CSSPrimitiveValue::CSS_REMS).get()), create 98 Source/core/animation/AnimatableValueTestHelperTest.cpp AnimatableLength::create(CSSPrimitiveValue::create(4, CSSPrimitiveValue::CSS_PT).get()) create 106 Source/core/animation/AnimatableValueTestHelperTest.cpp v1.append(AnimatableLength::create(CSSPrimitiveValue::create(3, CSSPrimitiveValue::CSS_REMS).get())); create 107 Source/core/animation/AnimatableValueTestHelperTest.cpp v1.append(AnimatableLength::create(CSSPrimitiveValue::create(4, CSSPrimitiveValue::CSS_PT).get())); create 110 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableRepeatable::create(v1))); create 112 Source/core/animation/AnimatableValueTestHelperTest.cpp RefPtr<SVGLength> length1cm = SVGLength::create(LengthModeOther); create 113 Source/core/animation/AnimatableValueTestHelperTest.cpp RefPtr<SVGLength> length2cm = SVGLength::create(LengthModeOther); create 119 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableSVGLength::create(length1cm))); create 123 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, Color(0xFFFF0000), ""))); create 127 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_URI, Color(0xFFFF0000), "abc"))); create 130 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())), create 133 Source/core/animation/AnimatableValueTestHelperTest.cpp RefPtr<SVGLengthList> l2 = SVGLengthList::create(); create 138 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableStrokeDasharrayList::create(l2))); create 141 Source/core/animation/AnimatableValueTestHelperTest.cpp operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX)); create 144 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableTransform::create(operations1))); create 147 Source/core/animation/AnimatableValueTestHelperTest.cpp operations2.operations().append(ScaleTransformOperation::create(1, 1, 1, TransformOperation::Scale3D)); create 150 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableTransform::create(operations2))); create 154 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone).get()))); create 158 Source/core/animation/AnimatableValueTestHelperTest.cpp PrintToString(AnimatableVisibility::create(VISIBLE))); create 42 Source/core/animation/AnimatableVisibility.h static PassRefPtrWillBeRawPtr<AnimatableVisibility> create(EVisibility visibility) create 57 Source/core/animation/Animation.cpp return create(element, effect, TimingInput::convert(timingInputDictionary)); create 62 Source/core/animation/Animation.cpp return create(element, effect, TimingInput::convert(duration)); create 67 Source/core/animation/Animation.cpp return create(element, effect, Timing()); create 73 Source/core/animation/Animation.cpp return create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), TimingInput::convert(timingInputDictionary)); create 79 Source/core/animation/Animation.cpp return create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), TimingInput::convert(duration)); create 85 Source/core/animation/Animation.cpp return create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), Timing()); create 52 Source/core/animation/Animation.h static PassRefPtr<Animation> create(PassRefPtr<Element>, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtr<EventDelegate> = nullptr); create 54 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Dictionary& timingInputDictionary); create 55 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, double duration); create 56 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>); create 57 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, const Dictionary& timingInputDictionary, ExceptionState&); create 58 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, double duration, ExceptionState&); create 59 Source/core/animation/Animation.h static PassRefPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&); create 48 Source/core/animation/AnimationClock.h static PassOwnPtr<AnimationClock> create(WTF::TimeFunction monotonicallyIncreasingTime = WTF::monotonicallyIncreasingTime) create 45 Source/core/animation/AnimationClockTest.cpp animationClock = AnimationClock::create(mockTimeFunction); create 316 Source/core/animation/AnimationPlayer.cpp RefPtrWillBeRawPtr<AnimationPlayerEvent> event = AnimationPlayerEvent::create(eventType, currentTime(), timeline()->currentTime()); create 52 Source/core/animation/AnimationPlayer.h static PassRefPtr<AnimationPlayer> create(DocumentTimeline&, TimedItem*); create 57 Source/core/animation/AnimationPlayerTest.cpp document = Document::create(); create 59 Source/core/animation/AnimationPlayerTest.cpp timeline = DocumentTimeline::create(document.get()); create 76 Source/core/animation/AnimationPlayerTest.cpp return Animation::create(nullptr, nullptr, timing); create 468 Source/core/animation/AnimationPlayerTest.cpp player->setSource(Animation::create(nullptr, nullptr, timing).get()); create 637 Source/core/animation/AnimationPlayerTest.cpp RefPtr<Animation> animation = Animation::create(nullptr, nullptr, timing); create 686 Source/core/animation/AnimationPlayerTest.cpp RefPtr<Animation> animation = Animation::create(element, nullptr, timing); create 23 Source/core/animation/AnimationStackTest.cpp document = Document::create(); create 25 Source/core/animation/AnimationStackTest.cpp timeline = DocumentTimeline::create(document.get()); create 41 Source/core/animation/AnimationStackTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 44 Source/core/animation/AnimationStackTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 47 Source/core/animation/AnimationStackTest.cpp return AnimatableValueKeyframeEffectModel::create(keyframes); create 54 Source/core/animation/AnimationStackTest.cpp return InertAnimation::create(effect, timing, false); create 61 Source/core/animation/AnimationStackTest.cpp return Animation::create(element, effect, timing); create 76 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 10); create 77 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 15); create 78 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(3))).get(), 5); create 81 Source/core/animation/AnimationStackTest.cpp EXPECT_TRUE(interpolationValue(result.get(CSSPropertyFontSize))->equals(AnimatableDouble::create(2).get())); create 86 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 15); create 87 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 10); create 89 Source/core/animation/AnimationStackTest.cpp RefPtr<InertAnimation> inert1 = makeInertAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(3))); create 90 Source/core/animation/AnimationStackTest.cpp RefPtr<InertAnimation> inert2 = makeInertAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(4))); create 95 Source/core/animation/AnimationStackTest.cpp EXPECT_TRUE(interpolationValue(result.get(CSSPropertyFontSize))->equals(AnimatableDouble::create(1).get())); create 96 Source/core/animation/AnimationStackTest.cpp EXPECT_TRUE(interpolationValue(result.get(CSSPropertyZIndex))->equals(AnimatableDouble::create(4).get())); create 102 Source/core/animation/AnimationStackTest.cpp cancelledAnimationPlayers.add(play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 0)); create 103 Source/core/animation/AnimationStackTest.cpp play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 0); create 106 Source/core/animation/AnimationStackTest.cpp EXPECT_TRUE(interpolationValue(result.get(CSSPropertyZIndex))->equals(AnimatableDouble::create(2).get())); create 25 Source/core/animation/AnimationTest.cpp : document(Document::create()) create 42 Source/core/animation/AnimationTest.cpp , m_scope(V8ExecutionScope::create(m_isolate)) create 49 Source/core/animation/AnimationTest.cpp return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true), timingInput); create 53 Source/core/animation/AnimationTest.cpp return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true)); create 108 Source/core/animation/AnimationTest.cpp EXPECT_EQ(*(CubicBezierTimingFunction::create(1, 1, 0.3, 0.3).get()), *keyframes[1]->easing()); create 365 Source/core/animation/AnimationTest.cpp RefPtr<Animation> animation = Animation::create(nullptr, nullptr, timing); create 398 Source/core/animation/AnimationTest.cpp RefPtr<Animation> animation = Animation::create(nullptr, nullptr, timing); create 431 Source/core/animation/AnimationTest.cpp RefPtr<Animation> animation = Animation::create(nullptr, nullptr, timing); create 91 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX)); create 92 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(RotateTransformOperation::create(0.1, 0.2, 0.3, 200000.4, TransformOperation::Rotate3D)); create 93 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(ScaleTransformOperation::create(50.2, 100, -4, TransformOperation::Scale3D)); create 107 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATURATE)); create 108 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(BasicColorMatrixFilterOperation::create(0.2, FilterOperation::GRAYSCALE)); create 109 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(BasicColorMatrixFilterOperation::create(0.8, FilterOperation::SEPIA)); create 110 Source/core/animation/AnimationTranslationUtilTest.cpp ops.operations().append(BasicColorMatrixFilterOperation::create(0.1, FilterOperation::OPACITY)); create 101 Source/core/animation/CompositorAnimations.cpp return CubicBezierTimingFunction::create(1 - timefunc->x2(), 1 - timefunc->y2(), 1 - timefunc->x1(), 1 - timefunc->y1()); create 83 Source/core/animation/CompositorAnimationsTest.cpp m_cubicCustomTimingFunction = CubicBezierTimingFunction::create(1, 2, 3, 4); create 84 Source/core/animation/CompositorAnimationsTest.cpp m_stepTimingFunction = StepsTimingFunction::create(1, StepsTimingFunction::StepAtEnd); create 93 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect2 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector2); create 96 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 121 Source/core/animation/CompositorAnimationsTest.cpp return isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(frames).get()); create 143 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> keyframe = AnimatableValueKeyframe::create(); create 155 Source/core/animation/CompositorAnimationsTest.cpp value = AnimatableTransform::create(TransformOperations()); create 157 Source/core/animation/CompositorAnimationsTest.cpp value = AnimatableDouble::create(10.0); create 178 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableDouble> value = AnimatableDouble::create(values[i]); create 208 Source/core/animation/CompositorAnimationsTest.cpp return AnimatableValueKeyframeEffectModel::create(frames); create 221 Source/core/animation/CompositorAnimationsTest.cpp keyframeGoodMultiple->setPropertyValue(CSSPropertyTransform, AnimatableTransform::create(TransformOperations()).get()); create 225 Source/core/animation/CompositorAnimationsTest.cpp keyframeBadMultipleOp->setPropertyValue(CSSPropertyTransform, AnimatableDouble::create(10.0).get()); create 229 Source/core/animation/CompositorAnimationsTest.cpp keyframeBadMultipleID->setPropertyValue(CSSPropertyOpacity, AnimatableDouble::create(10.0).get()); create 236 Source/core/animation/CompositorAnimationsTest.cpp ops.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(2, WebCore::Fixed), TransformOperation::TranslateX)); create 237 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> goodKeyframe = createReplaceOpKeyframe(CSSPropertyTransform, AnimatableTransform::create(ops).get()); create 240 Source/core/animation/CompositorAnimationsTest.cpp ops.operations().append(TranslateTransformOperation::create(Length(50, WebCore::Percent), Length(2, WebCore::Fixed), TransformOperation::TranslateX)); create 241 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> badKeyframe = createReplaceOpKeyframe(CSSPropertyTransform, AnimatableTransform::create(ops).get()); create 246 Source/core/animation/CompositorAnimationsTest.cpp ops2.operations().append(TranslateTransformOperation::create(calcLength, Length(0, WebCore::Fixed), TransformOperation::TranslateX)); create 247 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> badKeyframe2 = createReplaceOpKeyframe(CSSPropertyTransform, AnimatableTransform::create(ops2).get()); create 256 Source/core/animation/CompositorAnimationsTest.cpp EXPECT_TRUE(isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(framesSame).get())); create 261 Source/core/animation/CompositorAnimationsTest.cpp EXPECT_TRUE(isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(framesMixed).get())); create 269 Source/core/animation/CompositorAnimationsTest.cpp EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(framesSame).get())); create 274 Source/core/animation/CompositorAnimationsTest.cpp EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(framesMixedProperties).get())); create 279 Source/core/animation/CompositorAnimationsTest.cpp EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *AnimatableValueKeyframeEffectModel::create(framesMixedOps).get())); create 462 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect2 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector2); create 466 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect2 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector2); create 473 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 483 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 490 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect2 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector2); create 497 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 504 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 511 Source/core/animation/CompositorAnimationsTest.cpp m_keyframeAnimationEffect5 = AnimatableValueKeyframeEffectModel::create(*m_keyframeVector5); create 529 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> basicFrames = AnimatableValueKeyframeEffectModel::create(basicFramesVector).get(); create 533 Source/core/animation/CompositorAnimationsTest.cpp basicFrames = AnimatableValueKeyframeEffectModel::create(basicFramesVector).get(); create 538 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> nonBasicFrames = AnimatableValueKeyframeEffectModel::create(nonBasicFramesVector).get(); create 549 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0), create 550 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 594 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0), create 595 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 641 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0), create 642 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(-1.0).get(), 0.25), create 643 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(20.0).get(), 0.5), create 644 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 694 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0), create 695 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 743 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0)); create 744 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(-1.0).get(), 0.25)); create 745 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(20.0).get(), 0.5)); create 746 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 750 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(frames); create 800 Source/core/animation/CompositorAnimationsTest.cpp RefPtr<TimingFunction> cubicEasyFlipTimingFunction = CubicBezierTimingFunction::create(0.0, 0.0, 0.0, 1.0); create 804 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0)); create 805 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(-1.0).get(), 0.25)); create 806 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(20.0).get(), 0.5)); create 807 Source/core/animation/CompositorAnimationsTest.cpp frames.append(createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 811 Source/core/animation/CompositorAnimationsTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(frames); create 862 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(2.0).get(), 0), create 863 Source/core/animation/CompositorAnimationsTest.cpp createReplaceOpKeyframe(CSSPropertyOpacity, AnimatableDouble::create(5.0).get(), 1.0)); create 75 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp RefPtr<TimingFunction> cubicCustomTiming = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 77 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp RefPtr<TimingFunction> cubicCustomTimingReversed = CubicBezierTimingFunction::create(0, 1.0 - (-1.73), 1.0 - 0.17, 1.0 - 0.67); create 81 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp RefPtr<TimingFunction> cubicEaseTimingReversed = CubicBezierTimingFunction::create(1.0 - 0.25, 0.0, 1.0 - 0.25, 1.0 - 0.1); create 73 Source/core/animation/DocumentTimeline.cpp RefPtr<AnimationPlayer> player = AnimationPlayer::create(*this, child); create 62 Source/core/animation/DocumentTimeline.h static PassRefPtr<DocumentTimeline> create(Document*, PassOwnPtr<PlatformTiming> = nullptr); create 86 Source/core/animation/DocumentTimelineTest.cpp document = Document::create(); create 88 Source/core/animation/DocumentTimelineTest.cpp element = Element::create(nullQName() , document.get()); create 90 Source/core/animation/DocumentTimelineTest.cpp timeline = DocumentTimeline::create(document.get(), adoptPtr(platformTiming)); create 127 Source/core/animation/DocumentTimelineTest.cpp timeline = DocumentTimeline::create(document.get()); create 135 Source/core/animation/DocumentTimelineTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); create 136 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim = Animation::create(element.get(), effect, timing); create 152 Source/core/animation/DocumentTimelineTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); create 154 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim = Animation::create(element.get(), effect, timing); create 171 Source/core/animation/DocumentTimelineTest.cpp timeline = DocumentTimeline::create(document.get()); create 196 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim1 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timing); create 197 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim2 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timing); create 229 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim1 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timingForwardFill); create 230 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim2 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timingNoFill); create 231 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim3 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timingBackwardFillDelay); create 232 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim4 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timingNoFillDelay); create 233 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim5 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timingAutoFill); create 260 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim = Animation::create(element.get(), nullptr, timing); create 287 Source/core/animation/DocumentTimelineTest.cpp RefPtr<Animation> anim = Animation::create(nullptr, nullptr, timing); create 65 Source/core/animation/EffectInput.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> propertySet = MutableStylePropertySet::create(); create 68 Source/core/animation/EffectInput.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> keyframe = AnimatableValueKeyframe::create(); create 81 Source/core/animation/ElementAnimation.h RefPtr<Animation> animation = Animation::create(&element, effect, timing); create 43 Source/core/animation/InertAnimation.h static PassRefPtr<InertAnimation> create(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused); create 16 Source/core/animation/InterpolableValue.cpp return create(m_value); create 18 Source/core/animation/InterpolableValue.cpp return create(toNumber->m_value); create 19 Source/core/animation/InterpolableValue.cpp return create(m_value * (1 - progress) + toNumber->m_value * progress); create 36 Source/core/animation/InterpolableValue.cpp return create(*this); create 39 Source/core/animation/InterpolableValue.cpp return InterpolableList::create(*toList); create 42 Source/core/animation/InterpolableValue.cpp OwnPtrWillBeRawPtr<InterpolableList> result = create(m_size); create 62 Source/core/animation/InterpolableValue.cpp return create(m_value); create 64 Source/core/animation/InterpolableValue.cpp return create(otherValue->m_value); create 65 Source/core/animation/InterpolableValue.cpp return create(AnimatableValue::interpolate(m_value.get(), otherValue->m_value.get(), percentage)); create 41 Source/core/animation/InterpolableValue.h static PassOwnPtrWillBeRawPtr<InterpolableNumber> create(double value) create 48 Source/core/animation/InterpolableValue.h virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); } create 65 Source/core/animation/InterpolableValue.h static PassOwnPtrWillBeRawPtr<InterpolableBool> create(bool value) create 72 Source/core/animation/InterpolableValue.h virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); } create 89 Source/core/animation/InterpolableValue.h static PassOwnPtrWillBeRawPtr<InterpolableList> create(const InterpolableList &other) create 94 Source/core/animation/InterpolableValue.h static PassOwnPtrWillBeRawPtr<InterpolableList> create(size_t size) create 111 Source/core/animation/InterpolableValue.h virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(*this); } create 138 Source/core/animation/InterpolableValue.h static PassOwnPtrWillBeRawPtr<InterpolableAnimatableValue> create(PassRefPtrWillBeRawPtr<AnimatableValue> value) create 145 Source/core/animation/InterpolableValue.h virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); } create 23 Source/core/animation/InterpolableValueTest.cpp RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableNumber::create(a), InterpolableNumber::create(b)); create 30 Source/core/animation/InterpolableValueTest.cpp RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableBool::create(a), InterpolableBool::create(b)); create 37 Source/core/animation/InterpolableValueTest.cpp RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(listA, listB); create 65 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> listA = InterpolableList::create(3); create 66 Source/core/animation/InterpolableValueTest.cpp listA->set(0, InterpolableNumber::create(0)); create 67 Source/core/animation/InterpolableValueTest.cpp listA->set(1, InterpolableNumber::create(42)); create 68 Source/core/animation/InterpolableValueTest.cpp listA->set(2, InterpolableNumber::create(20.5)); create 70 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> listB = InterpolableList::create(3); create 71 Source/core/animation/InterpolableValueTest.cpp listB->set(0, InterpolableNumber::create(100)); create 72 Source/core/animation/InterpolableValueTest.cpp listB->set(1, InterpolableNumber::create(-200)); create 73 Source/core/animation/InterpolableValueTest.cpp listB->set(2, InterpolableNumber::create(300)); create 84 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> listA = InterpolableList::create(3); create 85 Source/core/animation/InterpolableValueTest.cpp listA->set(0, InterpolableNumber::create(0)); create 86 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> subListA = InterpolableList::create(1); create 87 Source/core/animation/InterpolableValueTest.cpp subListA->set(0, InterpolableNumber::create(100)); create 89 Source/core/animation/InterpolableValueTest.cpp listA->set(2, InterpolableBool::create(false)); create 91 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> listB = InterpolableList::create(3); create 92 Source/core/animation/InterpolableValueTest.cpp listB->set(0, InterpolableNumber::create(100)); create 93 Source/core/animation/InterpolableValueTest.cpp OwnPtrWillBeRawPtr<InterpolableList> subListB = InterpolableList::create(1); create 94 Source/core/animation/InterpolableValueTest.cpp subListB->set(0, InterpolableNumber::create(50)); create 96 Source/core/animation/InterpolableValueTest.cpp listB->set(2, InterpolableBool::create(true)); create 20 Source/core/animation/Interpolation.h static PassRefPtrWillBeRawPtr<Interpolation> create(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end) create 77 Source/core/animation/Interpolation.h static PassRefPtrWillBeRawPtr<LegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<AnimatableValue> start, PassRefPtrWillBeRawPtr<AnimatableValue> end, CSSPropertyID id) create 79 Source/core/animation/Interpolation.h return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id)); create 17 Source/core/animation/InterpolationEffect.h static PassRefPtrWillBeRawPtr<InterpolationEffect> create() { return adoptRefWillBeNoop(new InterpolationEffect()); } create 23 Source/core/animation/InterpolationEffect.h m_interpolations.append(InterpolationRecord::create(interpolation, easing, start, end, applyFrom, applyTo)); create 42 Source/core/animation/InterpolationEffect.h static PassOwnPtrWillBeRawPtr<InterpolationRecord> create(PassRefPtrWillBeRawPtr<Interpolation> interpolation, PassRefPtr<TimingFunction> easing, double start, double end, double applyFrom, double applyTo) create 33 Source/core/animation/InterpolationEffectTest.cpp RefPtrWillBeRawPtr<InterpolationEffect> interpolationEffect = InterpolationEffect::create(); create 34 Source/core/animation/InterpolationEffectTest.cpp interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(0), InterpolableNumber::create(10)), create 58 Source/core/animation/InterpolationEffectTest.cpp RefPtrWillBeRawPtr<InterpolationEffect> interpolationEffect = InterpolationEffect::create(); create 59 Source/core/animation/InterpolationEffectTest.cpp interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(10), InterpolableNumber::create(15)), create 61 Source/core/animation/InterpolationEffectTest.cpp interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(0), InterpolableNumber::create(1)), create 63 Source/core/animation/InterpolationEffectTest.cpp interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(1), InterpolableNumber::create(6)), create 170 Source/core/animation/KeyframeEffectModel.cpp m_interpolationEffect = InterpolationEffect::create(); create 125 Source/core/animation/KeyframeEffectModel.h static PassRefPtrWillBeRawPtr<KeyframeEffectModel<Keyframe> > create(const KeyframeVector& keyframes) { return adoptRefWillBeNoop(new KeyframeEffectModel(keyframes)); } create 49 Source/core/animation/KeyframeEffectModelTest.cpp return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get()); create 54 Source/core/animation/KeyframeEffectModelTest.cpp return AnimatableLength::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_PX).get()); create 60 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 63 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 105 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 117 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 126 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 136 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 147 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 159 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 169 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 176 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 188 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 194 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()); create 202 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 206 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 214 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 218 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 225 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 228 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 231 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 235 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 243 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 245 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 248 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 251 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 260 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 263 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 266 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 270 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 279 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 282 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 285 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 288 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[3] = AnimatableValueKeyframe::create(); create 291 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[4] = AnimatableValueKeyframe::create(); create 294 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[5] = AnimatableValueKeyframe::create(); create 297 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[6] = AnimatableValueKeyframe::create(); create 300 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[7] = AnimatableValueKeyframe::create(); create 303 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[8] = AnimatableValueKeyframe::create(); create 307 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 321 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 324 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 329 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 336 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 340 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 345 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 362 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 371 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 381 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 385 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 388 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 392 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 407 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 411 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 422 Source/core/animation/KeyframeEffectModelTest.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 443 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 444 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 446 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 447 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[3] = AnimatableValueKeyframe::create(); create 457 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 459 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 460 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 471 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 473 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 474 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 486 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 488 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 489 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 490 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[3] = AnimatableValueKeyframe::create(); create 491 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[4] = AnimatableValueKeyframe::create(); create 506 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 508 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 509 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 510 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[3] = AnimatableValueKeyframe::create(); create 511 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[4] = AnimatableValueKeyframe::create(); create 513 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[5] = AnimatableValueKeyframe::create(); create 514 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[6] = AnimatableValueKeyframe::create(); create 515 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[7] = AnimatableValueKeyframe::create(); create 531 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[0] = AnimatableValueKeyframe::create(); create 533 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[1] = AnimatableValueKeyframe::create(); create 534 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[2] = AnimatableValueKeyframe::create(); create 535 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[3] = AnimatableValueKeyframe::create(); create 536 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[4] = AnimatableValueKeyframe::create(); create 538 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[5] = AnimatableValueKeyframe::create(); create 539 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[6] = AnimatableValueKeyframe::create(); create 540 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[7] = AnimatableValueKeyframe::create(); create 542 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[8] = AnimatableValueKeyframe::create(); create 543 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[9] = AnimatableValueKeyframe::create(); create 544 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[10] = AnimatableValueKeyframe::create(); create 545 Source/core/animation/KeyframeEffectModelTest.cpp keyframes[11] = AnimatableValueKeyframe::create(); create 15 Source/core/animation/StringKeyframe.h static PassRefPtrWillBeRawPtr<StringKeyframe> create() create 191 Source/core/animation/TimedItem.cpp return TimedItemTiming::create(this); create 187 Source/core/animation/TimedItemCalculationsTest.cpp timing.timingFunction = StepsTimingFunction::create(4, StepsTimingFunction::StepAtEnd); create 198 Source/core/animation/TimedItemCalculationsTest.cpp timing.timingFunction = StepsTimingFunction::create(4, StepsTimingFunction::StepAtEnd); create 117 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 170 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 184 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 198 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 212 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 227 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 245 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 264 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 282 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 312 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 333 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 354 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 372 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 403 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 419 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 435 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 452 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 471 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 489 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 507 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 528 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 549 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 570 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 590 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 621 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 651 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 681 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 713 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 724 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 771 Source/core/animation/TimedItemTest.cpp RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); create 16 Source/core/animation/TimedItemTiming.h static PassRefPtr<TimedItemTiming> create(TimedItem* parent); create 20 Source/core/animation/TimingInputTest.cpp , m_scope(V8ExecutionScope::create(m_isolate)) create 152 Source/core/animation/TimingInputTest.cpp EXPECT_EQ(*CubicBezierTimingFunction::create(1, 1, 0.3, 0.3), *applyTimingInputString("easing", "cubic-bezier(1, 1, 0.3, 0.3)").timingFunction); create 153 Source/core/animation/TimingInputTest.cpp EXPECT_EQ(*StepsTimingFunction::create(3, StepsTimingFunction::StepAtStart), *applyTimingInputString("easing", "steps(3, start)").timingFunction); create 154 Source/core/animation/TimingInputTest.cpp EXPECT_EQ(*StepsTimingFunction::create(5, StepsTimingFunction::StepAtMiddle), *applyTimingInputString("easing", "steps(5, middle)").timingFunction); create 155 Source/core/animation/TimingInputTest.cpp EXPECT_EQ(*StepsTimingFunction::create(5, StepsTimingFunction::StepAtEnd), *applyTimingInputString("easing", "steps(5, end)").timingFunction); create 69 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLength::create(adjustFloatForAbsoluteZoom(length.value(), style), AnimatableLength::UnitTypePixels); create 71 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLength::create(length.value(), AnimatableLength::UnitTypePercentage); create 73 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLength::create(CSSCalcValue::createExpressionNode(length.calculationValue()->expression(), style.effectiveZoom())); create 81 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSPrimitiveValue::create(length)); create 83 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSValueNone); create 100 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSValueNormal); create 101 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableDouble::create(value); create 108 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableDouble::create(value, constraint); create 113 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthBox::create( create 129 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthBox::create( create 138 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthBoxAndBool::create( create 145 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthPoint::create( create 152 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthSize::create( create 160 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableImage::create(*image); create 161 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSValueNone); create 172 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSPrimitiveValue::create(fillSize.type)); create 184 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLength::create(CSSCalcValue::createExpressionNode( create 185 Source/core/animation/css/CSSAnimatableValueFactory.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(100, CSSPrimitiveValue::CSS_PERCENTAGE), true), create 217 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableRepeatable::create(values); create 224 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableColor::create(color, visitedLinkColor); create 230 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableShapeValue::create(value); create 231 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSValueAuto); create 283 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGLength::create(style.baselineShiftValue()); create 320 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableShadow::create(style.boxShadow()); create 324 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSPrimitiveValue::create(CSSValueAuto)); create 330 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGPaint::create(style.svgStyle()->fillPaintType(), style.svgStyle()->fillPaintColor(), style.svgStyle()->fillPaintUri()); create 352 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGLength::create(style.kerning()); create 402 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGLength::create(style.strokeWidth()); create 408 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableStrokeDasharrayList::create(style.strokeDashArray()); create 410 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGLength::create(style.strokeDashOffset()); create 416 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableSVGPaint::create(style.svgStyle()->strokePaintType(), style.svgStyle()->strokePaintColor(), style.svgStyle()->strokePaintUri()); create 418 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableColor::create(style.textDecorationColor().resolve(style.color()), style.visitedLinkTextDecorationColor().resolve(style.visitedLinkColor())); create 422 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableShadow::create(style.textShadow()); create 431 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableClipPathOperation::create(operation); create 432 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(CSSValueNone); create 444 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableFilterOperations::create(style.filter()); create 465 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthPoint::create( create 483 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableTransform::create(style.transform()); create 486 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableLengthPoint3D::create( create 506 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableVisibility::create(style.visibility()); create 514 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableUnknown::create(nullptr); create 44 Source/core/animation/css/CSSAnimatableValueFactory.h static PassRefPtrWillBeRawPtr<AnimatableValue> create(CSSPropertyID, const RenderStyle&); create 42 Source/core/animation/css/CSSAnimationData.h static PassRefPtrWillBeRawPtr<CSSAnimationData> create() create 47 Source/core/animation/css/CSSAnimationData.h static PassRefPtrWillBeRawPtr<CSSAnimationData> create(const CSSAnimationData* o) create 37 Source/core/animation/css/CSSAnimationDataList.cpp m_animations.append(CSSAnimationData::create(o.animation(i))); create 118 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> keyframe = AnimatableValueKeyframe::create(); create 130 Source/core/animation/css/CSSAnimations.cpp keyframe->setPropertyValue(property, CSSAnimatableValueFactory::create(property, *keyframeStyle).get()); create 161 Source/core/animation/css/CSSAnimations.cpp startKeyframe = AnimatableValueKeyframe::create(); create 167 Source/core/animation/css/CSSAnimations.cpp endKeyframe = AnimatableValueKeyframe::create(); create 194 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValue> snapshotValue = CSSAnimatableValueFactory::create(property, style); create 348 Source/core/animation/css/CSSAnimations.cpp update->startAnimation(animationName, InertAnimation::create(AnimatableValueKeyframeEffectModel::create(resolvedKeyframes), timing, isPaused)); create 391 Source/core/animation/css/CSSAnimations.cpp RefPtr<Animation> animation = Animation::create(element, inertAnimation->effect(), inertAnimation->specifiedTiming(), Animation::DefaultPriority, eventDelegate.release()); create 444 Source/core/animation/css/CSSAnimations.cpp effect = AnimatableValueKeyframeEffectModel::create(newFrames); create 446 Source/core/animation/css/CSSAnimations.cpp RefPtr<Animation> transition = Animation::create(element, effect, inertAnimation->specifiedTiming(), Animation::TransitionPriority, eventDelegate.release()); create 463 Source/core/animation/css/CSSAnimations.cpp to = CSSAnimatableValueFactory::create(id, style); create 478 Source/core/animation/css/CSSAnimations.cpp to = CSSAnimatableValueFactory::create(id, style); create 480 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValue> from = CSSAnimatableValueFactory::create(id, oldStyle); create 495 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> startKeyframe = AnimatableValueKeyframe::create(); create 501 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframe> endKeyframe = AnimatableValueKeyframe::create(); create 506 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes); create 509 Source/core/animation/css/CSSAnimations.cpp update->startTransition(id, eventId, from.get(), to.get(), InertAnimation::create(effect, timing, isPaused)); create 649 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<WebKitAnimationEvent> event = WebKitAnimationEvent::create(eventName, m_name, elapsedTime); create 693 Source/core/animation/css/CSSAnimations.cpp RefPtrWillBeRawPtr<TransitionEvent> event = TransitionEvent::create(eventType, propertyName, elapsedTime, pseudoElement); create 40 Source/core/animation/css/TransitionTimeline.h static PassRefPtr<TransitionTimeline> create(Document*, PassOwnPtr<PlatformTiming> = nullptr); create 200 Source/core/clipboard/Clipboard.cpp RefPtrWillBeRawPtr<FileList> files = FileList::create(); create 250 Source/core/clipboard/Clipboard.cpp return DragImage::create(m_dragImage->image()); create 450 Source/core/clipboard/Clipboard.cpp return DataTransferItemList::create(this, m_dataObject); create 60 Source/core/clipboard/Clipboard.h static PassRefPtrWillBeRawPtr<Clipboard> create(ClipboardType, ClipboardAccessPolicy, PassRefPtrWillBeRawPtr<DataObject>); create 44 Source/core/clipboard/DataObject.cpp RefPtrWillBeRawPtr<DataObject> dataObject = create(); create 57 Source/core/clipboard/DataObject.h static PassRefPtrWillBeRawPtr<DataObject> create(); create 130 Source/core/clipboard/DataObjectItem.cpp RefPtr<RawData> rawData = RawData::create(); create 132 Source/core/clipboard/DataObjectItem.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 135 Source/core/clipboard/DataObjectItem.cpp return Blob::create(BlobDataHandle::create(blobData.release(), data->size())); create 51 Source/core/clipboard/DataTransferItem.h static PassRefPtrWillBeRawPtr<DataTransferItem> create(PassRefPtrWillBeRawPtr<Clipboard>, PassRefPtrWillBeRawPtr<DataObjectItem>); create 62 Source/core/clipboard/DataTransferItemList.cpp return DataTransferItem::create(m_clipboard, item); create 90 Source/core/clipboard/DataTransferItemList.cpp return DataTransferItem::create(m_clipboard, item); create 100 Source/core/clipboard/DataTransferItemList.cpp return DataTransferItem::create(m_clipboard, item); create 51 Source/core/clipboard/DataTransferItemList.h static PassRefPtrWillBeRawPtr<DataTransferItemList> create(PassRefPtrWillBeRawPtr<Clipboard>, PassRefPtrWillBeRawPtr<DataObject>); create 47 Source/core/css/AffectedByFocusTest.cpp m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 50 Source/core/css/BasicShapeFunctions.cpp return pool.createValue(Pair::create(pool.createIdentifierValue(keyword), pool.createValue(center.length(), style), Pair::DropIdenticalValues)); create 76 Source/core/css/BasicShapeFunctions.cpp RefPtrWillBeRawPtr<CSSBasicShapeCircle> circleValue = CSSBasicShapeCircle::create(); create 86 Source/core/css/BasicShapeFunctions.cpp RefPtrWillBeRawPtr<CSSBasicShapeEllipse> ellipseValue = CSSBasicShapeEllipse::create(); create 97 Source/core/css/BasicShapeFunctions.cpp RefPtrWillBeRawPtr<CSSBasicShapePolygon> polygonValue = CSSBasicShapePolygon::create(); create 109 Source/core/css/BasicShapeFunctions.cpp RefPtrWillBeRawPtr<CSSBasicShapeInset> insetValue = CSSBasicShapeInset::create(); create 111 Source/core/css/BasicShapeFunctions.cpp insetValue->setTop(CSSPrimitiveValue::create(inset->top())); create 112 Source/core/css/BasicShapeFunctions.cpp insetValue->setRight(CSSPrimitiveValue::create(inset->right())); create 113 Source/core/css/BasicShapeFunctions.cpp insetValue->setBottom(CSSPrimitiveValue::create(inset->bottom())); create 114 Source/core/css/BasicShapeFunctions.cpp insetValue->setLeft(CSSPrimitiveValue::create(inset->left())); create 116 Source/core/css/BasicShapeFunctions.cpp insetValue->setTopLeftRadius(CSSPrimitiveValue::create(inset->topLeftRadius())); create 117 Source/core/css/BasicShapeFunctions.cpp insetValue->setTopRightRadius(CSSPrimitiveValue::create(inset->topRightRadius())); create 118 Source/core/css/BasicShapeFunctions.cpp insetValue->setBottomRightRadius(CSSPrimitiveValue::create(inset->bottomRightRadius())); create 119 Source/core/css/BasicShapeFunctions.cpp insetValue->setBottomLeftRadius(CSSPrimitiveValue::create(inset->bottomLeftRadius())); create 213 Source/core/css/BasicShapeFunctions.cpp RefPtr<BasicShapeCircle> circle = BasicShapeCircle::create(); create 224 Source/core/css/BasicShapeFunctions.cpp RefPtr<BasicShapeEllipse> ellipse = BasicShapeEllipse::create(); create 236 Source/core/css/BasicShapeFunctions.cpp RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create(); create 248 Source/core/css/BasicShapeFunctions.cpp RefPtr<BasicShapeInset> rect = BasicShapeInset::create(); create 16 Source/core/css/BinaryDataFontFaceSource.cpp : m_customPlatformData(FontCustomPlatformData::create(data)) create 31 Source/core/css/BinaryDataFontFaceSource.cpp return SimpleFontData::create( create 34 Source/core/css/BinaryDataFontFaceSource.cpp fontDescription.orientation(), fontDescription.widthVariant()), CustomFontData::create()); create 40 Source/core/css/CSSArrayFunctionValue.h static PassRefPtrWillBeRawPtr<CSSArrayFunctionValue> create() create 38 Source/core/css/CSSAspectRatioValue.h static PassRefPtrWillBeRawPtr<CSSAspectRatioValue> create(float numeratorValue, float denominatorValue) create 109 Source/core/css/CSSBasicShapes.cpp return cssValuePool().createValue(Pair::create(cssValuePool().createValue(side), amount.release(), Pair::KeepIdenticalValues)); create 67 Source/core/css/CSSBasicShapes.h static PassRefPtrWillBeRawPtr<CSSBasicShapeCircle> create() { return adoptRefWillBeNoop(new CSSBasicShapeCircle); } create 93 Source/core/css/CSSBasicShapes.h static PassRefPtrWillBeRawPtr<CSSBasicShapeEllipse> create() { return adoptRefWillBeNoop(new CSSBasicShapeEllipse); } create 122 Source/core/css/CSSBasicShapes.h static PassRefPtrWillBeRawPtr<CSSBasicShapePolygon> create() { return adoptRefWillBeNoop(new CSSBasicShapePolygon); } create 155 Source/core/css/CSSBasicShapes.h static PassRefPtrWillBeRawPtr<CSSBasicShapeInset> create() { return adoptRefWillBeNoop(new CSSBasicShapeInset); } create 39 Source/core/css/CSSBorderImageSliceValue.h static PassRefPtrWillBeRawPtr<CSSBorderImageSliceValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill) create 183 Source/core/css/CSSCalculationValue.cpp static PassRefPtrWillBeRawPtr<CSSCalcPrimitiveValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> value, bool isInteger) create 188 Source/core/css/CSSCalculationValue.cpp static PassRefPtrWillBeRawPtr<CSSCalcPrimitiveValue> create(double value, CSSPrimitiveValue::UnitTypes type, bool isInteger) create 192 Source/core/css/CSSCalculationValue.cpp return adoptRefWillBeNoop(new CSSCalcPrimitiveValue(CSSPrimitiveValue::create(value, type).get(), isInteger)); create 348 Source/core/css/CSSCalculationValue.cpp return CSSCalcPrimitiveValue::create(evaluateOperator(leftSide->doubleValue(), rightSide->doubleValue(), op), evaluationType, isInteger); create 358 Source/core/css/CSSCalculationValue.cpp return CSSCalcPrimitiveValue::create(evaluateOperator(leftSide->doubleValue(), rightSide->doubleValue(), op), leftType, isInteger); create 365 Source/core/css/CSSCalculationValue.cpp return CSSCalcPrimitiveValue::create(evaluateOperator(leftValue, rightValue, op), canonicalType, isInteger); create 375 Source/core/css/CSSCalculationValue.cpp return create(leftSide, rightSide, op); create 388 Source/core/css/CSSCalculationValue.cpp return CSSCalcPrimitiveValue::create(evaluateOperator(otherSide->doubleValue(), number, op), otherType, isInteger); create 391 Source/core/css/CSSCalculationValue.cpp return create(leftSide, rightSide, op); create 586 Source/core/css/CSSCalculationValue.cpp result->value = CSSCalcPrimitiveValue::create(toCSSPrimitiveValue(value.get()), parserValue->isInt); create 673 Source/core/css/CSSCalculationValue.cpp return CSSCalcPrimitiveValue::create(value, isInteger); create 678 Source/core/css/CSSCalculationValue.cpp return CSSCalcBinaryOperation::create(leftSide, rightSide, op); create 686 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER), value == trunc(value)); create 702 Source/core/css/CSSCalculationValue.cpp createExpressionNode(CSSPrimitiveValue::create(1 - progress, CSSPrimitiveValue::CSS_NUMBER), isInteger), create 706 Source/core/css/CSSCalculationValue.cpp createExpressionNode(CSSPrimitiveValue::create(progress, CSSPrimitiveValue::CSS_NUMBER), isInteger), create 723 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(CSSPrimitiveValue::create(length, zoom), length.value() == trunc(length.value())); create 94 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcValue> create(CSSParserString name, CSSParserValueList*, ValueRange); create 95 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcValue> create(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode>, ValueRange = ValueRangeAll); create 96 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcValue> create(const CalculationValue* value, float zoom) { return adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(value, zoom)); } create 105 Source/core/css/CSSCalculationValue.h return CalculationValue::create(m_expression->toCalcValue(conversionData), m_nonNegative ? ValueRangeNonNegative : ValueRangeAll); create 56 Source/core/css/CSSCalculationValueTest.cpp RefPtr<RenderStyle> style = RenderStyle::create(); create 60 Source/core/css/CSSCalculationValueTest.cpp expected = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true); create 65 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true), create 66 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(20, CSSPrimitiveValue::CSS_PX), true), create 69 Source/core/css/CSSCalculationValueTest.cpp Length(CalculationValue::create( create 79 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(30, CSSPrimitiveValue::CSS_PX), true), create 80 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(40, CSSPrimitiveValue::CSS_NUMBER), true), create 83 Source/core/css/CSSCalculationValueTest.cpp Length(CalculationValue::create( create 94 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(50, CSSPrimitiveValue::CSS_PX), true), create 95 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(0.25, CSSPrimitiveValue::CSS_NUMBER), false), create 98 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(60, CSSPrimitiveValue::CSS_PX), true), create 99 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(0.75, CSSPrimitiveValue::CSS_NUMBER), false), create 103 Source/core/css/CSSCalculationValueTest.cpp Length(CalculationValue::create( create 116 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true), create 121 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX), true), create 122 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(20, CSSPrimitiveValue::CSS_PX), true), create 128 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(30, CSSPrimitiveValue::CSS_PX), true), create 129 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(40, CSSPrimitiveValue::CSS_NUMBER), true), create 136 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(50, CSSPrimitiveValue::CSS_PX), true), create 137 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(0.25, CSSPrimitiveValue::CSS_NUMBER), false), create 140 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(60, CSSPrimitiveValue::CSS_PX), true), create 141 Source/core/css/CSSCalculationValueTest.cpp CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(0.75, CSSPrimitiveValue::CSS_NUMBER), false), create 149 Source/core/css/CSSCalculationValueTest.cpp RefPtr<CalculationValue> calc = CalculationValue::create(adoptPtr(new CalcExpressionNumber(40)), ValueRangeAll); create 161 Source/core/css/CSSCalculationValueTest.cpp Length lengthD(CalculationValue::create(adoptPtr(new CalcExpressionNumber(40)), ValueRangeAll)); create 168 Source/core/css/CSSCalculationValueTest.cpp RefPtr<CalculationValue> calc = CalculationValue::create(adoptPtr(new CalcExpressionNumber(40)), ValueRangeAll); create 38 Source/core/css/CSSCanvasValue.h static PassRefPtrWillBeRawPtr<CSSCanvasValue> create(const String& name) create 33 Source/core/css/CSSCharsetRule.h static PassRefPtrWillBeRawPtr<CSSCharsetRule> create(CSSStyleSheet* parent, const String& encoding) create 444 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<Quad> quad = Quad::create(); create 450 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSBorderImageSliceValue::create(cssValuePool().createValue(quad.release()), image.fill()); create 496 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<Quad> quad = Quad::create(); create 515 Source/core/css/CSSComputedStyleDeclaration.cpp return cssValuePool().createValue(Pair::create(horizontalRepeat.release(), verticalRepeat.release(), Pair::DropIdenticalValues)); create 587 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSReflectValue::create(direction.release(), offset.release(), valueForNinePieceImage(reflection->mask(), style)); create 726 Source/core/css/CSSComputedStyleDeclaration.cpp transformValue = CSSTransformValue::create(CSSTransformValue::MatrixTransformOperation); create 735 Source/core/css/CSSComputedStyleDeclaration.cpp transformValue = CSSTransformValue::create(CSSTransformValue::Matrix3DTransformOperation); create 794 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::ReferenceFilterOperation); create 798 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::GrayscaleFilterOperation); create 802 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::SepiaFilterOperation); create 806 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::SaturateFilterOperation); create 810 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::HueRotateFilterOperation); create 814 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::InvertFilterOperation); create 818 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::OpacityFilterOperation); create 822 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::BrightnessFilterOperation); create 826 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::ContrastFilterOperation); create 830 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::BlurFilterOperation); create 835 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::DropShadowFilterOperation); create 842 Source/core/css/CSSComputedStyleDeclaration.cpp filterValue = CSSFilterValue::create(CSSFilterValue::UnknownFilterOperation); create 871 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSFunctionValue::create("minmax(", minMaxTrackBreadths); create 883 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSGridLineNamesValue> lineNames = CSSGridLineNamesValue::create(); create 1016 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSCubicBezierTimingFunctionValue::create(bezierTimingFunction->x1(), bezierTimingFunction->y1(), bezierTimingFunction->x2(), bezierTimingFunction->y2()); create 1023 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSStepsTimingFunctionValue::create(stepsTimingFunction->numberOfSteps(), stepsTimingFunction->stepAtPosition()); create 1109 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSLineBoxContainValue::create(lineBoxContain); create 1205 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), shadowStyle.release(), color.release()); create 1551 Source/core/css/CSSComputedStyleDeclaration.cpp result->append(CSSPrimitiveValue::create(itemPosition)); create 1553 Source/core/css/CSSComputedStyleDeclaration.cpp result->append(CSSPrimitiveValue::create(overflowAlignment)); create 1916 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSFontValue> computedFont = CSSFontValue::create(); create 1948 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSFontFeatureValue> featureValue = CSSFontFeatureValue::create(feature.tag(), feature.value()); create 1993 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSGridTemplateAreasValue::create(style->namedGridArea(), style->namedGridAreaRowCount(), style->namedGridAreaColumnCount()); create 2017 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(style->imageRendering()); create 2107 Source/core/css/CSSComputedStyleDeclaration.cpp Pair::create( create 2475 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSAspectRatioValue::create(style->aspectRatioNumerator(), style->aspectRatioDenominator()); create 2554 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<Rect> rect = Rect::create(); create 2633 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(style->textOrientation()); create 2647 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(toReferenceClipPathOperation(operation)->url(), CSSPrimitiveValue::CSS_URI); create 2975 Source/core/css/CSSComputedStyleDeclaration.cpp return MutableStylePropertySet::create(list.data(), list.size()); create 52 Source/core/css/CSSComputedStyleDeclaration.h static PassRefPtr<CSSComputedStyleDeclaration> create(PassRefPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String()) create 185 Source/core/css/CSSCrossfadeValue.cpp m_generatedImage = CrossfadeGeneratedImage::create(fromImage, toImage, m_percentageValue->getFloatValue(), fixedSize(renderer), size); create 46 Source/core/css/CSSCrossfadeValue.h static PassRefPtrWillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue) create 134 Source/core/css/CSSCursorImageValue.cpp RefPtrWillBeRawPtr<CSSImageValue> svgImageValue = CSSImageValue::create(loader->document()->completeURL(cursorElement->href()->currentValue()->value())); create 157 Source/core/css/CSSCursorImageValue.cpp m_image = StylePendingImage::create(this); create 35 Source/core/css/CSSCursorImageValue.h static PassRefPtrWillBeRawPtr<CSSCursorImageValue> create(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot) create 33 Source/core/css/CSSCustomFontData.h static PassRefPtr<CSSCustomFontData> create(RemoteFontFaceSource* source, FallbackVisibility visibility) create 71 Source/core/css/CSSDefaultStyleSheets.cpp RefPtrWillBeRawPtr<StyleSheetContents> sheet = StyleSheetContents::create(CSSParserContext(UASheetMode, 0)); create 96 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultStyle = RuleSet::create(); create 97 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultViewportStyle = RuleSet::create(); create 98 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultPrintStyle = RuleSet::create(); create 99 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultQuirksStyle = RuleSet::create(); create 123 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultViewSourceStyle = RuleSet::create(); create 134 Source/core/css/CSSDefaultStyleSheets.cpp m_defaultXHTMLMobileProfileStyle = RuleSet::create(); create 55 Source/core/css/CSSFilterRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_filterRule->mutableProperties(), const_cast<CSSFilterRule*>(this)); create 44 Source/core/css/CSSFilterRule.h static PassRefPtrWillBeRawPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) create 54 Source/core/css/CSSFilterValue.h static PassRefPtrWillBeRawPtr<CSSFilterValue> create(FilterOperationType type) create 48 Source/core/css/CSSFontFaceLoadEvent.h static PassRefPtrWillBeRawPtr<CSSFontFaceLoadEvent> create() create 53 Source/core/css/CSSFontFaceLoadEvent.h static PassRefPtrWillBeRawPtr<CSSFontFaceLoadEvent> create(const AtomicString& type, const CSSFontFaceLoadEventInit& initializer) create 47 Source/core/css/CSSFontFaceRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_fontFaceRule->mutableProperties(), const_cast<CSSFontFaceRule*>(this)); create 36 Source/core/css/CSSFontFaceRule.h static PassRefPtrWillBeRawPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) create 42 Source/core/css/CSSFontFaceSrcValue.h static PassRefPtrWillBeRawPtr<CSSFontFaceSrcValue> create(const String& resource) create 36 Source/core/css/CSSFontFeatureValue.h static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value) create 69 Source/core/css/CSSFontSelector.h static PassRefPtr<CSSFontSelector> create(Document* document) create 35 Source/core/css/CSSFontValue.h static PassRefPtrWillBeRawPtr<CSSFontValue> create() create 38 Source/core/css/CSSFunctionValue.h static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSParserFunction* function) create 43 Source/core/css/CSSFunctionValue.h static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(String name, PassRefPtrWillBeRawPtr<CSSValueList> args) create 78 Source/core/css/CSSGradientValue.cpp RefPtr<Image> newImage = GradientGeneratedImage::create(gradient, size); create 705 Source/core/css/CSSGradientValue.cpp RefPtr<Gradient> gradient = Gradient::create(firstPoint, secondPoint); create 1118 Source/core/css/CSSGradientValue.cpp RefPtr<Gradient> gradient = Gradient::create(firstPoint, firstRadius, secondPoint, secondRadius, aspectRatio); create 166 Source/core/css/CSSGradientValue.h static PassRefPtrWillBeRawPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient) create 206 Source/core/css/CSSGradientValue.h static PassRefPtrWillBeRawPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient) create 41 Source/core/css/CSSGridLineNamesValue.h static PassRefPtrWillBeRawPtr<CSSGridLineNamesValue> create() create 42 Source/core/css/CSSGridTemplateAreasValue.h static PassRefPtrWillBeRawPtr<CSSGridTemplateAreasValue> create(const NamedGridAreaMap& gridAreaMap, size_t rowCount, size_t columnCount) create 142 Source/core/css/CSSGroupingRule.cpp m_ruleListCSSOMWrapper = LiveCSSRuleList<CSSGroupingRule>::create(const_cast<CSSGroupingRule*>(this)); create 112 Source/core/css/CSSImageSetValue.cpp m_imageSet = StyleFetchedImageSet::create(cachedImage.get(), image.scaleFactor, this); create 129 Source/core/css/CSSImageSetValue.cpp m_imageSet = StylePendingImage::create(this); create 134 Source/core/css/CSSImageSetValue.cpp m_imageSet = StylePendingImage::create(this); create 41 Source/core/css/CSSImageSetValue.h static PassRefPtrWillBeRawPtr<CSSImageSetValue> create() create 52 Source/core/css/CSSImageValue.cpp m_image = StylePendingImage::create(this); create 70 Source/core/css/CSSImageValue.cpp m_image = StyleFetchedImage::create(cachedImage.get()); create 98 Source/core/css/CSSImageValue.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> uriValue = CSSPrimitiveValue::create(m_absoluteURL, CSSPrimitiveValue::CSS_URI); create 39 Source/core/css/CSSImageValue.h static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleImage* image = 0) create 43 Source/core/css/CSSImageValue.h static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleImage* image = 0) create 58 Source/core/css/CSSImportRule.cpp m_mediaCSSOMWrapper = MediaList::create(m_importRule->mediaQueries(), const_cast<CSSImportRule*>(this)); create 87 Source/core/css/CSSImportRule.cpp m_styleSheetCSSOMWrapper = CSSStyleSheet::create(m_importRule->styleSheet(), const_cast<CSSImportRule*>(this)); create 37 Source/core/css/CSSImportRule.h static PassRefPtrWillBeRawPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet) create 31 Source/core/css/CSSInheritedValue.h static PassRefPtrWillBeRawPtr<CSSInheritedValue> create() create 156 Source/core/css/CSSKeyframeRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_keyframe->mutableProperties(), const_cast<CSSKeyframeRule*>(this)); create 43 Source/core/css/CSSKeyframeRule.h static PassRefPtrWillBeRawPtr<StyleKeyframe> create() create 203 Source/core/css/CSSKeyframesRule.cpp m_ruleListCSSOMWrapper = LiveCSSRuleList<CSSKeyframesRule>::create(this); create 42 Source/core/css/CSSKeyframesRule.h static PassRefPtrWillBeRawPtr<StyleRuleKeyframes> create() { return adoptRefWillBeNoop(new StyleRuleKeyframes()); } create 77 Source/core/css/CSSKeyframesRule.h static PassRefPtrWillBeRawPtr<CSSKeyframesRule> create(StyleRuleKeyframes* rule, CSSStyleSheet* sheet) create 43 Source/core/css/CSSLineBoxContainValue.h static PassRefPtrWillBeRawPtr<CSSLineBoxContainValue> create(LineBoxContain value) create 61 Source/core/css/CSSMatrix.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(); create 98 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).multiply(secondMatrix->m_matrix)); create 108 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(m_matrix.inverse()); create 119 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).translate3d(x, y, z)); create 130 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).scale3d(scaleX, scaleY, scaleZ)); create 148 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(rotX, rotY, rotZ)); create 163 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(x, y, z, angle)); create 170 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).skewX(angle)); create 177 Source/core/css/CSSMatrix.cpp return CSSMatrix::create(TransformationMatrix(m_matrix).skewY(angle)); create 40 Source/core/css/CSSMatrix.h static PassRefPtrWillBeRawPtr<CSSMatrix> create(const TransformationMatrix& m) create 44 Source/core/css/CSSMatrix.h static PassRefPtrWillBeRawPtr<CSSMatrix> create(const String& s, ExceptionState& exceptionState) create 68 Source/core/css/CSSMediaRule.cpp m_mediaCSSOMWrapper = MediaList::create(mediaQueries(), const_cast<CSSMediaRule*>(this)); create 35 Source/core/css/CSSMediaRule.h static PassRefPtrWillBeRawPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) create 50 Source/core/css/CSSPageRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_pageRule->mutableProperties(), const_cast<CSSPageRule*>(this)); create 37 Source/core/css/CSSPageRule.h static PassRefPtrWillBeRawPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet) create 93 Source/core/css/CSSParserValues.cpp return CSSFunctionValue::create(function); create 104 Source/core/css/CSSParserValues.cpp return CSSPrimitiveValue::create(string, CSSPrimitiveValue::CSS_PARSER_IDENTIFIER); create 106 Source/core/css/CSSParserValues.cpp return CSSPrimitiveValue::create(fValue, isInt ? CSSPrimitiveValue::CSS_PARSER_INTEGER : CSSPrimitiveValue::CSS_NUMBER); create 110 Source/core/css/CSSParserValues.cpp return CSSPrimitiveValue::create(string, primitiveUnit); create 135 Source/core/css/CSSParserValues.cpp return CSSPrimitiveValue::create(fValue, primitiveUnit); create 329 Source/core/css/CSSPrimitiveValue.cpp init(CSSCalcValue::create(length.calculationValue(), zoom)); create 396 Source/core/css/CSSPrimitiveValue.cpp m_value.pair = Pair::create(create(lengthSize.width()), create(lengthSize.height()), Pair::KeepIdenticalValues).leakRef(); create 919 Source/core/css/CSSPrimitiveValue.cpp return RGBColor::create(m_value.rgbcolor); create 1153 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.string, static_cast<UnitTypes>(m_primitiveUnitType)); create 1156 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.counter->cloneForCSSOM()); create 1159 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.rect->cloneForCSSOM()); create 1162 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.quad->cloneForCSSOM()); create 1166 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.pair); create 1170 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.calc); create 1174 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.shape); create 1205 Source/core/css/CSSPrimitiveValue.cpp result = CSSPrimitiveValue::create(m_value.num, static_cast<UnitTypes>(m_primitiveUnitType)); create 222 Source/core/css/CSSPrimitiveValue.h static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(double value, UnitTypes type) create 226 Source/core/css/CSSPrimitiveValue.h static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const String& value, UnitTypes type) create 230 Source/core/css/CSSPrimitiveValue.h static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const Length& value, float zoom) create 234 Source/core/css/CSSPrimitiveValue.h static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const LengthSize& value) create 238 Source/core/css/CSSPrimitiveValue.h template<typename T> static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(T value) create 379 Source/core/css/CSSPrimitiveValue.h static void create(int); // compile-time guard create 380 Source/core/css/CSSPrimitiveValue.h static void create(unsigned); // compile-time guard create 78 Source/core/css/CSSPropertySourceData.h static PassRefPtrWillBeRawPtr<CSSStyleSourceData> create() create 107 Source/core/css/CSSPropertySourceData.h static PassRefPtrWillBeRawPtr<CSSRuleSourceData> create(Type type) create 121 Source/core/css/CSSPropertySourceData.h styleSourceData = CSSStyleSourceData::create(); create 39 Source/core/css/CSSReflectValue.h static PassRefPtrWillBeRawPtr<CSSReflectValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> direction, create 59 Source/core/css/CSSRuleList.h static PassRefPtrWillBeRawPtr<StaticCSSRuleList> create() create 91 Source/core/css/CSSRuleList.h static PassOwnPtrWillBeRawPtr<LiveCSSRuleList> create(Rule* rule) create 38 Source/core/css/CSSSVGDocumentValue.h static PassRefPtrWillBeRawPtr<CSSSVGDocumentValue> create(const String& url) create 140 Source/core/css/CSSSegmentedFontFace.cpp fontData = SegmentedFontData::create(); create 48 Source/core/css/CSSSegmentedFontFace.h static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector, FontTraits traits) create 62 Source/core/css/CSSSelector.cpp m_data.m_rareData = RareData::create(value).leakRef(); create 330 Source/core/css/CSSSelector.h static PassRefPtr<RareData> create(const AtomicString& value) { return adoptRef(new RareData(value)); } create 35 Source/core/css/CSSShadowValue.h static PassRefPtrWillBeRawPtr<CSSShadowValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, create 62 Source/core/css/CSSStyleRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_styleRule->mutableProperties(), const_cast<CSSStyleRule*>(this)); create 36 Source/core/css/CSSStyleRule.h static PassRefPtrWillBeRawPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) create 107 Source/core/css/CSSStyleSheet.cpp RefPtrWillBeRawPtr<StyleSheetContents> sheet = StyleSheetContents::create(baseURL.string(), parserContext); create 252 Source/core/css/CSSStyleSheet.cpp cssRule = CSSCharsetRule::create(this, m_contents->encodingFromCharsetRule()); create 287 Source/core/css/CSSStyleSheet.cpp RefPtrWillBeRawPtr<StaticCSSRuleList> nonCharsetRules(StaticCSSRuleList::create()); create 378 Source/core/css/CSSStyleSheet.cpp m_ruleListCSSOMWrapper = StyleSheetCSSRuleList::create(this); create 403 Source/core/css/CSSStyleSheet.cpp m_mediaCSSOMWrapper = MediaList::create(m_mediaQueries.get(), const_cast<CSSStyleSheet*>(this)); create 52 Source/core/css/CSSStyleSheet.h static PassRefPtrWillBeRawPtr<CSSStyleSheet> create(PassRefPtrWillBeRawPtr<StyleSheetContents>, CSSImportRule* ownerRule = 0); create 53 Source/core/css/CSSStyleSheet.h static PassRefPtrWillBeRawPtr<CSSStyleSheet> create(PassRefPtrWillBeRawPtr<StyleSheetContents>, Node* ownerNode); create 41 Source/core/css/CSSSupportsRule.h static PassRefPtrWillBeRawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) create 50 Source/core/css/CSSTestHelper.cpp m_document = Document::create(); create 37 Source/core/css/CSSTimingFunctionValue.h static PassRefPtrWillBeRawPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) create 73 Source/core/css/CSSTimingFunctionValue.h static PassRefPtrWillBeRawPtr<CSSStepsTimingFunctionValue> create(int steps, StepsTimingFunction::StepAtPosition stepAtPosition) create 62 Source/core/css/CSSTransformValue.h static PassRefPtrWillBeRawPtr<CSSTransformValue> create(TransformOperationType type) create 36 Source/core/css/CSSUnicodeRangeValue.h static PassRefPtrWillBeRawPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) create 636 Source/core/css/CSSValue.cpp return TextCloneCSSValue::create(classType(), cssText()); create 47 Source/core/css/CSSValuePool.cpp : m_inheritedValue(CSSInheritedValue::create()) create 101 Source/core/css/CSSValuePool.cpp return CSSPrimitiveValue::create(value, type); create 105 Source/core/css/CSSValuePool.cpp return CSSPrimitiveValue::create(value, type); create 110 Source/core/css/CSSValuePool.cpp m_pixelValueCache[intValue] = CSSPrimitiveValue::create(value, type); create 114 Source/core/css/CSSValuePool.cpp m_percentValueCache[intValue] = CSSPrimitiveValue::create(value, type); create 118 Source/core/css/CSSValuePool.cpp m_numberValueCache[intValue] = CSSPrimitiveValue::create(value, type); create 121 Source/core/css/CSSValuePool.cpp return CSSPrimitiveValue::create(value, type); create 127 Source/core/css/CSSValuePool.cpp return CSSPrimitiveValue::create(value, style.effectiveZoom()); create 134 Source/core/css/CSSValuePool.cpp value = CSSPrimitiveValue::create(familyName, CSSPrimitiveValue::CSS_STRING); create 54 Source/core/css/CSSValuePool.h PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const String& value, CSSPrimitiveValue::UnitTypes type) { return CSSPrimitiveValue::create(value, type); } create 56 Source/core/css/CSSValuePool.h PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, float zoom) { return CSSPrimitiveValue::create(value, zoom); } create 57 Source/core/css/CSSValuePool.h template<typename T> static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(T value) { return CSSPrimitiveValue::create(value); } create 56 Source/core/css/CSSViewportRule.cpp m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_viewportRule->mutableProperties(), const_cast<CSSViewportRule*>(this)); create 45 Source/core/css/CSSViewportRule.h static PassRefPtrWillBeRawPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) create 31 Source/core/css/Counter.h static PassRefPtrWillBeRawPtr<Counter> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> identifier, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> listStyle, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> separator) create 55 Source/core/css/Counter.h return create(m_identifier ? m_identifier->cloneForCSSOM() : nullptr create 77 Source/core/css/DOMWindowCSS.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(); create 42 Source/core/css/DOMWindowCSS.h static PassRefPtrWillBeRawPtr<DOMWindowCSS> create(); create 22 Source/core/css/DragUpdateTest.cpp OwnPtr<DummyPageHolder> dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 48 Source/core/css/DragUpdateTest.cpp OwnPtr<DummyPageHolder> dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 97 Source/core/css/ElementRuleCollector.cpp m_styleRuleList = StyleRuleList::create(); create 104 Source/core/css/ElementRuleCollector.cpp m_cssRuleList = StaticCSSRuleList::create(); create 103 Source/core/css/ElementRuleCollector.h static PassRefPtrWillBeRawPtr<StyleRuleList> create() { return adoptRefWillBeNoop(new StyleRuleList()); } create 94 Source/core/css/FontFace.cpp , m_resolver(ScriptPromiseResolver::create(context)) create 104 Source/core/css/FontFace.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStylePropertySet::create(); create 380 Source/core/css/FontFace.cpp m_error = DOMError::create(NetworkError); create 397 Source/core/css/FontFace.cpp OwnPtr<FontFaceReadyPromiseResolver> resolver = FontFaceReadyPromiseResolver::create(context); create 605 Source/core/css/FontFace.cpp RefPtr<SharedBuffer> buffer = SharedBuffer::create(data, size); create 611 Source/core/css/FontFace.cpp m_error = DOMError::create(SyntaxError, "Invalid font data in ArrayBuffer."); create 58 Source/core/css/FontFace.h static PassRefPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBuffer> source, const Dictionary&, ExceptionState&); create 59 Source/core/css/FontFace.h static PassRefPtr<FontFace> create(ExecutionContext*, const AtomicString& family, PassRefPtr<ArrayBufferView>, const Dictionary&, ExceptionState&); create 60 Source/core/css/FontFace.h static PassRefPtr<FontFace> create(ExecutionContext*, const AtomicString& family, const String& source, const Dictionary&, ExceptionState&); create 61 Source/core/css/FontFace.h static PassRefPtr<FontFace> create(Document*, const StyleRuleFontFace*); create 67 Source/core/css/FontFaceCache.cpp segmentedFontFace = CSSSegmentedFontFace::create(cssFontSelector, fontFace->traits()); create 70 Source/core/css/FontFaceSet.cpp , m_resolver(ScriptPromiseResolver::create(context)) create 131 Source/core/css/FontFaceSet.cpp , m_resolver(ScriptPromiseResolver::create(context)) create 272 Source/core/css/FontFaceSet.cpp OwnPtr<FontsReadyPromiseResolver> resolver = FontsReadyPromiseResolver::create(executionContext()); create 444 Source/core/css/FontFaceSet.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext()); create 446 Source/core/css/FontFaceSet.cpp resolver->reject(DOMError::create(SyntaxError, "Could not resolve '" + fontString + "' as a font.")); create 458 Source/core/css/FontFaceSet.cpp RefPtr<LoadFontPromiseResolver> resolver = LoadFontPromiseResolver::create(faces, executionContext()); create 490 Source/core/css/FontFaceSet.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStylePropertySet::create(); create 499 Source/core/css/FontFaceSet.cpp RefPtr<RenderStyle> style = RenderStyle::create(); create 561 Source/core/css/FontFaceSet.cpp fonts = FontFaceSet::create(document); create 106 Source/core/css/FontFaceSet.h static PassRefPtr<FontFaceSet> create(Document& document) create 27 Source/core/css/HoverUpdateTest.cpp OwnPtr<DummyPageHolder> dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 69 Source/core/css/MediaList.cpp PassRefPtrWillBeRawPtr<MediaQuerySet> MediaQuerySet::create(const String& mediaString) create 72 Source/core/css/MediaList.cpp return MediaQuerySet::create(); create 84 Source/core/css/MediaList.cpp return MediaQuerySet::create(); create 91 Source/core/css/MediaList.cpp RefPtrWillBeRawPtr<MediaQuerySet> result = create(mediaString); create 101 Source/core/css/MediaList.cpp RefPtrWillBeRawPtr<MediaQuerySet> result = create(queryString); create 127 Source/core/css/MediaList.cpp RefPtrWillBeRawPtr<MediaQuerySet> result = create(queryStringToRemove); create 44 Source/core/css/MediaList.h static PassRefPtrWillBeRawPtr<MediaQuerySet> create() create 48 Source/core/css/MediaList.h static PassRefPtrWillBeRawPtr<MediaQuerySet> create(const String& mediaString); create 74 Source/core/css/MediaList.h static PassRefPtrWillBeRawPtr<MediaList> create(MediaQuerySet* mediaQueries, CSSStyleSheet* parentSheet) create 78 Source/core/css/MediaList.h static PassRefPtrWillBeRawPtr<MediaList> create(MediaQuerySet* mediaQueries, CSSRule* parentRule) create 88 Source/core/css/MediaQueryEvaluator.cpp , m_mediaValues(MediaValues::create(frame, style, MediaValues::DynamicMode)) create 71 Source/core/css/MediaQueryEvaluatorTest.cpp RefPtr<MediaValues> mediaValues = MediaValues::create(MediaValues::CachingMode, create 89 Source/core/css/MediaQueryEvaluatorTest.cpp RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(screenTestCases[i].input); create 94 Source/core/css/MediaQueryEvaluatorTest.cpp RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(printTestCases[i].input); create 235 Source/core/css/MediaQueryExp.cpp cssValue = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit); create 238 Source/core/css/MediaQueryExp.cpp cssValue = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit); create 241 Source/core/css/MediaQueryExp.cpp cssValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER); create 244 Source/core/css/MediaQueryExp.cpp cssValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER); create 247 Source/core/css/MediaQueryExp.cpp cssValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER); create 276 Source/core/css/MediaQueryExp.cpp cssValue = CSSAspectRatioValue::create(numeratorValue, denominatorValue); create 43 Source/core/css/MediaQueryList.h static PassRefPtrWillBeRawPtr<MediaQueryList> create(PassRefPtrWillBeRawPtr<MediaQueryMatcher>, PassRefPtrWillBeRawPtr<MediaQuerySet>, bool); create 36 Source/core/css/MediaQueryListListener.h static PassRefPtrWillBeRawPtr<MediaQueryListListener> create(const ScriptValue& value) create 104 Source/core/css/MediaQueryMatcher.cpp RefPtrWillBeRawPtr<MediaQuerySet> media = MediaQuerySet::create(query); create 107 Source/core/css/MediaQueryMatcher.cpp return MediaQueryList::create(this, media, evaluate(media.get())); create 45 Source/core/css/MediaQueryMatcher.h static PassRefPtrWillBeRawPtr<MediaQueryMatcher> create(Document* document) { return adoptRefWillBeNoop(new MediaQueryMatcher(document)); } create 162 Source/core/css/MediaQuerySetTest.cpp RefPtrWillBeRawPtr<MediaQuerySet> oldParserQuerySet = MediaQuerySet::create(testCases[i].input); create 206 Source/core/css/MediaValues.cpp return MediaValues::create(frame, style, mode); create 30 Source/core/css/MediaValues.h static PassRefPtr<MediaValues> create(Document*, MediaValuesMode); create 31 Source/core/css/MediaValues.h static PassRefPtr<MediaValues> create(LocalFrame*, RenderStyle*, MediaValuesMode); create 32 Source/core/css/MediaValues.h static PassRefPtr<MediaValues> create(MediaValuesMode, create 39 Source/core/css/Pair.h static PassRefPtrWillBeRawPtr<Pair> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> first, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> second, create 96 Source/core/css/PropertySetCSSStyleDeclaration.h static PassRefPtr<StyleRuleCSSStyleDeclaration> create(MutableStylePropertySet& propertySet, CSSRule* parentRule) create 41 Source/core/css/RGBColor.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); create 49 Source/core/css/RGBColor.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); create 57 Source/core/css/RGBColor.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); create 65 Source/core/css/RGBColor.cpp RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); create 40 Source/core/css/RGBColor.h static PassRefPtrWillBeRawPtr<RGBColor> create(unsigned rgbColor); create 72 Source/core/css/Rect.h static PassRefPtrWillBeRawPtr<Rect> create() { return adoptRefWillBeNoop(new Rect); } create 96 Source/core/css/Rect.h static PassRefPtrWillBeRawPtr<Quad> create() { return adoptRefWillBeNoop(new Quad); } create 96 Source/core/css/RemoteFontFaceSource.cpp return SimpleFontData::create( create 99 Source/core/css/RemoteFontFaceSource.cpp fontDescription.orientation(), fontDescription.widthVariant()), CustomFontData::create()); create 111 Source/core/css/RemoteFontFaceSource.cpp RefPtr<CSSCustomFontData> cssFontData = CSSCustomFontData::create(this, m_font->exceedsFontLoadWaitLimit() ? CSSCustomFontData::VisibleFallback : CSSCustomFontData::InvisibleFallback); create 112 Source/core/css/RemoteFontFaceSource.cpp return SimpleFontData::create(temporaryFont->platformData(), cssFontData); create 261 Source/core/css/RuleFeature.cpp addResult.storedValue->value = DescendantInvalidationSet::create(); create 269 Source/core/css/RuleFeature.cpp addResult.storedValue->value = DescendantInvalidationSet::create(); create 277 Source/core/css/RuleFeature.cpp addResult.storedValue->value = DescendantInvalidationSet::create(); create 128 Source/core/css/RuleSet.h static PassOwnPtrWillBeRawPtr<RuleSet> create() { return adoptPtrWillBeNoop(new RuleSet); } create 190 Source/core/css/RuleSet.h static PassOwnPtrWillBeRawPtr<PendingRuleMaps> create() { return adoptPtrWillBeNoop(new PendingRuleMaps); } create 206 Source/core/css/RuleSet.h m_pendingRules = PendingRuleMaps::create(); create 37 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(0.0f, CSSPrimitiveValue::CSS_DEG); create 39 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(90.0f, CSSPrimitiveValue::CSS_DEG); create 41 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(180.0f, CSSPrimitiveValue::CSS_DEG); create 43 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(270.0f, CSSPrimitiveValue::CSS_DEG); create 74 Source/core/css/SVGCSSComputedStyleDeclaration.cpp list->append(CSSPrimitiveValue::create(paintOrderType)); create 114 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->clipRule()); create 116 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->floodOpacity(), CSSPrimitiveValue::CSS_NUMBER); create 118 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->stopOpacity(), CSSPrimitiveValue::CSS_NUMBER); create 120 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->colorInterpolation()); create 122 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->colorInterpolationFilters()); create 124 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->fillOpacity(), CSSPrimitiveValue::CSS_NUMBER); create 126 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->fillRule()); create 128 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->colorRendering()); create 130 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->shapeRendering()); create 132 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->capStyle()); create 134 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->joinStyle()); create 136 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->strokeMiterLimit(), CSSPrimitiveValue::CSS_NUMBER); create 138 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->strokeOpacity(), CSSPrimitiveValue::CSS_NUMBER); create 140 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->alignmentBaseline()); create 142 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->dominantBaseline()); create 144 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->textAnchor()); create 146 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->writingMode()); create 149 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->clipperResource(), CSSPrimitiveValue::CSS_URI); create 153 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->maskerResource(), CSSPrimitiveValue::CSS_URI); create 157 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->filterResource(), CSSPrimitiveValue::CSS_URI); create 166 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return adjustSVGPaintForCurrentColor(SVGPaint::create(svgStyle->fillPaintType(), svgStyle->fillPaintUri(), svgStyle->fillPaintColor()), *style); create 171 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->markerEndResource(), CSSPrimitiveValue::CSS_URI); create 175 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->markerMidResource(), CSSPrimitiveValue::CSS_URI); create 179 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->markerStartResource(), CSSPrimitiveValue::CSS_URI); create 182 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return adjustSVGPaintForCurrentColor(SVGPaint::create(svgStyle->strokePaintType(), svgStyle->strokePaintUri(), svgStyle->strokePaintColor()), *style); create 204 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->bufferedRendering()); create 219 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->vectorEffect()); create 221 Source/core/css/SVGCSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(svgStyle->maskType()); create 66 Source/core/css/StyleMedia.cpp RefPtrWillBeRawPtr<MediaQuerySet> media = MediaQuerySet::create(); create 41 Source/core/css/StyleMedia.h static PassRefPtrWillBeRawPtr<StyleMedia> create(LocalFrame* frame) { return adoptRefWillBeNoop(new StyleMedia(frame));} create 66 Source/core/css/StylePropertySet.cpp return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode()); create 531 Source/core/css/StylePropertySet.cpp return MutableStylePropertySet::create(list.data(), list.size()); create 157 Source/core/css/StylePropertySet.h static PassRefPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count, CSSParserMode); create 198 Source/core/css/StylePropertySet.h static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode); create 199 Source/core/css/StylePropertySet.h static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count); create 211 Source/core/css/StyleRule.cpp rule = CSSStyleRule::create(toStyleRule(self), parentSheet); create 214 Source/core/css/StyleRule.cpp rule = CSSPageRule::create(toStyleRulePage(self), parentSheet); create 217 Source/core/css/StyleRule.cpp rule = CSSFontFaceRule::create(toStyleRuleFontFace(self), parentSheet); create 220 Source/core/css/StyleRule.cpp rule = CSSMediaRule::create(toStyleRuleMedia(self), parentSheet); create 223 Source/core/css/StyleRule.cpp rule = CSSSupportsRule::create(toStyleRuleSupports(self), parentSheet); create 226 Source/core/css/StyleRule.cpp rule = CSSImportRule::create(toStyleRuleImport(self), parentSheet); create 229 Source/core/css/StyleRule.cpp rule = CSSKeyframesRule::create(toStyleRuleKeyframes(self), parentSheet); create 232 Source/core/css/StyleRule.cpp rule = CSSViewportRule::create(toStyleRuleViewport(self), parentSheet); create 235 Source/core/css/StyleRule.cpp rule = CSSFilterRule::create(toStyleRuleFilter(self), parentSheet); create 104 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRule> create() { return adoptRefWillBeNoop(new StyleRule()); } create 132 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRuleFontFace> create() { return adoptRefWillBeNoop(new StyleRuleFontFace); } create 154 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRulePage> create() { return adoptRefWillBeNoop(new StyleRulePage); } create 197 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRuleMedia> create(PassRefPtrWillBeRawPtr<MediaQuerySet> media, WillBeHeapVector<RefPtrWillBeMember<StyleRuleBase> >& adoptRules) create 217 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRuleSupports> create(const String& conditionText, bool conditionIsSupported, WillBeHeapVector<RefPtrWillBeMember<StyleRuleBase> >& adoptRules) create 238 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRuleViewport> create() { return adoptRefWillBeNoop(new StyleRuleViewport); } create 260 Source/core/css/StyleRule.h static PassRefPtrWillBeRawPtr<StyleRuleFilter> create(const String& filterName) { return adoptRefWillBeNoop(new StyleRuleFilter(filterName)); } create 49 Source/core/css/StyleRuleImport.cpp m_mediaQueries = MediaQuerySet::create(String()); create 80 Source/core/css/StyleRuleImport.cpp m_styleSheet = StyleSheetContents::create(this, href, context); create 39 Source/core/css/StyleRuleImport.h static PassRefPtrWillBeRawPtr<StyleRuleImport> create(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>); create 613 Source/core/css/StyleSheetContents.cpp m_ruleSet = RuleSet::create(); create 50 Source/core/css/StyleSheetContents.h static PassRefPtrWillBeRawPtr<StyleSheetContents> create(const CSSParserContext& context) create 54 Source/core/css/StyleSheetContents.h static PassRefPtrWillBeRawPtr<StyleSheetContents> create(const String& originalURL, const CSSParserContext& context) create 58 Source/core/css/StyleSheetContents.h static PassRefPtrWillBeRawPtr<StyleSheetContents> create(StyleRuleImport* ownerRule, const String& originalURL, const CSSParserContext& context) create 38 Source/core/css/StyleSheetList.h static PassRefPtrWillBeRawPtr<StyleSheetList> create(TreeScope* treeScope) { return adoptRefWillBeNoop(new StyleSheetList(treeScope)); } create 42 Source/core/css/TreeBoundaryCrossingRules.cpp OwnPtrWillBeRawPtr<RuleSet> ruleSetForScope = RuleSet::create(); create 49 Source/core/css/invalidation/DescendantInvalidationSet.h static PassRefPtr<DescendantInvalidationSet> create() create 17 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set = DescendantInvalidationSet::create(); create 30 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set = DescendantInvalidationSet::create(); create 43 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set1 = DescendantInvalidationSet::create(); create 44 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set2 = DescendantInvalidationSet::create(); create 61 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set1 = DescendantInvalidationSet::create(); create 62 Source/core/css/invalidation/DescendantInvalidationSetTest.cpp RefPtr<DescendantInvalidationSet> set2 = DescendantInvalidationSet::create(); create 943 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<CSSTransformValue> transformValue = CSSTransformValue::create(transformType); create 998 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(); create 1013 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 1255 Source/core/css/parser/BisonCSSParser-in.cpp return ImmutableStylePropertySet::create(results.data(), results.size(), mode); create 1458 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<CSSTransformValue> transformValue = CSSTransformValue::create(info.type()); create 1662 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<MediaQuerySet> queries = MediaQuerySet::create(); create 1672 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRuleImport> rule = StyleRuleImport::create(url, media); create 1683 Source/core/css/parser/BisonCSSParser-in.cpp rule = StyleRuleMedia::create(media ? media : MediaQuerySet::create().get(), *rules); create 1686 Source/core/css/parser/BisonCSSParser-in.cpp rule = StyleRuleMedia::create(media ? media : MediaQuerySet::create().get(), emptyRules); create 1709 Source/core/css/parser/BisonCSSParser-in.cpp rule = StyleRuleSupports::create(conditionText, conditionIsSupported, *rules); create 1712 Source/core/css/parser/BisonCSSParser-in.cpp rule = StyleRuleSupports::create(conditionText, conditionIsSupported, emptyRules); create 1726 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<CSSRuleSourceData> data = CSSRuleSourceData::create(CSSRuleSourceData::SUPPORTS_RULE); create 1847 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRuleKeyframes> rule = StyleRuleKeyframes::create(); create 1862 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRule> rule = StyleRule::create(); create 1890 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRuleFontFace> rule = StyleRuleFontFace::create(); create 2025 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRulePage> rule = StyleRulePage::create(); create 2078 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleKeyframe> keyframe = StyleKeyframe::create(); create 2183 Source/core/css/parser/BisonCSSParser-in.cpp RefPtrWillBeRawPtr<StyleRuleViewport> rule = StyleRuleViewport::create(); create 43 Source/core/css/parser/BisonCSSParserTest.cpp EXPECT_TRUE(CSSStepsTimingFunctionValue::create(3, StepsTimingFunction::StepAtStart)->equals(toCSSStepsTimingFunctionValue(*timingFunctionValue.get()))); create 46 Source/core/css/parser/BisonCSSParserTest.cpp EXPECT_TRUE(CSSStepsTimingFunctionValue::create(3, StepsTimingFunction::StepAtMiddle)->equals(toCSSStepsTimingFunctionValue(*timingFunctionValue.get()))); create 49 Source/core/css/parser/BisonCSSParserTest.cpp EXPECT_TRUE(CSSStepsTimingFunctionValue::create(3, StepsTimingFunction::StepAtEnd)->equals(toCSSStepsTimingFunctionValue(*timingFunctionValue.get()))); create 58 Source/core/css/parser/BisonCSSParserTest.cpp EXPECT_TRUE(CSSStepsTimingFunctionValue::create(3, StepsTimingFunction::StepAtEnd)->equals(toCSSStepsTimingFunctionValue(*timingFunctionValue.get()))); create 61 Source/core/css/parser/BisonCSSParserTest.cpp EXPECT_TRUE(CSSCubicBezierTimingFunctionValue::create(0.1, 5, 0.23, 0)->equals(toCSSCubicBezierTimingFunctionValue(*timingFunctionValue.get()))); create 122 Source/core/css/parser/CSSPropertyParser.cpp return cssValuePool().createValue(Pair::create(first, second, identicalValuesPolicy)); create 350 Source/core/css/parser/CSSPropertyParser.cpp return CSSPrimitiveValue::create(m_parsedCalculation.release()); create 420 Source/core/css/parser/CSSPropertyParser.cpp return CSSPrimitiveValue::create(m_parsedCalculation.release()); create 639 Source/core/css/parser/CSSPropertyParser.cpp image = CSSImageValue::create(uri, completeURL(uri)); create 667 Source/core/css/parser/CSSPropertyParser.cpp list->append(CSSCursorImageValue::create(image, hasHotSpot, hotSpot)); create 758 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSImageValue::create(value->string, completeURL(value->string)); create 1508 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->string, CSSPrimitiveValue::CSS_URI); create 2283 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(val->string, CSSPrimitiveValue::CSS_STRING); create 2308 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSImageValue::create(val->string, completeURL(val->string)); create 2412 Source/core/css/parser/CSSPropertyParser.cpp value = CSSImageValue::create(valueList->current()->string, completeURL(valueList->current()->string)); create 3216 Source/core/css/parser/CSSPropertyParser.cpp return CSSStepsTimingFunctionValue::create(numSteps, stepAtPosition); create 3240 Source/core/css/parser/CSSPropertyParser.cpp return CSSCubicBezierTimingFunctionValue::create(x1, y1, x2, y2); create 3538 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSValue> templateAreas = CSSGridTemplateAreasValue::create(gridAreaMap, rowCount, columnCount); create 3671 Source/core/css/parser/CSSPropertyParser.cpp lineNames = CSSGridLineNamesValue::create(); create 3796 Source/core/css/parser/CSSPropertyParser.cpp return CSSFunctionValue::create("minmax(", parsedArguments); create 3901 Source/core/css/parser/CSSPropertyParser.cpp return CSSGridTemplateAreasValue::create(gridAreaMap, rowCount, columnCount); create 3953 Source/core/css/parser/CSSPropertyParser.cpp return cssValuePool().createValue(Counter::create(identifier.release(), listStyle.release(), separator.release())); create 3967 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<Rect> rect = Rect::create(); create 4091 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSBasicShapeInset> shape = CSSBasicShapeInset::create(); create 4215 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSBasicShapeCircle> shape = CSSBasicShapeCircle::create(); create 4263 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSBasicShapeEllipse> shape = CSSBasicShapeEllipse::create(); create 4309 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSBasicShapePolygon> shape = CSSBasicShapePolygon::create(); create 4732 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSFontFaceSrcValue> uriValue(CSSFontFaceSrcValue::create(completeURL(m_valueList->current()->string))); create 4896 Source/core/css/parser/CSSPropertyParser.cpp values->append(CSSUnicodeRangeValue::create(from, to)); create 5421 Source/core/css/parser/CSSPropertyParser.cpp values->append(CSSShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release())); create 5619 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSReflectValue> reflectValue = CSSReflectValue::create(direction.release(), offset.release(), mask.release()); create 5830 Source/core/css/parser/CSSPropertyParser.cpp context.commitImage(CSSImageValue::create(val->string, parser.m_context.completeURL(val->string))); create 5998 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<Quad> quad = Quad::create(); create 6005 Source/core/css/parser/CSSPropertyParser.cpp return CSSBorderImageSliceValue::create(cssValuePool().createValue(quad.release()), m_fill); create 6116 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<Quad> quad = Quad::create(); create 6261 Source/core/css/parser/CSSPropertyParser.cpp addProperty(CSSPropertyWebkitAspectRatio, CSSAspectRatioValue::create(narrowPrecisionToFloat(lvalue->fValue), narrowPrecisionToFloat(rvalue->fValue)), important); create 6412 Source/core/css/parser/CSSPropertyParser.cpp result = CSSLinearGradientValue::create(NonRepeating, gradientType); create 6415 Source/core/css/parser/CSSPropertyParser.cpp result = CSSRadialGradientValue::create(NonRepeating, gradientType); create 6554 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSLinearGradientValue> result = CSSLinearGradientValue::create(repeating, CSSPrefixedLinearGradient); create 6623 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSRadialGradientValue> result = CSSRadialGradientValue::create(repeating, CSSPrefixedRadialGradient); create 6741 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSLinearGradientValue> result = CSSLinearGradientValue::create(repeating, CSSLinearGradient); create 6814 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSRadialGradientValue> result = CSSRadialGradientValue::create(repeating, CSSRadialGradient); create 7077 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSCrossfadeValue> result = CSSCrossfadeValue::create(fromImageValue, toImageValue); create 7097 Source/core/css/parser/CSSPropertyParser.cpp canvas = CSSCanvasValue::create(value->string); create 7112 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSImageSetValue> imageSet = CSSImageSetValue::create(); create 7119 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSImageValue> image = CSSImageValue::create(arg->string, completeURL(arg->string)); create 7256 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSFilterValue> filterValue = CSSFilterValue::create(filterType); create 7361 Source/core/css/parser/CSSPropertyParser.cpp RefPtrWillBeRawPtr<CSSFilterValue> referenceFilterValue = CSSFilterValue::create(CSSFilterValue::ReferenceFilterOperation); create 7363 Source/core/css/parser/CSSPropertyParser.cpp referenceFilterValue->append(CSSSVGDocumentValue::create(value->string)); create 7781 Source/core/css/parser/CSSPropertyParser.cpp addProperty(CSSPropertyWebkitLineBoxContain, CSSLineBoxContainValue::create(lineBoxContain), important); create 7818 Source/core/css/parser/CSSPropertyParser.cpp settings->append(CSSFontFeatureValue::create(tag, tagValue)); create 7910 Source/core/css/parser/CSSPropertyParser.cpp m_parsedCalculation = CSSCalcValue::create(value->function->name, args, range); create 8139 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->string, CSSPrimitiveValue::CSS_URI); create 8219 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_DEG); create 8322 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit); create 8358 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit); create 8360 Source/core/css/parser/CSSPropertyParser.cpp parsedValue = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit); create 8390 Source/core/css/parser/CSSPropertyParser.cpp ret->append(CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit)); create 35 Source/core/css/parser/MediaQueryParser.cpp , m_querySet(MediaQuerySet::create()) create 496 Source/core/css/resolver/CSSToStyleMap.cpp return CubicBezierTimingFunction::create(cubicTimingFunction->x1(), cubicTimingFunction->y1(), cubicTimingFunction->x2(), cubicTimingFunction->y2()); create 499 Source/core/css/resolver/CSSToStyleMap.cpp return StepsTimingFunction::create(stepsTimingFunction->numberOfSteps(), stepsTimingFunction->stepAtPosition()); create 64 Source/core/css/resolver/ElementStyleResources.cpp return StylePendingImage::create(value); create 66 Source/core/css/resolver/ElementStyleResources.cpp return StyleGeneratedImage::create(value); create 115 Source/core/css/resolver/FilterOperationResolver.cpp RefPtr<ReferenceFilterOperation> operation = ReferenceFilterOperation::create(svgDocumentValue->url(), AtomicString(url.fragmentIdentifier())); create 152 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType)); create 160 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType)); create 174 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(BasicComponentTransferFilterOperation::create(amount, operationType)); create 181 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(BlurFilterOperation::create(stdDeviation)); create 199 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(DropShadowFilterOperation::create(location, blur, shadowColor)); create 228 Source/core/css/resolver/FontBuilder.cpp RefPtr<SharedFontFamily> newFamily = SharedFontFamily::create(); create 516 Source/core/css/resolver/FontBuilder.cpp RefPtr<FontFeatureSettings> settings = FontFeatureSettings::create(); create 49 Source/core/css/resolver/ScopedStyleResolver.h static PassOwnPtr<ScopedStyleResolver> create(ContainerNode& scopingNode) { return adoptPtr(new ScopedStyleResolver(scopingNode)); } create 63 Source/core/css/resolver/ScopedStyleTree.cpp addResult.storedValue->value = ScopedStyleResolver::create(scopingNode); create 808 Source/core/css/resolver/StyleBuilderCustom.cpp state.style()->setClipPath(ShapeClipPathOperation::create(basicShapeForValue(state, primitiveValue->getShapeValue()))); create 813 Source/core/css/resolver/StyleBuilderCustom.cpp state.style()->setClipPath(ReferenceClipPathOperation::create(cssURLValue, AtomicString(url.fragmentIdentifier()))); create 1316 Source/core/css/resolver/StyleBuilderCustom.cpp state.style()->setContent(StyleGeneratedImage::create(toCSSGradientValue(item)->gradientWithStylesResolved(state.document().textLinkColors(), state.style()->color()).get()), didSet); create 1318 Source/core/css/resolver/StyleBuilderCustom.cpp state.style()->setContent(StyleGeneratedImage::create(toCSSImageGeneratorValue(item)), didSet); create 1392 Source/core/css/resolver/StyleBuilderCustom.cpp RefPtr<QuotesData> quotes = QuotesData::create(); create 1408 Source/core/css/resolver/StyleBuilderCustom.cpp state.style()->setQuotes(QuotesData::create()); create 1485 Source/core/css/resolver/StyleBuilderCustom.cpp RefPtr<StyleReflection> reflection = StyleReflection::create(); create 1531 Source/core/css/resolver/StyleBuilderCustom.cpp width = CSSPrimitiveValue::create(result, CSSPrimitiveValue::CSS_EMS)->computeLength<float>(state.cssToLengthConversionData()); create 1566 Source/core/css/resolver/StyleBuilderCustom.cpp perspectiveValue = CSSPrimitiveValue::create(primitiveValue->getDoubleValue(), CSSPrimitiveValue::CSS_PX)->computeLength<float>(state.cssToLengthConversionData()); create 2230 Source/core/css/resolver/StyleBuilderCustom.cpp RefPtr<SVGLengthList> array = SVGLengthList::create(); create 110 Source/core/css/resolver/StyleResolver.cpp DEFINE_STATIC_REF(MutableStylePropertySet, leftToRightDecl, (MutableStylePropertySet::create())); create 118 Source/core/css/resolver/StyleResolver.cpp DEFINE_STATIC_REF(MutableStylePropertySet, rightToLeftDecl, (MutableStylePropertySet::create())); create 126 Source/core/css/resolver/StyleResolver.cpp RefPtr<FontFace> fontFace = FontFace::create(document, fontFaceRule); create 133 Source/core/css/resolver/StyleResolver.cpp , m_viewportStyleResolver(ViewportStyleResolver::create(&document)) create 176 Source/core/css/resolver/StyleResolver.cpp m_watchedSelectorsRules = RuleSet::create(); create 301 Source/core/css/resolver/StyleResolver.cpp OwnPtrWillBeRawPtr<RuleSet> ruleSet = RuleSet::create(); create 582 Source/core/css/resolver/StyleResolver.cpp RefPtr<RenderStyle> documentStyle = RenderStyle::create(); create 637 Source/core/css/resolver/StyleResolver.cpp s_styleNotYetAvailable = RenderStyle::create().leakRef(); create 660 Source/core/css/resolver/StyleResolver.cpp state.setStyle(RenderStyle::create()); create 795 Source/core/css/resolver/StyleResolver.cpp state.setStyle(RenderStyle::create()); create 802 Source/core/css/resolver/StyleResolver.cpp keyframes[i]->setPropertyValue(id, CSSAnimatableValueFactory::create(id, *state.style()).get()); create 805 Source/core/css/resolver/StyleResolver.cpp return AnimatableValueKeyframeEffectModel::create(keyframes); create 827 Source/core/css/resolver/StyleResolver.cpp return PseudoElement::create(&parent, pseudoId); create 840 Source/core/css/resolver/StyleResolver.cpp RefPtr<PseudoElement> pseudo = PseudoElement::create(&parent, pseudoId); create 857 Source/core/css/resolver/StyleResolver.cpp state.setStyle(RenderStyle::create()); create 929 Source/core/css/resolver/StyleResolver.cpp state.setStyle(RenderStyle::create()); create 988 Source/core/css/resolver/StyleResolver.cpp state.setStyle(RenderStyle::create()); create 1352 Source/core/css/resolver/StyleResolver.cpp m_styleResolverStats = StyleResolverStats::create(); create 1353 Source/core/css/resolver/StyleResolver.cpp m_styleResolverStatsTotals = StyleResolverStats::create(); create 41 Source/core/css/resolver/StyleResolverStats.h static PassOwnPtr<StyleResolverStats> create() create 83 Source/core/css/resolver/StyleResourceLoader.cpp return StyleGeneratedImage::create(imageGeneratorValue); create 131 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType()))); create 157 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType()))); create 177 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(TranslateTransformOperation::create(tx, ty, 0, getTransformOperationType(transformValue->operationType()))); create 203 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperationType(transformValue->operationType()))); create 208 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(RotateTransformOperation::create(0, 0, 1, angle, getTransformOperationType(transformValue->operationType()))); create 225 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType()))); create 238 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType()))); create 258 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(SkewTransformOperation::create(angleX, angleY, getTransformOperationType(transformValue->operationType()))); create 270 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(MatrixTransformOperation::create(a, b, c, d, e, f)); create 292 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(Matrix3DTransformOperation::create(matrix)); create 307 Source/core/css/resolver/TransformBuilder.cpp operations.operations().append(PerspectiveTransformOperation::create(p)); create 48 Source/core/css/resolver/ViewportStyleResolver.h static PassOwnPtrWillBeRawPtr<ViewportStyleResolver> create(Document* document) create 66 Source/core/dom/ActiveDOMObjectTest.cpp : m_srcPageHolder(DummyPageHolder::create(IntSize(800, 600))) create 67 Source/core/dom/ActiveDOMObjectTest.cpp , m_destPageHolder(DummyPageHolder::create(IntSize(800, 600))) create 40 Source/core/dom/AddConsoleMessageTask.h static PassOwnPtr<AddConsoleMessageTask> create(MessageSource source, MessageLevel level, const String& message) create 43 Source/core/dom/Attr.h static PassRefPtr<Attr> create(Element&, const QualifiedName&); create 44 Source/core/dom/Attr.h static PassRefPtr<Attr> create(Document&, const QualifiedName&, const AtomicString& value); create 52 Source/core/dom/CDATASection.cpp return create(document(), data); create 32 Source/core/dom/CDATASection.h static PassRefPtr<CDATASection> create(Document&, const String&); create 147 Source/core/dom/CSSSelectorWatch.cpp const RefPtr<StylePropertySet> callbackPropertySet = ImmutableStylePropertySet::create(&callbackProperty, 1, UASheetMode); create 159 Source/core/dom/CSSSelectorWatch.cpp RefPtrWillBeRawPtr<StyleRule> rule = StyleRule::create(); create 197 Source/core/dom/CharacterData.cpp dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMCharacterDataModified, true, nullptr, oldData, m_data)); create 36 Source/core/dom/ChildNodeList.h static PassRefPtr<ChildNodeList> create(ContainerNode& rootNode) create 43 Source/core/dom/ClassCollection.h static PassRefPtr<ClassCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& classNames) create 41 Source/core/dom/ClientRect.h static PassRefPtr<ClientRect> create() { return adoptRef(new ClientRect); } create 42 Source/core/dom/ClientRect.h static PassRefPtr<ClientRect> create(const IntRect& rect) { return adoptRef(new ClientRect(rect)); } create 43 Source/core/dom/ClientRect.h static PassRefPtr<ClientRect> create(const FloatRect& rect) { return adoptRef(new ClientRect(rect)); } create 44 Source/core/dom/ClientRectList.cpp m_list.append(ClientRect::create(quads[i].enclosingBoundingBox())); create 42 Source/core/dom/ClientRectList.h static PassRefPtr<ClientRectList> create() { return adoptRef(new ClientRectList); } create 43 Source/core/dom/ClientRectList.h static PassRefPtr<ClientRectList> create(const Vector<FloatQuad>& quads) { return adoptRef(new ClientRectList(quads)); } create 52 Source/core/dom/Comment.cpp return create(document(), data()); create 34 Source/core/dom/Comment.h static PassRefPtr<Comment> create(Document&, const String&); create 954 Source/core/dom/ContainerNode.cpp c->dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMNodeInserted, true, c->parentNode())); create 959 Source/core/dom/ContainerNode.cpp c->dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMNodeInsertedIntoDocument, false)); create 980 Source/core/dom/ContainerNode.cpp c->dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMNodeRemoved, true, c->parentNode())); create 987 Source/core/dom/ContainerNode.cpp c->dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMNodeRemovedFromDocument, false)); create 49 Source/core/dom/ContextFeatures.cpp DEFINE_STATIC_REF(ContextFeatures, instance, (ContextFeatures::create(ContextFeaturesClient::empty()))); create 89 Source/core/dom/ContextFeatures.cpp RefCountedSupplement<Page, ContextFeatures>::provideTo(page, ContextFeatures::supplementName(), ContextFeatures::create(client)); create 51 Source/core/dom/ContextFeatures.h static PassRefPtr<ContextFeatures> create(ContextFeaturesClient*); create 91 Source/core/dom/ContextFeatures.h inline PassRefPtr<ContextFeatures> ContextFeatures::create(ContextFeaturesClient* client) create 43 Source/core/dom/ContextLifecycleNotifier.h static PassOwnPtr<ContextLifecycleNotifier> create(ExecutionContext*); create 69 Source/core/dom/ContextLifecycleNotifier.h inline PassOwnPtr<ContextLifecycleNotifier> ContextLifecycleNotifier::create(ExecutionContext* context) create 67 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1) create 97 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2) create 130 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3) create 166 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3, Param4 parameter4) create 205 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3, Param4 parameter4, Param5 parameter5) create 247 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3, Param4 parameter4, Param5 parameter5, Param6 parameter6) create 292 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3, Param4 parameter4, Param5 parameter5, Param6 parameter6, Param7 parameter7) create 340 Source/core/dom/CrossThreadTask.h static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2, Param3 parameter3, Param4 parameter4, Param5 parameter5, Param6 parameter6, Param7 parameter7, Param8 parameter8) create 381 Source/core/dom/CrossThreadTask.h return CrossThreadTask1<typename CrossThreadCopier<P1>::Type, MP1>::create( create 391 Source/core/dom/CrossThreadTask.h return CrossThreadTask2<typename CrossThreadCopier<P1>::Type, MP1, typename CrossThreadCopier<P2>::Type, MP2>::create( create 401 Source/core/dom/CrossThreadTask.h return CrossThreadTask3<typename CrossThreadCopier<P1>::Type, MP1, typename CrossThreadCopier<P2>::Type, MP2, typename CrossThreadCopier<P3>::Type, MP3>::create( create 413 Source/core/dom/CrossThreadTask.h typename CrossThreadCopier<P4>::Type, MP4>::create( create 425 Source/core/dom/CrossThreadTask.h typename CrossThreadCopier<P4>::Type, MP4, typename CrossThreadCopier<P5>::Type, MP5>::create( create 438 Source/core/dom/CrossThreadTask.h typename CrossThreadCopier<P4>::Type, MP4, typename CrossThreadCopier<P5>::Type, MP5, typename CrossThreadCopier<P6>::Type, MP6>::create( create 452 Source/core/dom/CrossThreadTask.h typename CrossThreadCopier<P7>::Type, MP7>::create( create 467 Source/core/dom/CrossThreadTask.h typename CrossThreadCopier<P7>::Type, MP7, typename CrossThreadCopier<P8>::Type, MP8>::create( create 41 Source/core/dom/DOMError.h static PassRefPtrWillBeRawPtr<DOMError> create(const String& name) create 45 Source/core/dom/DOMError.h static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message) create 50 Source/core/dom/DOMError.h static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec) create 55 Source/core/dom/DOMError.h static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message) create 43 Source/core/dom/DOMException.h static PassRefPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), const String& unsanitizedMessage = String()); create 198 Source/core/dom/DOMImplementation.cpp return DocumentType::create(&m_document, qualifiedName, publicId, systemId); create 214 Source/core/dom/DOMImplementation.cpp doc = SVGDocument::create(init); create 218 Source/core/dom/DOMImplementation.cpp doc = XMLDocument::create(init); create 243 Source/core/dom/DOMImplementation.cpp RefPtrWillBeRawPtr<CSSStyleSheet> sheet = CSSStyleSheet::create(StyleSheetContents::create(strictCSSParserContext())); create 244 Source/core/dom/DOMImplementation.cpp sheet->setMediaQueries(MediaQuerySet::create(media)); create 342 Source/core/dom/DOMImplementation.cpp RefPtr<HTMLDocument> d = HTMLDocument::create(init); create 360 Source/core/dom/DOMImplementation.cpp return HTMLViewSourceDocument::create(init, type); create 364 Source/core/dom/DOMImplementation.cpp return HTMLDocument::create(init); create 375 Source/core/dom/DOMImplementation.cpp return PluginDocument::create(init); create 377 Source/core/dom/DOMImplementation.cpp return ImageDocument::create(init); create 381 Source/core/dom/DOMImplementation.cpp return MediaDocument::create(init); create 387 Source/core/dom/DOMImplementation.cpp return PluginDocument::create(init); create 389 Source/core/dom/DOMImplementation.cpp return TextDocument::create(init); create 391 Source/core/dom/DOMImplementation.cpp return SVGDocument::create(init); create 393 Source/core/dom/DOMImplementation.cpp return XMLDocument::create(init); create 395 Source/core/dom/DOMImplementation.cpp return HTMLDocument::create(init); create 46 Source/core/dom/DOMImplementation.h static PassOwnPtr<DOMImplementation> create(Document& document) { return adoptPtr(new DOMImplementation(document)); } create 40 Source/core/dom/DOMSettableTokenList.h static PassRefPtr<DOMSettableTokenList> create() create 41 Source/core/dom/DOMStringList.h static PassRefPtr<DOMStringList> create() create 48 Source/core/dom/DOMURL.h static PassRefPtrWillBeRawPtr<DOMURL> create(const String& url, ExceptionState& exceptionState) create 52 Source/core/dom/DOMURL.h static PassRefPtrWillBeRawPtr<DOMURL> create(const String& url, const String& base, ExceptionState& exceptionState) create 56 Source/core/dom/DOMURL.h static PassRefPtrWillBeRawPtr<DOMURL> create(const String& url, PassRefPtrWillBeRawPtr<DOMURL> base, ExceptionState& exceptionState) create 47 Source/core/dom/DOMURLUtilsReadOnly.cpp return SecurityOrigin::create(url)->toString(); create 39 Source/core/dom/DatasetDOMStringMap.h static PassOwnPtr<DatasetDOMStringMap> create(Element* element) create 425 Source/core/dom/Document.cpp , m_visitedLinkState(VisitedLinkState::create(*this)) create 441 Source/core/dom/Document.cpp , m_scriptRunner(ScriptRunner::create(this)) create 467 Source/core/dom/Document.cpp , m_taskRunner(MainThreadTaskRunner::create(this)) create 473 Source/core/dom/Document.cpp , m_animationClock(AnimationClock::create()) create 474 Source/core/dom/Document.cpp , m_timeline(DocumentTimeline::create(this)) create 475 Source/core/dom/Document.cpp , m_transitionTimeline(TransitionTimeline::create(this)) create 491 Source/core/dom/Document.cpp m_fetcher = ResourceFetcher::create(0); create 515 Source/core/dom/Document.cpp m_styleEngine = StyleEngine::create(*this); create 641 Source/core/dom/Document.cpp m_mediaQueryMatcher = MediaQueryMatcher::create(this); create 685 Source/core/dom/Document.cpp m_implementation = DOMImplementation::create(*this); create 718 Source/core/dom/Document.cpp return Element::create(QualifiedName(nullAtom, name, nullAtom), this); create 833 Source/core/dom/Document.cpp return DocumentFragment::create(*this); create 838 Source/core/dom/Document.cpp return Text::create(*this, data); create 843 Source/core/dom/Document.cpp return Comment::create(*this, data); create 856 Source/core/dom/Document.cpp return CDATASection::create(*this, data); create 869 Source/core/dom/Document.cpp return ProcessingInstruction::create(*this, target, data); create 909 Source/core/dom/Document.cpp return DocumentType::create(this, doctype->name(), doctype->publicId(), doctype->systemId()); create 934 Source/core/dom/Document.cpp return Attr::create(*this, QualifiedName(nullAtom, AtomicString(toAttr(importedNode)->name()), nullAtom), toAttr(importedNode)->value()); create 1041 Source/core/dom/Document.cpp e = Element::create(qName, this); create 1098 Source/core/dom/Document.cpp dispatchEvent(Event::create(EventTypeNames::readystatechange)); create 1247 Source/core/dom/Document.cpp return Range::create(*this, container, offset, container, offset); create 1255 Source/core/dom/Document.cpp return Range::create(*this, rangeCompliantPosition, rangeCompliantPosition); create 1342 Source/core/dom/Document.cpp m_titleElement = HTMLTitleElement::create(*this); create 1407 Source/core/dom/Document.cpp dispatchEvent(Event::create(EventTypeNames::visibilitychange)); create 1409 Source/core/dom/Document.cpp dispatchEvent(Event::create(EventTypeNames::webkitvisibilitychange)); create 1442 Source/core/dom/Document.cpp m_formController = FormController::create(); create 1482 Source/core/dom/Document.cpp return Range::create(*this); create 1492 Source/core/dom/Document.cpp return NodeIterator::create(root, NodeFilter::SHOW_ALL, PassRefPtr<NodeFilter>()); create 1503 Source/core/dom/Document.cpp return NodeIterator::create(root, whatToShow, PassRefPtr<NodeFilter>()); create 1513 Source/core/dom/Document.cpp return NodeIterator::create(root, whatToShow, filter); create 1522 Source/core/dom/Document.cpp return TreeWalker::create(root, NodeFilter::SHOW_ALL, PassRefPtr<NodeFilter>()); create 1531 Source/core/dom/Document.cpp return TreeWalker::create(root, whatToShow, PassRefPtr<NodeFilter>()); create 1540 Source/core/dom/Document.cpp return TreeWalker::create(root, whatToShow, filter); create 2239 Source/core/dom/Document.cpp return HTMLDocumentParser::create(toHTMLDocument(this), reportErrors); create 2242 Source/core/dom/Document.cpp return XMLDocumentParser::create(this, view()); create 2539 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<BeforeUnloadEvent> beforeUnloadEvent = BeforeUnloadEvent::create(); create 2574 Source/core/dom/Document.cpp window->dispatchEvent(PageTransitionEvent::create(EventTypeNames::pagehide, false), this); create 2583 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<Event> unloadEvent(Event::create(EventTypeNames::unload)); create 2623 Source/core/dom/Document.cpp m_elementDataCache = ElementDataCache::create(); create 3275 Source/core/dom/Document.cpp return XMLDocument::create(init); create 3277 Source/core/dom/Document.cpp return create(init); create 3292 Source/core/dom/Document.cpp m_styleSheetList = StyleSheetList::create(this); create 3762 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<Event> scrollEvent = target->isDocumentNode() ? Event::createBubble(EventTypeNames::scroll) : Event::create(EventTypeNames::scroll); create 3769 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::resize); create 3776 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<Event> event = EventFactory::create(eventType); create 4290 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<XSLTProcessor> processor = XSLTProcessor::create(); create 4367 Source/core/dom/Document.cpp return Attr::create(*this, qName, emptyAtom); create 4584 Source/core/dom/Document.cpp return ContentSecurityPolicy::create(document); create 4599 Source/core/dom/Document.cpp setContentSecurityPolicy(ContentSecurityPolicy::create(this)); create 4607 Source/core/dom/Document.cpp setSecurityOrigin(isSandboxed(SandboxOrigin) ? SecurityOrigin::createUnique() : SecurityOrigin::create(m_url)); create 4776 Source/core/dom/Document.cpp element = HTMLCanvasElement::create(*this); create 4820 Source/core/dom/Document.cpp m_taskRunner->postTask(AddConsoleMessageTask::create(source, level, message)); create 4842 Source/core/dom/Document.cpp m_taskRunner->postTask(AddConsoleMessageTask::create(source, level, message)); create 4983 Source/core/dom/Document.cpp m_scriptedAnimationController = ScriptedAnimationController::create(this); create 5017 Source/core/dom/Document.cpp return Touch::create(frame, target, identifier, screenX, screenY, pageX, pageY, radiusX, radiusY, rotationAngle, force); create 5022 Source/core/dom/Document.cpp return TouchList::create(touches); create 5352 Source/core/dom/Document.cpp result.storedValue->value = Locale::create(localeKey); create 5366 Source/core/dom/Document.cpp m_templateDocument = HTMLDocument::create(init); create 5368 Source/core/dom/Document.cpp m_templateDocument = Document::create(DocumentInit(blankURL())); create 5405 Source/core/dom/Document.cpp return DocumentLifecycleNotifier::create(this); create 5436 Source/core/dom/Document.cpp m_textAutosizer = TextAutosizer::create(this); create 5443 Source/core/dom/Document.cpp m_fastTextAutosizer = FastTextAutosizer::create(this); create 5458 Source/core/dom/Document.cpp m_taskRunner->postTask(AutofocusTask::create()); create 236 Source/core/dom/Document.h static PassRefPtr<Document> create(const DocumentInit& initializer = DocumentInit()) create 69 Source/core/dom/DocumentFragment.cpp RefPtr<DocumentFragment> clone = create(document()); create 36 Source/core/dom/DocumentFragment.h static PassRefPtr<DocumentFragment> create(Document&); create 148 Source/core/dom/DocumentInit.cpp return CustomElementRegistrationContext::create(); create 39 Source/core/dom/DocumentLifecycleNotifier.h static PassOwnPtr<DocumentLifecycleNotifier> create(Document*); create 54 Source/core/dom/DocumentLifecycleNotifier.h inline PassOwnPtr<DocumentLifecycleNotifier> DocumentLifecycleNotifier::create(Document* document) create 42 Source/core/dom/DocumentMarker.cpp static PassRefPtr<DocumentMarkerDescription> create(const String&); create 120 Source/core/dom/DocumentMarker.cpp , m_details(description.isEmpty() ? nullptr : DocumentMarkerDescription::create(description)) create 129 Source/core/dom/DocumentMarker.cpp , m_details(description.isEmpty() ? nullptr : DocumentMarkerDescription::create(description)) create 67 Source/core/dom/DocumentMarkerControllerTest.cpp m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 55 Source/core/dom/DocumentTest.cpp m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 99 Source/core/dom/DocumentTest.cpp OwnPtr<DummyPageHolder> alternatePage = DummyPageHolder::create(IntSize(800, 600)); create 57 Source/core/dom/DocumentType.cpp return create(&document(), m_name, m_publicId, m_systemId); create 35 Source/core/dom/DocumentType.h static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId) create 296 Source/core/dom/Element.cpp attrNode = Attr::create(document(), attribute.name(), attribute.value()); create 339 Source/core/dom/Element.cpp rareData.setAttributeMap(NamedNodeMap::create(const_cast<Element*>(this))); create 842 Source/core/dom/Element.cpp return ClientRectList::create(); create 850 Source/core/dom/Element.cpp return ClientRectList::create(quads); create 871 Source/core/dom/Element.cpp return ClientRect::create(); create 879 Source/core/dom/Element.cpp return ClientRect::create(result); create 1963 Source/core/dom/Element.cpp oldAttrNode = Attr::create(document(), attrNode->qualifiedName(), elementData.attributeItem(index).value()); create 2211 Source/core/dom/Element.cpp RefPtrWillBeRawPtr<FocusEvent> event = FocusEvent::create(EventTypeNames::focus, false, false, document().domWindow(), 0, oldFocusedElement); create 2212 Source/core/dom/Element.cpp EventDispatcher::dispatchEvent(this, FocusEventDispatchMediator::create(event.release())); create 2217 Source/core/dom/Element.cpp RefPtrWillBeRawPtr<FocusEvent> event = FocusEvent::create(EventTypeNames::blur, false, false, document().domWindow(), 0, newFocusedElement); create 2218 Source/core/dom/Element.cpp EventDispatcher::dispatchEvent(this, BlurEventDispatchMediator::create(event.release())); create 2225 Source/core/dom/Element.cpp dispatchScopedEventDispatchMediator(FocusInEventDispatchMediator::create(FocusEvent::create(eventType, true, false, document().domWindow(), 0, oldFocusedElement))); create 2232 Source/core/dom/Element.cpp dispatchScopedEventDispatchMediator(FocusOutEventDispatchMediator::create(FocusEvent::create(eventType, true, false, document().domWindow(), 0, newFocusedElement))); create 2631 Source/core/dom/Element.cpp rareData.setClassList(ClassList::create(this)); create 2639 Source/core/dom/Element.cpp rareData.setDataset(DatasetDOMStringMap::create(this)); create 3019 Source/core/dom/Element.cpp attrNode = Attr::create(*this, name); create 3132 Source/core/dom/Element.cpp m_elementData = UniqueElementData::create(); create 3173 Source/core/dom/Element.cpp inlineStyle = MutableStylePropertySet::create(mode); create 93 Source/core/dom/Element.h static PassRefPtr<Element> create(const QualifiedName&, Document*); create 145 Source/core/dom/ElementData.h static PassRefPtr<UniqueElementData> create(); create 45 Source/core/dom/ElementDataCache.h static PassOwnPtr<ElementDataCache> create() { return adoptPtr(new ElementDataCache); } create 43 Source/core/dom/ElementRareData.h static PassOwnPtr<ElementRareData> create(RenderObject* renderer) { return adoptPtr(new ElementRareData(renderer)); } create 76 Source/core/dom/ElementRareData.h m_shadow = ElementShadow::create(); create 115 Source/core/dom/ElementRareData.h m_inputMethodContext = InputMethodContext::create(element); create 42 Source/core/dom/EmptyNodeList.h static PassRefPtr<EmptyNodeList> create(Node& rootNode) create 205 Source/core/dom/ExecutionContext.cpp TimeoutMap::AddResult result = m_timeouts.add(timeoutID, DOMTimer::create(this, action, timeout, singleShot, timeoutID)); create 224 Source/core/dom/ExecutionContext.cpp m_publicURLManager = PublicURLManager::create(this); create 305 Source/core/dom/ExecutionContext.cpp m_client->postTask(CallClosureTask::create(closure)); create 310 Source/core/dom/ExecutionContext.cpp return ContextLifecycleNotifier::create(this); create 52 Source/core/dom/ExecutionContextTask.h static PassOwnPtr<CallClosureTask> create(const Closure& closure) create 43 Source/core/dom/IdTargetObserverRegistry.h static PassOwnPtr<IdTargetObserverRegistry> create(); create 49 Source/core/dom/MainThreadTaskRunner.h static PassOwnPtr<MainThreadTaskRunner> create(ExecutionContext*); create 70 Source/core/dom/MainThreadTaskRunner.h inline PassOwnPtr<MainThreadTaskRunner> MainThreadTaskRunner::create(ExecutionContext* context) create 99 Source/core/dom/MainThreadTaskRunnerTest.cpp OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); create 102 Source/core/dom/MainThreadTaskRunnerTest.cpp runner->postTask(MarkingBooleanTask::create(&isMarked)); create 111 Source/core/dom/MainThreadTaskRunnerTest.cpp OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); create 115 Source/core/dom/MainThreadTaskRunnerTest.cpp runner->postTask(MarkingBooleanTask::create(&isMarked)); create 129 Source/core/dom/MainThreadTaskRunnerTest.cpp OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get()); create 133 Source/core/dom/MainThreadTaskRunnerTest.cpp runner->postTask(MarkingBooleanTask::create(&isMarked)); create 52 Source/core/dom/MessageChannel.cpp : m_port1(MessagePort::create(*context)) create 53 Source/core/dom/MessageChannel.cpp , m_port2(MessagePort::create(*context)) create 42 Source/core/dom/MessageChannel.h static PassRefPtr<MessageChannel> create(ExecutionContext* context) { return adoptRef(new MessageChannel(context)); } create 200 Source/core/dom/MessagePort.cpp RefPtrWillBeRawPtr<Event> evt = MessageEvent::create(ports.release(), message.release()); create 252 Source/core/dom/MessagePort.cpp RefPtr<MessagePort> port = MessagePort::create(context); create 66 Source/core/dom/MessagePort.h static PassRefPtr<MessagePort> create(ExecutionContext&); create 74 Source/core/dom/MutationObserver.h static PassRefPtr<MutationObserver> create(PassOwnPtr<MutationCallback>); create 45 Source/core/dom/MutationObserverRegistration.h static PassOwnPtr<MutationObserverRegistration> create(MutationObserver&, Node&, MutationObserverOptions, const HashSet<AtomicString>& attributeFilter); create 36 Source/core/dom/NameNodeList.h static PassRefPtr<NameNodeList> create(ContainerNode& rootNode, CollectionType type, const AtomicString& name) create 43 Source/core/dom/NamedNodeMap.h static PassOwnPtr<NamedNodeMap> create(Element* element) create 44 Source/core/dom/NamedNodesCollection.h static PassRefPtr<NodeList> create(const Vector<RefPtr<Element> >& nodes) create 315 Source/core/dom/Node.cpp data = ElementRareData::create(m_data.m_renderer).leakPtr(); create 317 Source/core/dom/Node.cpp data = NodeRareData::create(m_data.m_renderer).leakPtr(); create 695 Source/core/dom/Node.cpp RefPtr<JSONArray> jsonArray = JSONArray::create(); create 706 Source/core/dom/Node.cpp RefPtr<JSONObject> jsonObject = JSONObject::create(); create 2090 Source/core/dom/Node.cpp registry.append(MutationObserverRegistration::create(observer, *this, options, attributeFilter)); create 2164 Source/core/dom/Node.cpp dispatchScopedEventDispatchMediator(EventDispatchMediator::create(event)); create 2175 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, MouseEventDispatchMediator::create(static_pointer_cast<MouseEvent>(event), MouseEventDispatchMediator::SyntheticMouseEvent)); create 2178 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, EventDispatchMediator::create(event)); create 2191 Source/core/dom/Node.cpp dispatchScopedEvent(MutationEvent::create(EventTypeNames::DOMSubtreeModified, true)); create 2197 Source/core/dom/Node.cpp RefPtrWillBeRawPtr<UIEvent> event = UIEvent::create(EventTypeNames::DOMActivate, true, true, document().domWindow(), detail); create 2205 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, KeyboardEventDispatchMediator::create(KeyboardEvent::create(event, document().domWindow()))); create 2211 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, MouseEventDispatchMediator::create(MouseEvent::create(eventType, document().domWindow(), event, detail, relatedTarget))); create 2216 Source/core/dom/Node.cpp RefPtrWillBeRawPtr<GestureEvent> gestureEvent = GestureEvent::create(document().domWindow(), event); create 2219 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, GestureEventDispatchMediator::create(gestureEvent)); create 2224 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, TouchEventDispatchMediator::create(event)); create 2234 Source/core/dom/Node.cpp return EventDispatcher::dispatchEvent(this, WheelEventDispatchMediator::create(event, document().domWindow())); create 68 Source/core/dom/NodeFilter.h static PassRefPtr<NodeFilter> create(PassRefPtr<NodeFilterCondition> condition) create 73 Source/core/dom/NodeFilter.h static PassRefPtr<NodeFilter> create() create 40 Source/core/dom/NodeIterator.h static PassRefPtr<NodeIterator> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter) create 57 Source/core/dom/NodeRareData.h RefPtr<ChildNodeList> list = ChildNodeList::create(node); create 66 Source/core/dom/NodeRareData.h RefPtr<EmptyNodeList> list = EmptyNodeList::create(node); create 106 Source/core/dom/NodeRareData.h RefPtr<T> list = T::create(node, collectionType, name); create 118 Source/core/dom/NodeRareData.h RefPtr<T> list = T::create(node, collectionType); create 136 Source/core/dom/NodeRareData.h RefPtr<TagCollection> list = TagCollection::create(node, namespaceURI, localName); create 158 Source/core/dom/NodeRareData.h static PassOwnPtr<NodeListsNodeData> create() create 218 Source/core/dom/NodeRareData.h static PassOwnPtr<NodeMutationObserverData> create() { return adoptPtr(new NodeMutationObserverData); } create 227 Source/core/dom/NodeRareData.h static PassOwnPtr<NodeRareData> create(RenderObject* renderer) { return adoptPtr(new NodeRareData(renderer)); } create 234 Source/core/dom/NodeRareData.h m_nodeLists = NodeListsNodeData::create(); create 242 Source/core/dom/NodeRareData.h m_mutationObserverData = NodeMutationObserverData::create(); create 293 Source/core/dom/Position.cpp return CSSComputedStyleDeclaration::create(elem); create 180 Source/core/dom/PresentationAttributeStyle.cpp style = MutableStylePropertySet::create(element.isSVGElement() ? SVGAttributeMode : HTMLAttributeMode); create 79 Source/core/dom/ProcessingInstruction.cpp return create(document(), m_target, m_data); create 175 Source/core/dom/ProcessingInstruction.cpp RefPtrWillBeRawPtr<StyleSheetContents> newSheet = StyleSheetContents::create(href, parserContext); create 177 Source/core/dom/ProcessingInstruction.cpp RefPtrWillBeRawPtr<CSSStyleSheet> cssSheet = CSSStyleSheet::create(newSheet, this); create 180 Source/core/dom/ProcessingInstruction.cpp cssSheet->setMediaQueries(MediaQuerySet::create(m_media)); create 193 Source/core/dom/ProcessingInstruction.cpp m_sheet = XSLStyleSheet::create(this, href, baseURL); create 37 Source/core/dom/ProcessingInstruction.h static PassRefPtr<ProcessingInstruction> create(Document&, const String& target, const String& data); create 38 Source/core/dom/PseudoElement.h static PassRefPtr<PseudoElement> create(Element* parent, PseudoId pseudoId) create 72 Source/core/dom/QualifiedName.cpp location = QualifiedName::QualifiedNameImpl::create(AtomicString(components.m_prefix), AtomicString(components.m_localName), AtomicString(components.m_namespace)).leakRef(); create 43 Source/core/dom/QualifiedName.h static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) create 675 Source/core/dom/Range.cpp fragment = DocumentFragment::create(*m_ownerDocument.get()); create 1230 Source/core/dom/Range.cpp return Range::create(*m_ownerDocument.get(), m_start.container(), m_start.offset(), m_end.container(), m_end.offset()); create 1617 Source/core/dom/Range.cpp RefPtrWillBeRawPtr<Range> range = Range::create(node->document()); create 1814 Source/core/dom/Range.cpp return ClientRectList::create(); create 1821 Source/core/dom/Range.cpp return ClientRectList::create(quads); create 1826 Source/core/dom/Range.cpp return ClientRect::create(boundingRect()); create 53 Source/core/dom/Range.h static PassRefPtrWillBeRawPtr<Range> create(Document&); create 54 Source/core/dom/Range.h static PassRefPtrWillBeRawPtr<Range> create(Document&, Node* startContainer, int startOffset, Node* endContainer, int endOffset); create 55 Source/core/dom/Range.h static PassRefPtrWillBeRawPtr<Range> create(Document&, const Position&, const Position&); create 37 Source/core/dom/RangeTest.cpp m_document = HTMLDocument::create(); create 38 Source/core/dom/RangeTest.cpp RefPtr<HTMLHtmlElement> html = HTMLHtmlElement::create(*m_document); create 39 Source/core/dom/RangeTest.cpp html->appendChild(HTMLBodyElement::create(*m_document)); create 53 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> range04 = Range::create(document(), oldText, 0, oldText, 4); create 54 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> range02 = Range::create(document(), oldText, 0, oldText, 2); create 55 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> range22 = Range::create(document(), oldText, 2, oldText, 2); create 56 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> range24 = Range::create(document(), oldText, 2, oldText, 4); create 96 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeOuterOutside = Range::create(document(), outer, 0, outer, 5); create 97 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeOuterInside = Range::create(document(), outer, 1, outer, 4); create 98 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeOuterSurroundingText = Range::create(document(), outer, 2, outer, 3); create 99 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeInnerLeft = Range::create(document(), innerLeft, 0, innerLeft, 1); create 100 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeInnerRight = Range::create(document(), innerRight, 0, innerRight, 1); create 101 Source/core/dom/RangeTest.cpp RefPtrWillBeRawPtr<Range> rangeFromTextToMiddleOfElement = Range::create(document(), oldText, 6, outer, 3); create 136 Source/core/dom/ScriptLoader.cpp m_element->dispatchEvent(Event::create(EventTypeNames::error)); create 40 Source/core/dom/ScriptLoader.h static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated); create 107 Source/core/dom/ScriptLoader.h inline PassOwnPtr<ScriptLoader> ScriptLoader::create(Element* element, bool createdByParser, bool isEvaluated) create 46 Source/core/dom/ScriptRunner.h static PassOwnPtr<ScriptRunner> create(Document* document) { return adoptPtr(new ScriptRunner(document)); } create 45 Source/core/dom/ScriptedAnimationController.h static PassRefPtr<ScriptedAnimationController> create(Document* document) create 63 Source/core/dom/SecurityContext.cpp RefPtr<SecurityOrigin> other = SecurityOrigin::create(url); create 167 Source/core/dom/SpaceSplitString.cpp m_data = SpaceSplitStringData::create(AtomicString(string)); create 32 Source/core/dom/SpaceSplitString.h static PassRefPtr<SpaceSplitStringData> create(const AtomicString&); create 69 Source/core/dom/StringCallback.cpp context->postTask(DispatchCallbackTask::create(callback, data)); create 152 Source/core/dom/StyleElement.cpp RefPtrWillBeRawPtr<MediaQuerySet> mediaQueries = MediaQuerySet::create(media()); create 73 Source/core/dom/StyleEngine.cpp , m_fontSelector(document.frame() ? CSSFontSelector::create(&document) : nullptr) create 233 Source/core/dom/StyleEngine.cpp m_authorStyleSheets.append(CSSStyleSheet::create(authorSheet, &m_document)); create 89 Source/core/dom/StyleEngine.h static PassOwnPtrWillBeRawPtr<StyleEngine> create(Document& document) { return adoptPtrWillBeNoop(new StyleEngine(document)); } create 36 Source/core/dom/TagCollection.h static PassRefPtr<TagCollection> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName) create 42 Source/core/dom/TagCollection.h static PassRefPtr<TagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName) create 61 Source/core/dom/TagCollection.h static PassRefPtr<HTMLTagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName) create 36 Source/core/dom/TemplateContentDocumentFragment.h static PassRefPtr<TemplateContentDocumentFragment> create(Document& document, Element* host) create 356 Source/core/dom/Text.cpp return create(document(), data); create 38 Source/core/dom/Text.h static PassRefPtr<Text> create(Document&, const String&); create 43 Source/core/dom/Touch.h static PassRefPtrWillBeRawPtr<Touch> create(LocalFrame* frame, EventTarget* target, create 39 Source/core/dom/TouchList.h static PassRefPtrWillBeRawPtr<TouchList> create() create 44 Source/core/dom/TouchList.h static PassRefPtrWillBeRawPtr<TouchList> create(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches) create 63 Source/core/dom/TreeScope.cpp , m_idTargetObserverRegistry(IdTargetObserverRegistry::create()) create 75 Source/core/dom/TreeScope.cpp , m_idTargetObserverRegistry(IdTargetObserverRegistry::create()) create 296 Source/core/dom/TreeScope.cpp m_selection = DOMSelection::create(this); create 40 Source/core/dom/TreeWalker.h static PassRefPtr<TreeWalker> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter) create 41 Source/core/dom/UserActionElementSet.h static PassOwnPtr<UserActionElementSet> create() { return adoptPtr(new UserActionElementSet()); } create 44 Source/core/dom/VisitedLinkState.h static PassOwnPtr<VisitedLinkState> create(const Document& document) create 36 Source/core/dom/XMLDocument.h static PassRefPtr<XMLDocument> create(const DocumentInit& initializer = DocumentInit()) create 49 Source/core/dom/custom/CustomElementCallbackQueue.h static PassOwnPtr<CustomElementCallbackQueue> create(PassRefPtr<Element>); create 44 Source/core/dom/custom/CustomElementDefinition.h static PassRefPtr<CustomElementDefinition> create(const CustomElementDescriptor&, PassRefPtr<CustomElementLifecycleCallbacks>); create 50 Source/core/dom/custom/CustomElementMicrotaskImportStep.h static PassOwnPtr<CustomElementMicrotaskImportStep> create(); create 48 Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<CustomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescriptor&); create 68 Source/core/dom/custom/CustomElementRegistrationContext.cpp element = HTMLElement::create(tagName, document); create 70 Source/core/dom/custom/CustomElementRegistrationContext.cpp element = SVGUnknownElement::create(tagName, document); create 73 Source/core/dom/custom/CustomElementRegistrationContext.cpp return Element::create(tagName, &document); create 53 Source/core/dom/custom/CustomElementRegistrationContext.h static PassRefPtr<CustomElementRegistrationContext> create(); create 103 Source/core/dom/custom/CustomElementRegistry.cpp RefPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks); create 77 Source/core/dom/custom/CustomElementScheduler.cpp OwnPtr<CustomElementMicrotaskResolutionStep> step = CustomElementMicrotaskResolutionStep::create(context, element, descriptor); create 86 Source/core/dom/custom/CustomElementScheduler.cpp OwnPtr<CustomElementMicrotaskImportStep> step = CustomElementMicrotaskImportStep::create(); create 106 Source/core/dom/custom/CustomElementScheduler.cpp it->value = CustomElementCallbackQueue::create(element); create 144 Source/core/dom/shadow/ElementShadow.cpp RefPtr<ShadowRoot> shadowRoot = ShadowRoot::create(shadowHost.document(), type); create 45 Source/core/dom/shadow/ElementShadow.h static PassOwnPtr<ElementShadow> create(); create 362 Source/core/dom/shadow/ShadowRoot.cpp m_shadowRootRareData->setStyleSheets(StyleSheetList::create(this)); create 58 Source/core/dom/shadow/ShadowRoot.h static PassRefPtr<ShadowRoot> create(Document& document, ShadowRootType type) create 35 Source/core/editing/AppendNodeCommand.h static PassRefPtr<AppendNodeCommand> create(PassRefPtr<ContainerNode> parent, PassRefPtr<Node> node) create 151 Source/core/editing/ApplyStyleCommand.cpp , m_style(EditingStyle::create()) create 258 Source/core/editing/ApplyStyleCommand.cpp RefPtrWillBeRawPtr<Range> startRange = Range::create(document(), firstPositionInNode(&scope), visibleStart.deepEquivalent().parentAnchoredEquivalent()); create 259 Source/core/editing/ApplyStyleCommand.cpp RefPtrWillBeRawPtr<Range> endRange = Range::create(document(), firstPositionInNode(&scope), visibleEnd.deepEquivalent().parentAnchoredEquivalent()); create 299 Source/core/editing/ApplyStyleCommand.cpp return MutableStylePropertySet::create(); create 466 Source/core/editing/ApplyStyleCommand.cpp int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(n).get(), CSSPropertyUnicodeBidi); create 483 Source/core/editing/ApplyStyleCommand.cpp && EditingStyle::create(highestAncestorWithUnicodeBidi, EditingStyle::AllProperties)->textDirection(highestAncestorDirection) create 516 Source/core/editing/ApplyStyleCommand.cpp int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(element).get(), CSSPropertyUnicodeBidi); create 542 Source/core/editing/ApplyStyleCommand.cpp if (n->isHTMLElement() && getIdentifierValue(CSSComputedStyleDeclaration::create(n).get(), CSSPropertyUnicodeBidi) == CSSValueEmbed) create 705 Source/core/editing/ApplyStyleCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(startNode->document(), start, end); create 1047 Source/core/editing/ApplyStyleCommand.cpp RefPtr<EditingStyle> styleToPushDown = EditingStyle::create(); create 1129 Source/core/editing/ApplyStyleCommand.cpp styleToPushDown = EditingStyle::create(); create 1505 Source/core/editing/ApplyStyleCommand.cpp RefPtr<CSSComputedStyleDeclaration> style = CSSComputedStyleDeclaration::create(node); create 51 Source/core/editing/ApplyStyleCommand.h static PassRefPtr<ApplyStyleCommand> create(Document& document, const EditingStyle* style, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault) create 55 Source/core/editing/ApplyStyleCommand.h static PassRefPtr<ApplyStyleCommand> create(Document& document, const EditingStyle* style, const Position& start, const Position& end, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault) create 59 Source/core/editing/ApplyStyleCommand.h static PassRefPtr<ApplyStyleCommand> create(PassRefPtr<Element> element, bool removeOnly = false, EditAction action = EditActionChangeAttributes) create 63 Source/core/editing/ApplyStyleCommand.h static PassRefPtr<ApplyStyleCommand> create(Document& document, const EditingStyle* style, IsInlineElementToRemoveFunction isInlineElementToRemoveFunction, EditAction action = EditActionChangeAttributes) create 35 Source/core/editing/BreakBlockquoteCommand.h static PassRefPtr<BreakBlockquoteCommand> create(Document& document) create 78 Source/core/editing/Caret.h static PassOwnPtr<DragCaretController> create(); create 209 Source/core/editing/CompositeEditCommand.cpp command->m_composition = EditCommandComposition::create(&document(), startingSelection(), endingSelection(), editingAction()); create 255 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(ApplyStyleCommand::create(document(), style, editingAction)); create 260 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(ApplyStyleCommand::create(document(), style, start, end, editingAction)); create 265 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(ApplyStyleCommand::create(element, false)); create 270 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(ApplyStyleCommand::create(element, true)); create 275 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(InsertParagraphSeparatorCommand::create(document(), useDefaultParagraphElement, pasteBlockqutoeIntoUnquotedArea)); create 297 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(InsertNodeBeforeCommand::create(insertChild, refChild, shouldAssumeContentIsAlwaysEditable)); create 349 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(AppendNodeCommand::create(parent, node)); create 368 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(RemoveNodeCommand::create(node, shouldAssumeContentIsAlwaysEditable)); create 373 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(RemoveNodePreservingChildrenCommand::create(node, shouldAssumeContentIsAlwaysEditable)); create 411 Source/core/editing/CompositeEditCommand.cpp RefPtr<ReplaceNodeWithSpanCommand> command = ReplaceNodeWithSpanCommand::create(node); create 428 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(SplitTextNodeCommand::create(node, offset)); create 433 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(SplitElementCommand::create(element, atChild)); create 445 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(MergeIdenticalElementsCommand::create(first, second)); create 450 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(WrapContentsInDummySpanCommand::create(element)); create 455 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(SplitTextNodeContainingElementCommand::create(text, offset)); create 461 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(InsertIntoTextNodeCommand::create(node, offset, text)); create 466 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(DeleteFromTextNodeCommand::create(node, offset, count)); create 472 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(DeleteFromTextNodeCommand::create(node, offset, count)); create 474 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(InsertIntoTextNodeCommand::create(node, offset, replacementText)); create 503 Source/core/editing/CompositeEditCommand.cpp copyMarkers(markerController.markersInRange(Range::create(document(), node.get(), offset, node.get(), offset + count).get(), DocumentMarker::AllMarkers()), markers); create 505 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> newRange = Range::create(document(), node.get(), offset, node.get(), offset + replacementText.length()); create 550 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup)); create 556 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup)); create 561 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(RemoveCSSPropertyCommand::create(document(), element, property)); create 571 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(SetNodeAttributeCommand::create(element, attribute, value)); create 1156 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> startRange = Range::create(document(), startOfParagraphToMove.deepEquivalent().parentAnchoredEquivalent(), visibleStart.deepEquivalent().parentAnchoredEquivalent()); create 1162 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> endRange = Range::create(document(), startOfParagraphToMove.deepEquivalent().parentAnchoredEquivalent(), visibleEnd.deepEquivalent().parentAnchoredEquivalent()); create 1179 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document(), startRangeCompliant.deprecatedNode(), startRangeCompliant.deprecatedEditingOffset(), endRangeCompliant.deprecatedNode(), endRangeCompliant.deprecatedEditingOffset()); create 1191 Source/core/editing/CompositeEditCommand.cpp styleInEmptyParagraph = EditingStyle::create(startOfParagraphToMove.deepEquivalent()); create 1223 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> startToDestinationRange(Range::create(document(), firstPositionInNode(document().documentElement()), destination.deepEquivalent().parentAnchoredEquivalent())); create 1231 Source/core/editing/CompositeEditCommand.cpp applyCommandToComposite(ReplaceSelectionCommand::create(document(), fragment, options)); create 1262 Source/core/editing/CompositeEditCommand.cpp RefPtr<EditingStyle> style = EditingStyle::create(endingSelection().start()); create 43 Source/core/editing/CompositeEditCommand.h static PassRefPtr<EditCommandComposition> create(Document*, const VisibleSelection&, const VisibleSelection&, EditAction); create 45 Source/core/editing/CreateLinkCommand.cpp RefPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document()); create 52 Source/core/editing/CreateLinkCommand.cpp RefPtr<Text> textNode = Text::create(document(), m_url); create 35 Source/core/editing/CreateLinkCommand.h static PassRefPtr<CreateLinkCommand> create(Document& document, const String& linkURL) create 37 Source/core/editing/DeleteFromTextNodeCommand.h static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count) create 281 Source/core/editing/DeleteSelectionCommand.cpp m_typingStyle = EditingStyle::create(m_selectionToDelete.start(), EditingStyle::EditingPropertiesInEffect); create 287 Source/core/editing/DeleteSelectionCommand.cpp m_deleteIntoBlockquoteStyle = EditingStyle::create(m_selectionToDelete.end()); create 37 Source/core/editing/DeleteSelectionCommand.h static PassRefPtr<DeleteSelectionCommand> create(Document& document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = false, bool sanitizeMarkup = true) create 41 Source/core/editing/DeleteSelectionCommand.h static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = false, bool sanitizeMarkup = true) create 140 Source/core/editing/EditingStyle.cpp return MutableStylePropertySet::create(); create 298 Source/core/editing/EditingStyle.cpp dummyStyle = MutableStylePropertySet::create(); create 448 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> computedStyleAtPosition = CSSComputedStyleDeclaration::create(node); create 482 Source/core/editing/EditingStyle.cpp m_mutableStyle = MutableStylePropertySet::create(); create 559 Source/core/editing/EditingStyle.cpp m_mutableStyle = MutableStylePropertySet::create(); create 573 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> copy = EditingStyle::create(); create 583 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> blockProperties = EditingStyle::create(); create 595 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> textDirection = EditingStyle::create(); create 596 Source/core/editing/EditingStyle.cpp textDirection->m_mutableStyle = MutableStylePropertySet::create(); create 619 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> parentStyle = editingStyleFromComputedStyle(CSSComputedStyleDeclaration::create(node->parentNode()), AllEditingProperties); create 620 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> nodeStyle = editingStyleFromComputedStyle(CSSComputedStyleDeclaration::create(node), AllEditingProperties); create 630 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> parentStyle = editingStyleFromComputedStyle(CSSComputedStyleDeclaration::create(node->parentNode()), AllEditingProperties); create 631 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> nodeStyle = editingStyleFromComputedStyle(CSSComputedStyleDeclaration::create(node), AllEditingProperties); create 701 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> nodeStyle = CSSComputedStyleDeclaration::create(node); create 778 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyFontWeight, CSSValueBold, HTMLNames::bTag)); create 779 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyFontWeight, CSSValueBold, HTMLNames::strongTag)); create 780 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyVerticalAlign, CSSValueSub, HTMLNames::subTag)); create 781 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyVerticalAlign, CSSValueSuper, HTMLNames::supTag)); create 782 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyFontStyle, CSSValueItalic, HTMLNames::iTag)); create 783 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLElementEquivalent::create(CSSPropertyFontStyle, CSSValueItalic, HTMLNames::emTag)); create 785 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLTextDecorationEquivalent::create(CSSValueUnderline, HTMLNames::uTag)); create 786 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLTextDecorationEquivalent::create(CSSValueLineThrough, HTMLNames::sTag)); create 787 Source/core/editing/EditingStyle.cpp HTMLElementEquivalents.append(HTMLTextDecorationEquivalent::create(CSSValueLineThrough, HTMLNames::strikeTag)); create 819 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalents.append(HTMLAttributeEquivalent::create(CSSPropertyColor, HTMLNames::fontTag, HTMLNames::colorAttr)); create 820 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalents.append(HTMLAttributeEquivalent::create(CSSPropertyFontFamily, HTMLNames::fontTag, HTMLNames::faceAttr)); create 821 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalents.append(HTMLFontSizeEquivalent::create()); create 823 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalents.append(HTMLAttributeEquivalent::create(CSSPropertyDirection, HTMLNames::dirAttr)); create 824 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalents.append(HTMLAttributeEquivalent::create(CSSPropertyUnicodeBidi, HTMLNames::dirAttr)); create 879 Source/core/editing/EditingStyle.cpp return !m_mutableStyle || getPropertiesNotIn(m_mutableStyle.get(), CSSComputedStyleDeclaration::create(node).get())->isEmpty(); create 939 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> editingStyleAtPosition = EditingStyle::create(position, EditingPropertiesInEffect); create 1024 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> styleFromRules = EditingStyle::create(); create 1050 Source/core/editing/EditingStyle.cpp wrappingStyle = EditingStyle::create(context, EditingStyle::EditingPropertiesInEffect); create 1063 Source/core/editing/EditingStyle.cpp wrappingStyle = EditingStyle::create(); create 1120 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 1149 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> computedStyleForElement = CSSComputedStyleDeclaration::create(element); create 1150 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> fromComputedStyle = MutableStylePropertySet::create(); create 1189 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> computedStyle = EditingStyle::create(context, EditingPropertiesInEffect); create 1221 Source/core/editing/EditingStyle.cpp m_mutableStyle = MutableStylePropertySet::create(); create 1254 Source/core/editing/EditingStyle.cpp RefPtr<EditingStyle> style = EditingStyle::create(element, EditingStyle::AllProperties); create 1287 Source/core/editing/EditingStyle.cpp Node* pastLast = Range::create(*end.document(), position.parentAnchoredEquivalent(), end.parentAnchoredEquivalent())->pastLastNode(); create 1292 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> style = CSSComputedStyleDeclaration::create(n); create 1321 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> style = CSSComputedStyleDeclaration::create(node); create 1636 Source/core/editing/EditingStyle.cpp RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDeclaration::create(ancestor); create 71 Source/core/editing/EditingStyle.h static PassRefPtr<EditingStyle> create() create 76 Source/core/editing/EditingStyle.h static PassRefPtr<EditingStyle> create(Node* node, PropertiesToInclude propertiesToInclude = OnlyEditingInheritableProperties) create 81 Source/core/editing/EditingStyle.h static PassRefPtr<EditingStyle> create(const Position& position, PropertiesToInclude propertiesToInclude = OnlyEditingInheritableProperties) create 86 Source/core/editing/EditingStyle.h static PassRefPtr<EditingStyle> create(const StylePropertySet* style) create 91 Source/core/editing/EditingStyle.h static PassRefPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value) create 342 Source/core/editing/Editor.cpp DeleteSelectionCommand::create(*m_frame.document(), smartDelete)->apply(); create 460 Source/core/editing/Editor.cpp RefPtrWillBeRawPtr<Clipboard> clipboard = Clipboard::create( create 464 Source/core/editing/Editor.cpp ? DataObject::create() create 467 Source/core/editing/Editor.cpp RefPtrWillBeRawPtr<Event> evt = ClipboardEvent::create(eventType, true, true, clipboard); create 499 Source/core/editing/Editor.cpp ReplaceSelectionCommand::create(*m_frame.document(), fragment, options, EditActionPaste)->apply(); create 576 Source/core/editing/Editor.cpp RemoveFormatCommand::create(*m_frame.document())->apply(); create 610 Source/core/editing/Editor.cpp ApplyStyleCommand::create(*m_frame.document(), EditingStyle::create(style).get(), editingAction)->apply(); create 621 Source/core/editing/Editor.cpp ApplyStyleCommand::create(*m_frame.document(), EditingStyle::create(style).get(), editingAction, ApplyStyleCommand::ForceBlockProperties)->apply(); create 642 Source/core/editing/Editor.cpp return EditingStyle::create(propertyID, value)->triStateOfStyle( create 648 Source/core/editing/Editor.cpp return EditingStyle::create(propertyID, value)->triStateOfStyle(m_frame.selection().selection()); create 666 Source/core/editing/Editor.cpp IndentOutdentCommand::create(*m_frame.document(), IndentOutdentCommand::Indent)->apply(); create 672 Source/core/editing/Editor.cpp IndentOutdentCommand::create(*m_frame.document(), IndentOutdentCommand::Outdent)->apply(); create 678 Source/core/editing/Editor.cpp startRoot->dispatchEvent(Event::create(EventTypeNames::webkitEditableContentChanged), IGNORE_EXCEPTION); create 680 Source/core/editing/Editor.cpp endRoot->dispatchEvent(Event::create(EventTypeNames::webkitEditableContentChanged), IGNORE_EXCEPTION); create 965 Source/core/editing/Editor.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 1091 Source/core/editing/Editor.cpp typingStyle = EditingStyle::create(style); create 1100 Source/core/editing/Editor.cpp ApplyStyleCommand::create(*m_frame.document(), blockStyle.get(), editingAction)->apply(); create 69 Source/core/editing/Editor.h static PassOwnPtr<Editor> create(LocalFrame&); create 121 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 128 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 155 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> newMutableStyle = MutableStylePropertySet::create(); create 172 Source/core/editing/EditorCommand.cpp RefPtr<EditingStyle> style = EditingStyle::create(propertyID, styleIsPresent ? offValue : onValue); create 178 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 197 Source/core/editing/EditorCommand.cpp ReplaceSelectionCommand::create(*frame.document(), fragment, ReplaceSelectionCommand::PreventNesting, EditActionUnspecified)->apply(); create 204 Source/core/editing/EditorCommand.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(*frame.document()); create 271 Source/core/editing/EditorCommand.cpp return Range::create(a->ownerDocument(), start->startContainer(), start->startOffset(), end->endContainer(), end->endOffset()); create 293 Source/core/editing/EditorCommand.cpp CreateLinkCommand::create(*frame.document(), value)->apply(); create 446 Source/core/editing/EditorCommand.cpp RefPtr<FormatBlockCommand> command = FormatBlockCommand::create(*frame.document(), qualifiedTagName); create 479 Source/core/editing/EditorCommand.cpp IndentOutdentCommand::create(*frame.document(), IndentOutdentCommand::Indent)->apply(); create 491 Source/core/editing/EditorCommand.cpp RefPtr<HTMLHRElement> rule = HTMLHRElement::create(*frame.document()); create 507 Source/core/editing/EditorCommand.cpp RefPtr<HTMLImageElement> image = HTMLImageElement::create(*frame.document()); create 546 Source/core/editing/EditorCommand.cpp InsertListCommand::create(*frame.document(), InsertListCommand::OrderedList)->apply(); create 572 Source/core/editing/EditorCommand.cpp InsertListCommand::create(*frame.document(), InsertListCommand::UnorderedList)->apply(); create 598 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 607 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 615 Source/core/editing/EditorCommand.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 921 Source/core/editing/EditorCommand.cpp IndentOutdentCommand::create(*frame.document(), IndentOutdentCommand::Outdent)->apply(); create 1119 Source/core/editing/EditorCommand.cpp UnlinkCommand::create(*frame.document())->apply(); create 73 Source/core/editing/FormatBlockCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document(), start, endOfSelection); create 43 Source/core/editing/FormatBlockCommand.h static PassRefPtr<FormatBlockCommand> create(Document& document, const QualifiedName& tagName) create 295 Source/core/editing/FrameSelection.cpp m_frame->domWindow()->enqueueDocumentEvent(Event::create(EventTypeNames::selectionchange)); create 138 Source/core/editing/IndentOutdentCommand.cpp applyCommandToComposite(InsertListCommand::create(document(), InsertListCommand::OrderedList)); create 142 Source/core/editing/IndentOutdentCommand.cpp applyCommandToComposite(InsertListCommand::create(document(), InsertListCommand::UnorderedList)); create 37 Source/core/editing/IndentOutdentCommand.h static PassRefPtr<IndentOutdentCommand> create(Document& document, EIndentType type) create 203 Source/core/editing/InputMethodController.cpp RefPtrWillBeRawPtr<CompositionEvent> event = CompositionEvent::create(EventTypeNames::compositionend, m_frame.domWindow(), text, underlines); create 262 Source/core/editing/InputMethodController.cpp target->dispatchEvent(CompositionEvent::create(EventTypeNames::compositionstart, m_frame.domWindow(), m_frame.selectedText(), underlines)); create 263 Source/core/editing/InputMethodController.cpp event = CompositionEvent::create(EventTypeNames::compositionupdate, m_frame.domWindow(), text, underlines); create 267 Source/core/editing/InputMethodController.cpp event = CompositionEvent::create(EventTypeNames::compositionupdate, m_frame.domWindow(), text, underlines); create 269 Source/core/editing/InputMethodController.cpp event = CompositionEvent::create(EventTypeNames::compositionend, m_frame.domWindow(), text, underlines); create 312 Source/core/editing/InputMethodController.cpp RefPtrWillBeRawPtr<Range> selectedRange = Range::create(baseNode->document(), baseNode, start, baseNode, end); create 361 Source/core/editing/InputMethodController.cpp return Range::create(m_compositionNode->document(), m_compositionNode.get(), start, m_compositionNode.get(), end); create 371 Source/core/editing/InputMethodController.cpp return PlainTextRange::create(*editable, *range.get()); create 49 Source/core/editing/InputMethodController.h static PassOwnPtr<InputMethodController> create(LocalFrame&); create 37 Source/core/editing/InsertIntoTextNodeCommand.h static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text) create 35 Source/core/editing/InsertLineBreakCommand.h static PassRefPtr<InsertLineBreakCommand> create(Document& document) create 39 Source/core/editing/InsertListCommand.h static PassRefPtr<InsertListCommand> create(Document& document, Type listType) create 35 Source/core/editing/InsertNodeBeforeCommand.h static PassRefPtr<InsertNodeBeforeCommand> create(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore, create 83 Source/core/editing/InsertParagraphSeparatorCommand.cpp m_style = EditingStyle::create(pos); create 177 Source/core/editing/InsertParagraphSeparatorCommand.cpp applyCommandToComposite(InsertLineBreakCommand::create(document())); create 37 Source/core/editing/InsertParagraphSeparatorCommand.h static PassRefPtr<InsertParagraphSeparatorCommand> create(Document& document, bool useDefaultParagraphElement = false, bool pasteBlockqutoeIntoUnquotedArea = false) create 40 Source/core/editing/InsertTextCommand.h static PassRefPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false, create 35 Source/core/editing/MergeIdenticalElementsCommand.h static PassRefPtr<MergeIdenticalElementsCommand> create(PassRefPtr<Element> element1, PassRefPtr<Element> element2) create 78 Source/core/editing/MoveSelectionCommand.cpp applyCommandToComposite(ReplaceSelectionCommand::create(document(), m_fragment, options)); create 37 Source/core/editing/MoveSelectionCommand.h static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false) create 174 Source/core/editing/PlainTextRange.cpp RefPtrWillBeRawPtr<Range> testRange = Range::create(scope.document(), const_cast<Node*>(&scope), 0, range.startContainer(), range.startOffset()); create 55 Source/core/editing/PlainTextRange.h static PlainTextRange create(const Node& scope, const Range&); create 38 Source/core/editing/RemoveCSSPropertyCommand.h static PassRefPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtr<Element> element, CSSPropertyID property) create 90 Source/core/editing/RemoveFormatCommand.cpp RefPtr<EditingStyle> defaultStyle = EditingStyle::create(root); create 96 Source/core/editing/RemoveFormatCommand.cpp applyCommandToComposite(ApplyStyleCommand::create(document(), defaultStyle.get(), isElementForRemoveFormatCommand, editingAction())); create 35 Source/core/editing/RemoveFormatCommand.h static PassRefPtr<RemoveFormatCommand> create(Document& document) create 35 Source/core/editing/RemoveNodeCommand.h static PassRefPtr<RemoveNodeCommand> create(PassRefPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) create 35 Source/core/editing/RemoveNodePreservingChildrenCommand.h static PassRefPtr<RemoveNodePreservingChildrenCommand> create(PassRefPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) create 43 Source/core/editing/ReplaceNodeWithSpanCommand.h static PassRefPtr<ReplaceNodeWithSpanCommand> create(PassRefPtr<HTMLElement> element) create 176 Source/core/editing/ReplaceSelectionCommand.cpp RefPtrWillBeRawPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text); create 476 Source/core/editing/ReplaceSelectionCommand.cpp RefPtr<EditingStyle> newInlineStyle = EditingStyle::create(inlineStyle); create 731 Source/core/editing/ReplaceSelectionCommand.cpp RefPtr<EditingStyle> styleAtInsertionPos = EditingStyle::create(insertionPos.parentAnchoredEquivalent()); create 769 Source/core/editing/ReplaceSelectionCommand.cpp RefPtr<EditingStyle> style = EditingStyle::create(wrappingStyleSpan->inlineStyle()); create 903 Source/core/editing/ReplaceSelectionCommand.cpp m_insertionStyle = EditingStyle::create(selection.start()); create 971 Source/core/editing/ReplaceSelectionCommand.cpp applyCommandToComposite(BreakBlockquoteCommand::create(document())); create 1142 Source/core/editing/ReplaceSelectionCommand.cpp applyCommandToComposite(SimplifyMarkupCommand::create(document(), insertedNodes.firstNodeInserted(), insertedNodes.pastLastLeaf())); create 50 Source/core/editing/ReplaceSelectionCommand.h static PassRefPtr<ReplaceSelectionCommand> create(Document& document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste) create 36 Source/core/editing/SetNodeAttributeCommand.h static PassRefPtr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value) create 35 Source/core/editing/SimplifyMarkupCommand.h static PassRefPtr<SimplifyMarkupCommand> create(Document& document, Node* firstNode, Node* nodeAfterLast) create 48 Source/core/editing/SpellCheckRequester.h static PassRefPtr<SpellCheckRequest> create(TextCheckingTypeMask, TextCheckingProcessType, PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, int requestNumber = 0); create 474 Source/core/editing/SpellChecker.cpp RefPtrWillBeRawPtr<Range> rangeToCheck = Range::create(*m_frame.document(), firstPositionInNode(node), lastPositionInNode(node)); create 516 Source/core/editing/SpellChecker.cpp RefPtr<SpellCheckRequest> request = SpellCheckRequest::create(resolveTextCheckingTypeMask(textCheckingOptions), TextCheckingProcessBatch, checkRange, paragraphRange, requestNumber); create 692 Source/core/editing/SpellChecker.cpp RefPtrWillBeRawPtr<Range> wordRange = Range::create(*document, startOfFirstWord.deepEquivalent(), endOfLastWord.deepEquivalent()); create 850 Source/core/editing/SpellChecker.cpp m_spellCheckRequester->requestCheckingFor(SpellCheckRequest::create(TextCheckingTypeSpelling | TextCheckingTypeGrammar, TextCheckingProcessBatch, rangeToCheck, rangeToCheck)); create 48 Source/core/editing/SpellChecker.h static PassOwnPtr<SpellChecker> create(LocalFrame&); create 35 Source/core/editing/SplitElementCommand.h static PassRefPtr<SplitElementCommand> create(PassRefPtr<Element> element, PassRefPtr<Node> splitPointChild) create 63 Source/core/editing/SplitTextNodeCommand.cpp m_text1 = Text::create(document(), prefixText); create 37 Source/core/editing/SplitTextNodeCommand.h static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset) create 35 Source/core/editing/SplitTextNodeContainingElementCommand.h static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset) create 57 Source/core/editing/SurroundingText.cpp if (!forwardRange || !Range::create(*document, position, forwardRange->startPosition())->text().length()) { create 72 Source/core/editing/SurroundingText.cpp m_positionOffsetInContent = Range::create(*document, backwardsRange->endPosition(), position)->text().length(); create 73 Source/core/editing/SurroundingText.cpp m_contentRange = Range::create(*document, backwardsRange->endPosition(), forwardRange->startPosition()); create 97 Source/core/editing/SurroundingText.cpp return Range::create(*start.document(), start, end); create 185 Source/core/editing/TextCheckingHelper.cpp m_offsetAsRange = Range::create(paragraphRange()->startContainer()->document(), paragraphRange()->startPosition(), checkingRange()->startPosition()); create 314 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> offsetAsRange = Range::create(paragraphRange->startContainer()->document(), paragraphRange->startPosition(), m_range->startPosition()); create 328 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> endOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), paragraphRange->startPosition(), m_range->endPosition()); create 381 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), m_range->startPosition(), paragraphRange->startPosition()); create 392 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), m_range->startPosition(), paragraphRange->startPosition()); create 66 Source/core/editing/TextInsertionBaseCommand.cpp RefPtrWillBeRawPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text); create 80 Source/core/editing/TextInsertionBaseCommand.cpp RefPtrWillBeRawPtr<BeforeTextInsertedEvent> event = BeforeTextInsertedEvent::create(String("\n")); create 1162 Source/core/editing/TextIterator.cpp return Range::create(m_positionNode->document(), m_positionNode, m_positionStartOffset, m_positionNode, m_positionEndOffset); create 1167 Source/core/editing/TextIterator.cpp return Range::create(m_endContainer->document(), m_endContainer, m_endOffset, m_endContainer, m_endOffset); create 1473 Source/core/editing/TextIterator.cpp return Range::create(m_positionNode->document(), m_positionNode, m_positionStartOffset, m_positionNode, m_positionEndOffset); create 1475 Source/core/editing/TextIterator.cpp return Range::create(m_startNode->document(), m_startNode, m_startOffset, m_startNode, m_startOffset); create 1575 Source/core/editing/TextIterator.cpp return Range::create(start->startContainer()->document(), create 2160 Source/core/editing/TextIterator.cpp return Range::create(*start.document(), collapseTo, collapseTo); create 77 Source/core/editing/TextIteratorTest.cpp m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600)); create 108 Source/core/editing/TextIteratorTest.cpp RefPtrWillBeRawPtr<Range> range(Range::create(document())); create 109 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, DeleteSelection, "", options)->apply(); create 128 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, DeleteKey, "", options, granularity)->apply(); create 144 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, ForwardDeleteKey, "", options, granularity)->apply(); create 195 Source/core/editing/TypingCommand.cpp RefPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, compositionType); create 207 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, InsertLineBreak, "", options)->apply(); create 217 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, InsertParagraphSeparatorInQuotedContent)->apply(); create 228 Source/core/editing/TypingCommand.cpp TypingCommand::create(document, InsertParagraphSeparator, "", options)->apply(); create 341 Source/core/editing/TypingCommand.cpp RefPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text, selectInsertedText, create 354 Source/core/editing/TypingCommand.cpp applyCommandToComposite(InsertLineBreakCommand::create(document())); create 363 Source/core/editing/TypingCommand.cpp applyCommandToComposite(InsertParagraphSeparatorCommand::create(document())); create 376 Source/core/editing/TypingCommand.cpp applyCommandToComposite(BreakBlockquoteCommand::create(document())); create 81 Source/core/editing/TypingCommand.h static PassRefPtr<TypingCommand> create(Document& document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity) create 86 Source/core/editing/TypingCommand.h static PassRefPtr<TypingCommand> create(Document& document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType) create 44 Source/core/editing/UndoStack.h static PassOwnPtr<UndoStack> create(); create 44 Source/core/editing/UnlinkCommand.cpp removeStyledElement(HTMLAnchorElement::create(document())); create 35 Source/core/editing/UnlinkCommand.h static PassRefPtr<UnlinkCommand> create(Document& document) create 733 Source/core/editing/VisiblePosition.cpp return Range::create(s.containerNode()->document(), s.containerNode(), s.offsetInContainerNode(), e.containerNode(), e.offsetInContainerNode()); create 190 Source/core/editing/VisibleSelection.cpp return Range::create(*start.document(), start, end); create 246 Source/core/editing/VisibleSelection.cpp return Range::create(*s.document(), s, e); create 278 Source/core/editing/VisibleSelection.cpp RefPtrWillBeRawPtr<Range> searchRange(Range::create(d)); create 460 Source/core/editing/VisibleUnits.cpp RefPtrWillBeRawPtr<Range> searchRange = Range::create(d); create 37 Source/core/editing/WrapContentsInDummySpanCommand.h static PassRefPtr<WrapContentsInDummySpanCommand> create(PassRefPtr<Element> element) create 530 Source/core/editing/htmlediting.cpp RefPtrWillBeRawPtr<Range> selectedRange = Range::create(document); create 785 Source/core/editing/htmlediting.cpp return HTMLDivElement::create(document); create 787 Source/core/editing/htmlediting.cpp return HTMLParagraphElement::create(document); create 796 Source/core/editing/htmlediting.cpp return HTMLBRElement::create(document); create 801 Source/core/editing/htmlediting.cpp return HTMLOListElement::create(document); create 806 Source/core/editing/htmlediting.cpp return HTMLUListElement::create(document); create 811 Source/core/editing/htmlediting.cpp return HTMLLIElement::create(document); create 1017 Source/core/editing/htmlediting.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document, firstPositionInNode(scope.get()), p.parentAnchoredEquivalent()); create 259 Source/core/editing/markup.cpp return plainText(Range::create(node.document(), start, end).get()); create 299 Source/core/editing/markup.cpp newInlineStyle = EditingStyle::create(); create 486 Source/core/editing/markup.cpp RefPtr<EditingStyle> style = EditingStyle::create(element->inlineStyle()); create 641 Source/core/editing/markup.cpp RefPtr<HTMLBodyElement> fakeBody = HTMLBodyElement::create(document); create 642 Source/core/editing/markup.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(document); create 704 Source/core/editing/markup.cpp RefPtr<Document> taggedDocument = Document::create(); create 716 Source/core/editing/markup.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*taggedDocument.get(), create 726 Source/core/editing/markup.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(document); create 917 Source/core/editing/markup.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(document); create 941 Source/core/editing/markup.cpp RefPtr<HTMLBodyElement> fakeBody = HTMLBodyElement::create(outputDoc); create 944 Source/core/editing/markup.cpp fragment->parserAppendChild(Text::create(outputDoc, sourceString)); create 1048 Source/core/editing/markup.cpp RefPtr<Text> textNode = Text::create(containerNode->document(), text); create 21 Source/core/events/AnimationPlayerEvent.h static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create() create 25 Source/core/events/AnimationPlayerEvent.h static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, double currentTime, double timelineTime) create 29 Source/core/events/AnimationPlayerEvent.h static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, const AnimationPlayerEventInit& initializer) create 30 Source/core/events/ApplicationCacheErrorEvent.h static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create() create 35 Source/core/events/ApplicationCacheErrorEvent.h static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(blink::WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message) create 40 Source/core/events/ApplicationCacheErrorEvent.h static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer) create 38 Source/core/events/AutocompleteErrorEvent.h static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create() create 43 Source/core/events/AutocompleteErrorEvent.h static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& reason) create 48 Source/core/events/AutocompleteErrorEvent.h static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer) create 37 Source/core/events/BeforeTextInsertedEvent.h static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text) create 36 Source/core/events/BeforeUnloadEvent.h static PassRefPtrWillBeRawPtr<BeforeUnloadEvent> create() create 37 Source/core/events/ClipboardEvent.h static PassRefPtrWillBeRawPtr<ClipboardEvent> create(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<Clipboard> clipboardArg) create 43 Source/core/events/CompositionEvent.h static PassRefPtrWillBeRawPtr<CompositionEvent> create() create 48 Source/core/events/CompositionEvent.h static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data, const Vector<CompositionUnderline>& underlines) create 53 Source/core/events/CompositionEvent.h static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& type, const CompositionEventInit& initializer) create 41 Source/core/events/CustomEvent.h static PassRefPtrWillBeRawPtr<CustomEvent> create() create 46 Source/core/events/CustomEvent.h static PassRefPtrWillBeRawPtr<CustomEvent> create(const AtomicString& type, const CustomEventInit& initializer) create 46 Source/core/events/DOMWindowEventQueue.h static PassRefPtr<DOMWindowEventQueue> create(ExecutionContext*); create 52 Source/core/events/ErrorEvent.h static PassRefPtrWillBeRawPtr<ErrorEvent> create() create 56 Source/core/events/ErrorEvent.h static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world) create 60 Source/core/events/ErrorEvent.h static PassRefPtrWillBeRawPtr<ErrorEvent> create(const AtomicString& type, const ErrorEventInit& initializer) create 77 Source/core/events/Event.h static PassRefPtrWillBeRawPtr<Event> create() create 85 Source/core/events/Event.h static PassRefPtrWillBeRawPtr<Event> create(const AtomicString& type) create 102 Source/core/events/Event.h static PassRefPtrWillBeRawPtr<Event> create(const AtomicString& type, const EventInit& initializer) create 47 Source/core/events/EventDispatchMediator.h static PassRefPtr<EventDispatchMediator> create(PassRefPtrWillBeRawPtr<Event>); create 86 Source/core/events/EventDispatcher.cpp EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch(); create 89 Source/core/events/EventDispatcher.cpp EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch(); create 92 Source/core/events/EventDispatcher.cpp EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch(); create 96 Source/core/events/EventDispatcher.cpp EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch(); create 39 Source/core/events/EventFactory.h static PassRefPtrWillBeRawPtr<Event> create(const String& eventType); create 197 Source/core/events/EventPath.cpp TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(treeScope, TreeScopeEventContext::create(*treeScope)); create 227 Source/core/events/EventPath.cpp TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(¤tTreeScope, TreeScopeEventContext::create(currentTreeScope)); create 44 Source/core/events/FocusEvent.h static PassRefPtrWillBeRawPtr<FocusEvent> create() create 49 Source/core/events/FocusEvent.h static PassRefPtrWillBeRawPtr<FocusEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, EventTarget* relatedTarget) create 54 Source/core/events/FocusEvent.h static PassRefPtrWillBeRawPtr<FocusEvent> create(const AtomicString& type, const FocusEventInit& initializer) create 80 Source/core/events/FocusEvent.h static PassRefPtr<FocusEventDispatchMediator> create(PassRefPtrWillBeRawPtr<FocusEvent>); create 89 Source/core/events/FocusEvent.h static PassRefPtr<BlurEventDispatchMediator> create(PassRefPtrWillBeRawPtr<FocusEvent>); create 98 Source/core/events/FocusEvent.h static PassRefPtr<FocusInEventDispatchMediator> create(PassRefPtrWillBeRawPtr<FocusEvent>); create 107 Source/core/events/FocusEvent.h static PassRefPtr<FocusOutEventDispatchMediator> create(PassRefPtrWillBeRawPtr<FocusEvent>); create 42 Source/core/events/GenericEventQueue.h static PassOwnPtr<GenericEventQueue> create(EventTarget*); create 39 Source/core/events/GestureEvent.h static PassRefPtrWillBeRawPtr<GestureEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const PlatformGestureEvent&); create 60 Source/core/events/GestureEvent.h static PassRefPtr<GestureEventDispatchMediator> create(PassRefPtrWillBeRawPtr<GestureEvent> gestureEvent) create 39 Source/core/events/HashChangeEvent.h static PassRefPtrWillBeRawPtr<HashChangeEvent> create() create 44 Source/core/events/HashChangeEvent.h static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) create 49 Source/core/events/HashChangeEvent.h static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer) create 57 Source/core/events/KeyboardEvent.h static PassRefPtrWillBeRawPtr<KeyboardEvent> create() create 62 Source/core/events/KeyboardEvent.h static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view) create 67 Source/core/events/KeyboardEvent.h static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, const KeyboardEventInit& initializer) create 72 Source/core/events/KeyboardEvent.h static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, create 122 Source/core/events/KeyboardEvent.h static PassRefPtr<KeyboardEventDispatchMediator> create(PassRefPtrWillBeRawPtr<KeyboardEvent>); create 52 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create() create 56 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, const String& origin = String(), const String& lastEventId = String(), PassRefPtr<EventTarget> source = nullptr) create 60 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, PassRefPtr<SerializedScriptValue> data, const String& origin = String(), const String& lastEventId = String(), PassRefPtr<EventTarget> source = nullptr) create 64 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(PassOwnPtr<MessagePortChannelArray> channels, PassRefPtr<SerializedScriptValue> data, const String& origin = String(), const String& lastEventId = String(), PassRefPtr<EventTarget> source = nullptr) create 68 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(const String& data, const String& origin = String()) create 72 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(PassRefPtrWillBeRawPtr<Blob> data, const String& origin = String()) create 76 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(PassRefPtr<ArrayBuffer> data, const String& origin = String()) create 80 Source/core/events/MessageEvent.h static PassRefPtrWillBeRawPtr<MessageEvent> create(const AtomicString& type, const MessageEventInit& initializer, ExceptionState&); create 60 Source/core/events/MouseEvent.cpp return MouseEvent::create( create 275 Source/core/events/MouseEvent.cpp RefPtrWillBeRawPtr<MouseEvent> doubleClickEvent = MouseEvent::create(); create 282 Source/core/events/MouseEvent.cpp EventDispatcher::dispatchEvent(dispatcher->node(), MouseEventDispatchMediator::create(doubleClickEvent)); create 53 Source/core/events/MouseEvent.h static PassRefPtrWillBeRawPtr<MouseEvent> create() create 58 Source/core/events/MouseEvent.h static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, create 64 Source/core/events/MouseEvent.h static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtr<Node> relatedTarget); create 66 Source/core/events/MouseEvent.h static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& eventType, const MouseEventInit&); create 116 Source/core/events/MouseEvent.h static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent); create 128 Source/core/events/MouseEvent.h static PassRefPtr<MouseEventDispatchMediator> create(PassRefPtrWillBeRawPtr<MouseEvent>, MouseEventType = NonSyntheticMouseEvent); create 42 Source/core/events/MutationEvent.h static PassRefPtrWillBeRawPtr<MutationEvent> create() create 47 Source/core/events/MutationEvent.h static PassRefPtrWillBeRawPtr<MutationEvent> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = nullptr, create 49 Source/core/events/OverflowEvent.h static PassRefPtrWillBeRawPtr<OverflowEvent> create() create 53 Source/core/events/OverflowEvent.h static PassRefPtrWillBeRawPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) create 57 Source/core/events/OverflowEvent.h static PassRefPtrWillBeRawPtr<OverflowEvent> create(const AtomicString& type, const OverflowEventInit& initializer) create 41 Source/core/events/PageTransitionEvent.h static PassRefPtrWillBeRawPtr<PageTransitionEvent> create() create 45 Source/core/events/PageTransitionEvent.h static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, bool persisted) create 49 Source/core/events/PageTransitionEvent.h static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, const PageTransitionEventInit& initializer) create 43 Source/core/events/PopStateEvent.h static PassRefPtrWillBeRawPtr<PopStateEvent> create(); create 44 Source/core/events/PopStateEvent.h static PassRefPtrWillBeRawPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue>, PassRefPtrWillBeRawPtr<History>); create 45 Source/core/events/PopStateEvent.h static PassRefPtrWillBeRawPtr<PopStateEvent> create(const AtomicString&, const PopStateEventInit&); create 43 Source/core/events/ProgressEvent.h static PassRefPtrWillBeRawPtr<ProgressEvent> create() create 47 Source/core/events/ProgressEvent.h static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) create 51 Source/core/events/ProgressEvent.h static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer) create 47 Source/core/events/ResourceProgressEvent.h static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create() create 51 Source/core/events/ResourceProgressEvent.h static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url) create 51 Source/core/events/SecurityPolicyViolationEvent.h static PassRefPtrWillBeRawPtr<SecurityPolicyViolationEvent> create() create 56 Source/core/events/SecurityPolicyViolationEvent.h static PassRefPtrWillBeRawPtr<SecurityPolicyViolationEvent> create(const AtomicString& type, const SecurityPolicyViolationEventInit& initializer) create 40 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> create(); create 41 Source/core/events/TextEvent.h static PassRefPtrWillBeRawPtr<TextEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboard); create 40 Source/core/events/TouchEvent.h static PassRefPtrWillBeRawPtr<TouchEvent> create() create 44 Source/core/events/TouchEvent.h static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, create 90 Source/core/events/TouchEvent.h static PassRefPtr<TouchEventDispatchMediator> create(PassRefPtrWillBeRawPtr<TouchEvent>); create 42 Source/core/events/TouchEventContext.cpp : m_touches(TouchList::create()) create 43 Source/core/events/TouchEventContext.cpp , m_targetTouches(TouchList::create()) create 44 Source/core/events/TouchEventContext.cpp , m_changedTouches(TouchList::create()) create 43 Source/core/events/TouchEventContext.h static PassRefPtrWillBeRawPtr<TouchEventContext> create(); create 44 Source/core/events/TransitionEvent.h static PassRefPtrWillBeRawPtr<TransitionEvent> create() create 48 Source/core/events/TransitionEvent.h static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) create 52 Source/core/events/TransitionEvent.h static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& type, const TransitionEventInit& initializer) create 55 Source/core/events/TreeScopeEventContext.cpp m_touchEventContext = TouchEventContext::create(); create 48 Source/core/events/TreeScopeEventContext.h static PassRefPtr<TreeScopeEventContext> create(TreeScope&); create 44 Source/core/events/UIEvent.h static PassRefPtrWillBeRawPtr<UIEvent> create() create 48 Source/core/events/UIEvent.h static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail) create 52 Source/core/events/UIEvent.h static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, const UIEventInit& initializer) create 45 Source/core/events/WebKitAnimationEvent.h static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create() create 49 Source/core/events/WebKitAnimationEvent.h static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) create 53 Source/core/events/WebKitAnimationEvent.h static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create(const AtomicString& type, const WebKitAnimationEventInit& initializer) create 148 Source/core/events/WheelEvent.cpp setEvent(WheelEvent::create(FloatPoint(event.wheelTicksX(), event.wheelTicksY()), FloatPoint(event.deltaX(), event.deltaY()), create 57 Source/core/events/WheelEvent.h static PassRefPtrWillBeRawPtr<WheelEvent> create() create 62 Source/core/events/WheelEvent.h static PassRefPtrWillBeRawPtr<WheelEvent> create(const AtomicString& type, const WheelEventInit& initializer) create 67 Source/core/events/WheelEvent.h static PassRefPtrWillBeRawPtr<WheelEvent> create(const FloatPoint& wheelTicks, create 121 Source/core/events/WheelEvent.h static PassRefPtr<WheelEventDispatchMediator> create(const PlatformWheelEvent&, PassRefPtrWillBeRawPtr<AbstractView>); create 43 Source/core/fetch/CSSStyleSheetResource.cpp , m_decoder(TextResourceDecoder::create("text/css", charset)) create 46 Source/core/fetch/CachedMetadata.h static PassRefPtr<CachedMetadata> create(unsigned dataTypeID, const char* data, size_t size) create 126 Source/core/fetch/CachingCorrectnessTest.cpp m_documentLoader = DocumentLoader::create(0, ResourceRequest(kDocumentURL), SubstituteData()); create 127 Source/core/fetch/CachingCorrectnessTest.cpp m_document = HTMLDocument::create(); create 128 Source/core/fetch/CachingCorrectnessTest.cpp m_fetcher = ResourceFetcher::create(m_documentLoader.get()); create 248 Source/core/fetch/CrossOriginAccessControl.cpp RefPtr<SecurityOrigin> originalOrigin = SecurityOrigin::create(originalURL); create 258 Source/core/fetch/CrossOriginAccessControl.cpp const String& originalOrigin = SecurityOrigin::create(originalURL)->toString(); create 35 Source/core/fetch/DocumentResource.cpp , m_decoder(TextResourceDecoder::create("application/xml")) create 72 Source/core/fetch/DocumentResource.cpp return SVGDocument::create(DocumentInit(url)); create 93 Source/core/fetch/FontResource.cpp m_fontData = FontCustomPlatformData::create(m_data.get()); create 115 Source/core/fetch/FontResource.cpp m_externalSVGDocument = SVGDocument::create(); create 117 Source/core/fetch/FontResource.cpp OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml"); create 317 Source/core/fetch/ImageResource.cpp RefPtr<SVGImage> svgImage = SVGImage::create(this); create 318 Source/core/fetch/ImageResource.cpp m_svgImageCache = SVGImageCache::create(svgImage.get()); create 321 Source/core/fetch/ImageResource.cpp m_image = BitmapImage::create(this); create 108 Source/core/fetch/ImageResourceTest.cpp OwnPtr<DummyPageHolder> dummyPageHolder = DummyPageHolder::create(); create 109 Source/core/fetch/ImageResourceTest.cpp RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(&dummyPageHolder->frame(), ResourceRequest(testURL), SubstituteData()); create 113 Source/core/fetch/MemoryCache.cpp m_resources.set(resource->url(), MemoryCacheEntry::create(resource)); create 71 Source/core/fetch/MemoryCache.h static PassOwnPtr<MemoryCacheEntry> create(Resource* resource) { return adoptPtr(new MemoryCacheEntry(resource)); } create 188 Source/core/fetch/Resource.cpp m_loader = ResourceLoader::create(fetcher, this, request, options); create 401 Source/core/fetch/Resource.cpp m_cachedMetadata = CachedMetadata::create(dataTypeID, data, size); create 568 Source/core/fetch/ResourceFetcher.cpp frame()->document()->addConsoleMessage(JSMessageSource, ErrorMessageLevel, resourceType + " from origin '" + SecurityOrigin::create(url)->toString() + "' has been blocked from loading by Cross-Origin Resource Sharing policy: " + errorDescription); create 697 Source/core/fetch/ResourceFetcher.cpp RefPtr<ResourceTimingInfo> info = ResourceTimingInfo::create(request.options().initiatorInfo.name, monotonicallyIncreasingTime()); create 832 Source/core/fetch/ResourceFetcher.cpp RefPtr<ResourceTimingInfo> info = ResourceTimingInfo::create(request.options().initiatorInfo.name, monotonicallyIncreasingTime()); create 78 Source/core/fetch/ResourceFetcher.h static PassRefPtr<ResourceFetcher> create(DocumentLoader* documentLoader) { return adoptRef(new ResourceFetcher(documentLoader)); } create 54 Source/core/fetch/ResourceFetcherTest.cpp RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(0, ResourceRequest(testURL), SubstituteData()); create 55 Source/core/fetch/ResourceFetcherTest.cpp RefPtr<HTMLDocument> document = HTMLDocument::create(); create 53 Source/core/fetch/ResourceLoader.h static PassRefPtr<ResourceLoader> create(ResourceLoaderHost*, Resource*, const ResourceRequest&, const ResourceLoaderOptions&); create 39 Source/core/fetch/ScriptResource.cpp , m_decoder(TextResourceDecoder::create("application/javascript", charset)) create 41 Source/core/fetch/ShaderResource.cpp , m_decoder(TextResourceDecoder::create("application/shader")) create 41 Source/core/fetch/XSLStyleSheetResource.cpp , m_decoder(TextResourceDecoder::create("text/xsl")) create 120 Source/core/fileapi/Blob.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 123 Source/core/fileapi/Blob.cpp return Blob::create(BlobDataHandle::create(blobData.release(), length)); create 142 Source/core/fileapi/Blob.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 144 Source/core/fileapi/Blob.cpp m_blobDataHandle = BlobDataHandle::create(blobData.release(), 0); create 50 Source/core/fileapi/Blob.h static PassRefPtrWillBeRawPtr<Blob> create() create 52 Source/core/fileapi/Blob.h return adoptRefWillBeNoop(new Blob(BlobDataHandle::create())); create 55 Source/core/fileapi/Blob.h static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle) create 57 Source/core/fileapi/File.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 75 Source/core/fileapi/File.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 83 Source/core/fileapi/File.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 97 Source/core/fileapi/File.cpp : Blob(BlobDataHandle::create(createBlobDataForFile(path, policy), -1)) create 108 Source/core/fileapi/File.cpp : Blob(BlobDataHandle::create(createBlobDataForFileWithName(path, name, policy), -1)) create 141 Source/core/fileapi/File.cpp : Blob(BlobDataHandle::create(createBlobDataForFileWithMetadata(name, metadata), metadata.length)) create 152 Source/core/fileapi/File.cpp : Blob(BlobDataHandle::create(createBlobDataForFileSystemURL(fileSystemURL, metadata), metadata.length)) create 203 Source/core/fileapi/File.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 211 Source/core/fileapi/File.cpp return Blob::create(BlobDataHandle::create(blobData.release(), length)); create 50 Source/core/fileapi/File.h static PassRefPtrWillBeRawPtr<File> create(const String& path, ContentTypeLookupPolicy policy = WellKnownContentTypes) create 55 Source/core/fileapi/File.h static PassRefPtrWillBeRawPtr<File> create(const String& name, double modificationTime, PassRefPtr<BlobDataHandle> blobDataHandle) create 61 Source/core/fileapi/File.h static PassRefPtrWillBeRawPtr<File> create(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) create 74 Source/core/fileapi/FileError.h static PassRefPtrWillBeRawPtr<FileError> create(ErrorCode code) create 41 Source/core/fileapi/FileList.h static PassRefPtrWillBeRawPtr<FileList> create() create 286 Source/core/fileapi/FileReader.cpp m_error = FileError::create(FileError::ABORT_ERR); create 362 Source/core/fileapi/FileReader.cpp m_error = FileError::create(static_cast<FileError::ErrorCode>(errorCode)); create 377 Source/core/fileapi/FileReader.cpp dispatchEvent(ProgressEvent::create(type, false, 0, 0)); create 382 Source/core/fileapi/FileReader.cpp dispatchEvent(ProgressEvent::create(type, true, m_loader->bytesLoaded(), m_loader->totalBytes())); create 384 Source/core/fileapi/FileReader.cpp dispatchEvent(ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0)); create 55 Source/core/fileapi/FileReader.h static PassRefPtrWillBeRawPtr<FileReader> create(ExecutionContext*); create 118 Source/core/fileapi/FileReaderLoader.cpp m_loader = ThreadableLoader::create(executionContext, this, request, options); create 365 Source/core/fileapi/FileReaderLoader.cpp m_decoder = TextResourceDecoder::create("text/plain", m_encoding.isValid() ? m_encoding : UTF8Encoding()); create 49 Source/core/fileapi/FileReaderSync.h static PassRefPtrWillBeRawPtr<FileReaderSync> create() create 55 Source/core/fileapi/Stream.cpp RefPtr<RawData> buffer(RawData::create()); create 48 Source/core/fileapi/Stream.h static PassRefPtrWillBeRawPtr<Stream> create(ExecutionContext* context, const String& mediaType) create 46 Source/core/frame/BarProp.h static PassRefPtrWillBeRawPtr<BarProp> create(LocalFrame* frame, Type type) create 83 Source/core/frame/Console.cpp return MemoryInfo::create(m_frame); create 50 Source/core/frame/Console.h static PassRefPtrWillBeRawPtr<Console> create(LocalFrame* frame) create 38 Source/core/frame/DOMPoint.h static PassRefPtrWillBeRawPtr<DOMPoint> create() create 42 Source/core/frame/DOMPoint.h static PassRefPtrWillBeRawPtr<DOMPoint> create(float x, float y) create 63 Source/core/frame/DOMTimer.h static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID) create 129 Source/core/frame/DOMWindow.cpp return MessageEvent::create(m_channels.release(), m_message, m_origin, String(), m_source.get()); create 375 Source/core/frame/DOMWindow.cpp document = Document::create(init); create 379 Source/core/frame/DOMWindow.cpp document = SinkDocument::create(init); create 392 Source/core/frame/DOMWindow.cpp m_eventQueue = DOMWindowEventQueue::create(m_document.get()); create 458 Source/core/frame/DOMWindow.cpp dispatchEvent(PageTransitionEvent::create(EventTypeNames::pageshow, persisted), m_document.get()); create 463 Source/core/frame/DOMWindow.cpp enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL)); create 472 Source/core/frame/DOMWindow.cpp dispatchEvent(PopStateEvent::create(stateObject, &history())); create 629 Source/core/frame/DOMWindow.cpp m_screen = Screen::create(m_frame); create 636 Source/core/frame/DOMWindow.cpp m_history = History::create(m_frame); create 644 Source/core/frame/DOMWindow.cpp m_locationbar = BarProp::create(m_frame, BarProp::Locationbar); create 652 Source/core/frame/DOMWindow.cpp m_menubar = BarProp::create(m_frame, BarProp::Menubar); create 660 Source/core/frame/DOMWindow.cpp m_personalbar = BarProp::create(m_frame, BarProp::Personalbar); create 668 Source/core/frame/DOMWindow.cpp m_scrollbars = BarProp::create(m_frame, BarProp::Scrollbars); create 676 Source/core/frame/DOMWindow.cpp m_statusbar = BarProp::create(m_frame, BarProp::Statusbar); create 684 Source/core/frame/DOMWindow.cpp m_toolbar = BarProp::create(m_frame, BarProp::Toolbar); create 691 Source/core/frame/DOMWindow.cpp m_console = Console::create(m_frame); create 707 Source/core/frame/DOMWindow.cpp m_applicationCache = ApplicationCache::create(m_frame); create 714 Source/core/frame/DOMWindow.cpp m_navigator = Navigator::create(m_frame); create 721 Source/core/frame/DOMWindow.cpp m_performance = Performance::create(m_frame); create 728 Source/core/frame/DOMWindow.cpp m_location = Location::create(m_frame); create 770 Source/core/frame/DOMWindow.cpp m_sessionStorage = Storage::create(m_frame, storageArea.release()); create 813 Source/core/frame/DOMWindow.cpp m_localStorage = Storage::create(m_frame, storageArea.release()); create 1294 Source/core/frame/DOMWindow.cpp m_media = StyleMedia::create(m_frame); create 1303 Source/core/frame/DOMWindow.cpp return CSSComputedStyleDeclaration::create(elt, false, pseudoElt); create 1337 Source/core/frame/DOMWindow.cpp return DOMPoint::create(pagePoint.x(), pagePoint.y()); create 1352 Source/core/frame/DOMWindow.cpp return DOMPoint::create(nodePoint.x(), nodePoint.y()); create 1503 Source/core/frame/DOMWindow.cpp m_css = DOMWindowCSS::create(); create 1574 Source/core/frame/DOMWindow.cpp RefPtrWillBeRawPtr<Event> loadEvent(Event::create(EventTypeNames::load)); create 1591 Source/core/frame/DOMWindow.cpp ownerElement->dispatchEvent(Event::create(EventTypeNames::load)); create 1719 Source/core/frame/DOMWindow.cpp message = "Blocked a frame at \"" + SecurityOrigin::create(activeURL)->toString() + "\" from accessing a frame at \"" + SecurityOrigin::create(targetURL)->toString() + "\". "; create 1870 Source/core/frame/DOMWindow.cpp return DOMWindowLifecycleNotifier::create(this); create 99 Source/core/frame/DOMWindow.h static PassRefPtrWillBeRawPtr<DOMWindow> create(LocalFrame& frame) create 41 Source/core/frame/DOMWindowLifecycleNotifier.h static PassOwnPtr<DOMWindowLifecycleNotifier> create(DOMWindow*); create 48 Source/core/frame/FrameHost.cpp , m_console(PageConsole::create(*this)) create 61 Source/core/frame/FrameHost.h static PassOwnPtr<FrameHost> create(Page&); create 2306 Source/core/frame/FrameView.cpp RefPtrWillBeRawPtr<OverflowEvent> event = OverflowEvent::create(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow); create 64 Source/core/frame/FrameView.h static PassRefPtr<FrameView> create(LocalFrame*); create 65 Source/core/frame/FrameView.h static PassRefPtr<FrameView> create(LocalFrame*, const IntSize& initialSize); create 47 Source/core/frame/History.h static PassRefPtrWillBeRawPtr<History> create(LocalFrame* frame) create 37 Source/core/frame/ImageBitmap.cpp return BitmapImage::create(NativeImageSkia::create(cropped)); create 66 Source/core/frame/ImageBitmap.cpp OwnPtr<ImageBuffer> buf = ImageBuffer::create(videoRect.size()); create 102 Source/core/frame/ImageBitmap.cpp OwnPtr<ImageBuffer> buf = ImageBuffer::create(data->size()); create 26 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(HTMLImageElement*, const IntRect&); create 27 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(HTMLVideoElement*, const IntRect&); create 28 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(HTMLCanvasElement*, const IntRect&); create 29 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(ImageData*, const IntRect&); create 30 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(ImageBitmap*, const IntRect&); create 31 Source/core/frame/ImageBitmap.h static PassRefPtrWillBeRawPtr<ImageBitmap> create(Image*, const IntRect&); create 92 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get()); create 93 Source/core/frame/ImageBitmapTest.cpp imageElement->setImageResource(new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get())); create 95 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapNoCrop = ImageBitmap::create(imageElement.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height())); create 96 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapInteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width() / 2, m_bitmap.height() / 2)); create 97 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapExteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width() / 2, -m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height())); create 98 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapOutsideCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width(), -m_bitmap.height(), m_bitmap.width(), m_bitmap.height())); create 112 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get()); create 113 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> cachedImageNoCrop = new ImageResource(ResourceRequest("http://foo.com/1"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()); create 116 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> imageInteriorCrop = HTMLImageElement::create(*Document::create().get()); create 117 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> cachedImageInteriorCrop = new ImageResource(ResourceRequest("http://foo.com/2"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()); create 120 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> imageExteriorCrop = HTMLImageElement::create(*Document::create().get()); create 121 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> cachedImageExteriorCrop = new ImageResource(ResourceRequest("http://foo.com/3"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()); create 124 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> imageOutsideCrop = HTMLImageElement::create(*Document::create().get()); create 125 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> cachedImageOutsideCrop = new ImageResource(ResourceRequest("http://foo.com/4"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()); create 149 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapInteriorCrop = ImageBitmap::create(imageInteriorCrop.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height())); create 151 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapNoCrop = ImageBitmap::create(imageNoCrop.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height())); create 152 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapInteriorCrop2 = ImageBitmap::create(imageInteriorCrop.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height())); create 153 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapExteriorCrop = ImageBitmap::create(imageExteriorCrop.get(), IntRect(-m_bitmap.width() / 2, -m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height())); create 154 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapOutsideCrop = ImageBitmap::create(imageOutsideCrop.get(), IntRect(-m_bitmap.width(), -m_bitmap.height(), m_bitmap.width(), m_bitmap.height())); create 187 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLImageElement> image = HTMLImageElement::create(*Document::create().get()); create 188 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> originalImageResource = new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()); create 191 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmap = ImageBitmap::create(image.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height())); create 194 Source/core/frame/ImageBitmapTest.cpp ResourcePtr<ImageResource> newImageResource = new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap2)).get()); create 210 Source/core/frame/ImageBitmapTest.cpp RefPtr<HTMLCanvasElement> canvasElement = HTMLCanvasElement::create(*Document::create().get()); create 215 Source/core/frame/ImageBitmapTest.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmapFromCanvas = ImageBitmap::create(canvasElement.get(), IntRect(0, 0, canvasElement->width(), canvasElement->height())); create 216 Source/core/frame/ImageBitmapTest.cpp imageBitmapDerived = ImageBitmap::create(imageBitmapFromCanvas.get(), IntRect(0, 0, 20, 20)); create 95 Source/core/frame/LocalFrame.cpp , m_editor(Editor::create(*this)) create 96 Source/core/frame/LocalFrame.cpp , m_spellChecker(SpellChecker::create(*this)) create 99 Source/core/frame/LocalFrame.cpp , m_inputMethodController(InputMethodController::create(*this)) create 166 Source/core/frame/LocalFrame.cpp window->dispatchEvent(Event::create(EventTypeNames::orientationchange)); create 347 Source/core/frame/LocalFrame.cpp frameView = FrameView::create(this, viewportSize); create 352 Source/core/frame/LocalFrame.cpp frameView = FrameView::create(this); create 554 Source/core/frame/LocalFrame.cpp OwnPtr<ImageBuffer> buffer = ImageBuffer::create(paintingRect.size()); create 564 Source/core/frame/LocalFrame.cpp return DragImage::create(image.get(), renderer->shouldRespectImageOrientation(), deviceScaleFactor); create 583 Source/core/frame/LocalFrame.cpp OwnPtr<ImageBuffer> buffer = ImageBuffer::create(paintingRect.size()); create 593 Source/core/frame/LocalFrame.cpp return DragImage::create(image.get(), DoNotRespectImageOrientation, deviceScaleFactor); create 61 Source/core/frame/LocalFrame.h static PassRefPtr<LocalFrame> create(FrameLoaderClient*, FrameHost*, HTMLFrameOwnerElement*); create 120 Source/core/frame/Location.cpp RefPtr<DOMStringList> origins = DOMStringList::create(); create 48 Source/core/frame/Location.h static PassRefPtrWillBeRawPtr<Location> create(LocalFrame* frame) create 93 Source/core/frame/Navigator.cpp m_plugins = DOMPluginArray::create(m_frame); create 100 Source/core/frame/Navigator.cpp m_mimeTypes = DOMMimeTypeArray::create(m_frame); create 45 Source/core/frame/Navigator.h static PassRefPtrWillBeRawPtr<Navigator> create(LocalFrame* frame) create 50 Source/core/frame/PageConsole.h static PassOwnPtr<PageConsole> create(FrameHost& host) { return adoptPtr(new PageConsole(host)); } create 144 Source/core/frame/PinchViewport.cpp m_innerViewportContainerLayer = GraphicsLayer::create(graphicsLayerFactory, this); create 145 Source/core/frame/PinchViewport.cpp m_pageScaleLayer = GraphicsLayer::create(graphicsLayerFactory, this); create 146 Source/core/frame/PinchViewport.cpp m_innerViewportScrollLayer = GraphicsLayer::create(graphicsLayerFactory, this); create 147 Source/core/frame/PinchViewport.cpp m_overlayScrollbarHorizontal = GraphicsLayer::create(graphicsLayerFactory, this); create 148 Source/core/frame/PinchViewport.cpp m_overlayScrollbarVertical = GraphicsLayer::create(graphicsLayerFactory, this); create 36 Source/core/frame/RemoteFrame.cpp RefPtr<RemoteFrameView> view = RemoteFrameView::create(this); create 16 Source/core/frame/RemoteFrame.h static PassRefPtr<RemoteFrame> create(FrameHost*, HTMLFrameOwnerElement*); create 17 Source/core/frame/RemoteFrameView.h static PassRefPtr<RemoteFrameView> create(RemoteFrame*); create 49 Source/core/frame/Screen.h static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame) create 53 Source/core/frame/Settings.h static PassOwnPtr<Settings> create(); create 27 Source/core/frame/csp/CSPDirectiveList.h static PassOwnPtr<CSPDirectiveList> create(ContentSecurityPolicy*, const UChar* begin, const UChar* end, ContentSecurityPolicyHeaderType, ContentSecurityPolicyHeaderSource); create 197 Source/core/frame/csp/ContentSecurityPolicy.cpp OwnPtr<CSPDirectiveList> policy = CSPDirectiveList::create(this, begin, position, type, source); create 569 Source/core/frame/csp/ContentSecurityPolicy.cpp return document->securityOrigin()->canRequest(url) ? url.strippedForUseAsReferrer() : SecurityOrigin::create(url)->toString(); create 617 Source/core/frame/csp/ContentSecurityPolicy.cpp frame->domWindow()->enqueueDocumentEvent(SecurityPolicyViolationEvent::create(EventTypeNames::securitypolicyviolation, violationData)); create 632 Source/core/frame/csp/ContentSecurityPolicy.cpp RefPtr<JSONObject> cspReport = JSONObject::create(); create 647 Source/core/frame/csp/ContentSecurityPolicy.cpp RefPtr<JSONObject> reportObject = JSONObject::create(); create 654 Source/core/frame/csp/ContentSecurityPolicy.cpp RefPtr<FormData> report = FormData::create(stringifiedReport.utf8()); create 85 Source/core/frame/csp/ContentSecurityPolicy.h static PassRefPtr<ContentSecurityPolicy> create(ExecutionContextClient* client) create 43 Source/core/html/ClassList.h static PassOwnPtr<ClassList> create(Element* element) create 51 Source/core/html/DOMFormData.h static PassRefPtrWillBeRawPtr<DOMFormData> create(HTMLFormElement* form) create 56 Source/core/html/DOMFormData.h static PassRefPtrWillBeRawPtr<DOMFormData> create(const WTF::TextEncoding& encoding) create 42 Source/core/html/FormAssociatedElement.cpp static PassOwnPtr<FormAttributeTargetObserver> create(const AtomicString& id, FormAssociatedElement*); create 64 Source/core/html/FormAssociatedElement.cpp m_validityState = ValidityState::create(this); create 261 Source/core/html/FormAssociatedElement.cpp m_formAttributeTargetObserver = FormAttributeTargetObserver::create(formId, this); create 53 Source/core/html/FormDataList.cpp RefPtr<FormData> result = FormData::create(); create 60 Source/core/html/FormDataList.cpp RefPtr<FormData> result = FormData::create(); create 85 Source/core/html/HTMLAllCollection.cpp returnValue0 = NamedNodesCollection::create(namedItems); create 35 Source/core/html/HTMLAllCollection.h static PassRefPtr<HTMLAllCollection> create(ContainerNode&, CollectionType); create 537 Source/core/html/HTMLAnchorElement.cpp m_prefetchEventHandler = PrefetchEventHandler::create(this); create 59 Source/core/html/HTMLAnchorElement.h static PassRefPtr<HTMLAnchorElement> create(Document&); create 60 Source/core/html/HTMLAnchorElement.h static PassRefPtr<HTMLAnchorElement> create(const QualifiedName&, Document&); create 34 Source/core/html/HTMLAppletElement.h static PassRefPtr<HTMLAppletElement> create(Document&, bool createdByParser); create 37 Source/core/html/HTMLAreaElement.h static PassRefPtr<HTMLAreaElement> create(Document&); create 38 Source/core/html/HTMLAudioElement.h static PassRefPtr<HTMLAudioElement> create(Document&); create 30 Source/core/html/HTMLBDIElement.h static PassRefPtr<HTMLBDIElement> create(Document& document) create 33 Source/core/html/HTMLBRElement.h static PassRefPtr<HTMLBRElement> create(Document&); create 32 Source/core/html/HTMLBaseElement.h static PassRefPtr<HTMLBaseElement> create(Document&); create 71 Source/core/html/HTMLBodyElement.cpp RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url)); create 35 Source/core/html/HTMLBodyElement.h static PassRefPtr<HTMLBodyElement> create(Document&); create 33 Source/core/html/HTMLButtonElement.h static PassRefPtr<HTMLButtonElement> create(Document&, HTMLFormElement*); create 171 Source/core/html/HTMLCanvasElement.cpp m_context = CanvasRenderingContext2D::create(this, static_cast<Canvas2DContextAttributes*>(attrs), document().inQuirksMode()); create 193 Source/core/html/HTMLCanvasElement.cpp dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Canvas has an existing, non-WebGL context")); create 198 Source/core/html/HTMLCanvasElement.cpp m_context = WebGLRenderingContext::create(this, static_cast<WebGLContextAttributes*>(attrs)); create 487 Source/core/html/HTMLCanvasElement.cpp m_imageBuffer = ImageBuffer::create(surface.release()); create 580 Source/core/html/HTMLCanvasElement.cpp m_imageBuffer = ImageBuffer::create(size(), opacityMode); create 68 Source/core/html/HTMLCanvasElement.h static PassRefPtr<HTMLCanvasElement> create(Document&); create 43 Source/core/html/HTMLCollection.h static PassRefPtr<HTMLCollection> create(ContainerNode& base, CollectionType); create 41 Source/core/html/HTMLContentElement.h static PassRefPtr<HTMLContentElement> create(Document&); create 32 Source/core/html/HTMLDListElement.h static PassRefPtr<HTMLDListElement> create(Document&); create 42 Source/core/html/HTMLDataListElement.h static PassRefPtr<HTMLDataListElement> create(Document&); create 64 Source/core/html/HTMLDetailsElement.cpp RefPtr<HTMLSummaryElement> defaultSummary = HTMLSummaryElement::create(document()); create 65 Source/core/html/HTMLDetailsElement.cpp defaultSummary->appendChild(Text::create(document(), locale().queryString(blink::WebLocalizedString::DetailsLabel))); create 67 Source/core/html/HTMLDetailsElement.cpp RefPtr<HTMLContentElement> summary = HTMLContentElement::create(document()); create 73 Source/core/html/HTMLDetailsElement.cpp RefPtr<HTMLDivElement> content = HTMLDivElement::create(document()); create 75 Source/core/html/HTMLDetailsElement.cpp content->appendChild(HTMLContentElement::create(document())); create 30 Source/core/html/HTMLDetailsElement.h static PassRefPtr<HTMLDetailsElement> create(Document&); create 129 Source/core/html/HTMLDialogElement.cpp dispatchScopedEvent(Event::create(EventTypeNames::close)); create 40 Source/core/html/HTMLDialogElement.h static PassRefPtr<HTMLDialogElement> create(Document&); create 32 Source/core/html/HTMLDirectoryElement.h static PassRefPtr<HTMLDirectoryElement> create(Document&); create 32 Source/core/html/HTMLDivElement.h static PassRefPtr<HTMLDivElement> create(Document&); create 191 Source/core/html/HTMLDocument.cpp return create(DocumentInit(url()).withRegistrationContext(registrationContext())); create 38 Source/core/html/HTMLDocument.h static PassRefPtr<HTMLDocument> create(const DocumentInit& initializer = DocumentInit()) create 329 Source/core/html/HTMLElement.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(document()); create 341 Source/core/html/HTMLElement.cpp fragment->appendChild(Text::create(document(), text.substring(start, i - start)), exceptionState); create 346 Source/core/html/HTMLElement.cpp fragment->appendChild(HTMLBRElement::create(document()), exceptionState); create 435 Source/core/html/HTMLElement.cpp newChild = Text::create(document(), text); create 43 Source/core/html/HTMLElement.h static PassRefPtr<HTMLElement> create(const QualifiedName& tagName, Document&); create 32 Source/core/html/HTMLEmbedElement.h static PassRefPtr<HTMLEmbedElement> create(Document&, bool createdByParser = false); create 36 Source/core/html/HTMLFieldSetElement.h static PassRefPtr<HTMLFieldSetElement> create(Document&, HTMLFormElement*); create 33 Source/core/html/HTMLFontElement.h static PassRefPtr<HTMLFontElement> create(Document&); create 408 Source/core/html/HTMLFormControlElement.cpp m_validationMessage = ValidationMessage::create(this); create 42 Source/core/html/HTMLFormControlsCollection.h static PassRefPtr<HTMLFormControlsCollection> create(ContainerNode&, CollectionType); create 356 Source/core/html/HTMLFormElement.cpp RefPtr<FormSubmission> formSubmission = FormSubmission::create(this, m_attributes, event, formSubmissionTrigger); create 442 Source/core/html/HTMLFormElement.cpp event = AutocompleteErrorEvent::create("disabled"); create 444 Source/core/html/HTMLFormElement.cpp event = AutocompleteErrorEvent::create("cancel"); create 446 Source/core/html/HTMLFormElement.cpp event = AutocompleteErrorEvent::create("invalid"); create 49 Source/core/html/HTMLFormElement.h static PassRefPtr<HTMLFormElement> create(Document&); create 33 Source/core/html/HTMLFrameElement.h static PassRefPtr<HTMLFrameElement> create(Document&); create 34 Source/core/html/HTMLFrameSetElement.h static PassRefPtr<HTMLFrameSetElement> create(Document&); create 32 Source/core/html/HTMLHRElement.h static PassRefPtr<HTMLHRElement> create(Document&); create 33 Source/core/html/HTMLHeadElement.h static PassRefPtr<HTMLHeadElement> create(Document&); create 32 Source/core/html/HTMLHeadingElement.h static PassRefPtr<HTMLHeadingElement> create(const QualifiedName&, Document&); create 33 Source/core/html/HTMLHtmlElement.h static PassRefPtr<HTMLHtmlElement> create(Document&); create 33 Source/core/html/HTMLIFrameElement.h static PassRefPtr<HTMLIFrameElement> create(Document&); create 197 Source/core/html/HTMLImageElement.cpp image->setImageResource(RenderImageResource::create()); create 39 Source/core/html/HTMLImageElement.h static PassRefPtr<HTMLImageElement> create(Document&); create 40 Source/core/html/HTMLImageElement.h static PassRefPtr<HTMLImageElement> create(Document&, HTMLFormElement*); create 52 Source/core/html/HTMLImageLoader.cpp element()->dispatchEvent(Event::create(errorOccurred ? EventTypeNames::error : EventTypeNames::load)); create 88 Source/core/html/HTMLInputElement.cpp static PassOwnPtr<ListAttributeTargetObserver> create(const AtomicString& id, HTMLInputElement*); create 156 Source/core/html/HTMLInputElement.cpp m_inputTypeView = InputTypeView::create(*this); create 415 Source/core/html/HTMLInputElement.cpp RefPtr<InputType> newType = InputType::create(*this, newTypeName); create 426 Source/core/html/HTMLInputElement.cpp m_inputTypeView = InputTypeView::create(*this); create 1524 Source/core/html/HTMLInputElement.cpp m_listAttributeTargetObserver = ListAttributeTargetObserver::create(fastGetAttribute(listAttr), this); create 49 Source/core/html/HTMLInputElement.h static PassRefPtr<HTMLInputElement> create(Document&, HTMLFormElement*, bool createdByParser); create 60 Source/core/html/HTMLKeygenElement.cpp RefPtr<HTMLSelectElement> select = HTMLSelectElement::create(document()); create 63 Source/core/html/HTMLKeygenElement.cpp RefPtr<HTMLOptionElement> option = HTMLOptionElement::create(document()); create 64 Source/core/html/HTMLKeygenElement.cpp option->appendChild(Text::create(document(), keys[i])); create 35 Source/core/html/HTMLKeygenElement.h static PassRefPtr<HTMLKeygenElement> create(Document& document, HTMLFormElement* form) create 32 Source/core/html/HTMLLIElement.h static PassRefPtr<HTMLLIElement> create(Document&); create 34 Source/core/html/HTMLLabelElement.h static PassRefPtr<HTMLLabelElement> create(Document&); create 35 Source/core/html/HTMLLegendElement.h static PassRefPtr<HTMLLegendElement> create(Document&); create 136 Source/core/html/HTMLLinkElement.cpp , m_sizes(DOMSettableTokenList::create()) create 208 Source/core/html/HTMLLinkElement.cpp m_link = LinkImport::create(this); create 210 Source/core/html/HTMLLinkElement.cpp OwnPtr<LinkStyle> link = LinkStyle::create(this); create 306 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::load)); create 311 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 316 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::webkitprerenderstart)); create 321 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::webkitprerenderstop)); create 326 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::webkitprerenderload)); create 331 Source/core/html/HTMLLinkElement.cpp dispatchEvent(Event::create(EventTypeNames::webkitprerenderdomcontentloaded)); create 472 Source/core/html/HTMLLinkElement.cpp m_sheet = CSSStyleSheet::create(restoredSheet, m_owner); create 473 Source/core/html/HTMLLinkElement.cpp m_sheet->setMediaQueries(MediaQuerySet::create(m_owner->media())); create 481 Source/core/html/HTMLLinkElement.cpp RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(href, parserContext); create 485 Source/core/html/HTMLLinkElement.cpp m_sheet = CSSStyleSheet::create(styleSheet, m_owner); create 486 Source/core/html/HTMLLinkElement.cpp m_sheet->setMediaQueries(MediaQuerySet::create(m_owner->media())); create 655 Source/core/html/HTMLLinkElement.cpp RefPtrWillBeRawPtr<MediaQuerySet> media = MediaQuerySet::create(m_owner->media()); create 61 Source/core/html/HTMLLinkElement.h static PassOwnPtr<LinkStyle> create(HTMLLinkElement* owner); create 123 Source/core/html/HTMLLinkElement.h static PassRefPtr<HTMLLinkElement> create(Document&, bool createdByParser); create 35 Source/core/html/HTMLMapElement.h static PassRefPtr<HTMLMapElement> create(Document&); create 36 Source/core/html/HTMLMarqueeElement.h static PassRefPtr<HTMLMarqueeElement> create(Document&); create 238 Source/core/html/HTMLMediaElement.cpp , m_asyncEventQueue(GenericEventQueue::create(this)) create 683 Source/core/html/HTMLMediaElement.cpp m_playedTimeRanges = TimeRanges::create(); create 1098 Source/core/html/HTMLMediaElement.cpp event = Event::create(EventTypeNames::enter); create 1102 Source/core/html/HTMLMediaElement.cpp event = Event::create(EventTypeNames::exit); create 1107 Source/core/html/HTMLMediaElement.cpp event = Event::create(EventTypeNames::enter); create 1109 Source/core/html/HTMLMediaElement.cpp event = Event::create(EventTypeNames::exit); create 1123 Source/core/html/HTMLMediaElement.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::cuechange); create 1131 Source/core/html/HTMLMediaElement.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::cuechange); create 1208 Source/core/html/HTMLMediaElement.cpp m_textTracks = TextTrackList::create(this); create 1368 Source/core/html/HTMLMediaElement.cpp m_error = MediaError::create(MediaError::MEDIA_ERR_SRC_NOT_SUPPORTED); create 1468 Source/core/html/HTMLMediaElement.cpp mediaEngineError(MediaError::create(MediaError::MEDIA_ERR_NETWORK)); create 1470 Source/core/html/HTMLMediaElement.cpp mediaEngineError(MediaError::create(MediaError::MEDIA_ERR_DECODE)); create 1670 Source/core/html/HTMLMediaElement.cpp m_playedTimeRanges = TimeRanges::create(); create 2224 Source/core/html/HTMLMediaElement.cpp RefPtr<InbandTextTrack> textTrack = InbandTextTrack::create(document(), webTrack); create 2313 Source/core/html/HTMLMediaElement.cpp RefPtr<TextTrack> textTrack = TextTrack::create(document(), kind, label, language); create 2333 Source/core/html/HTMLMediaElement.cpp m_textTracks = TextTrackList::create(this); create 2872 Source/core/html/HTMLMediaElement.cpp return TimeRanges::create(); create 2889 Source/core/html/HTMLMediaElement.cpp m_playedTimeRanges = TimeRanges::create(); create 2899 Source/core/html/HTMLMediaElement.cpp return TimeRanges::create(0, maxTimeSeekable); create 2901 Source/core/html/HTMLMediaElement.cpp return TimeRanges::create(); create 3073 Source/core/html/HTMLMediaElement.cpp m_error = MediaError::create(MediaError::MEDIA_ERR_ABORTED); create 3314 Source/core/html/HTMLMediaElement.cpp RefPtr<MediaControls> mediaControls = MediaControls::create(*this); create 3433 Source/core/html/HTMLMediaElement.cpp m_player = MediaPlayer::create(this); create 3504 Source/core/html/HTMLMediaElement.cpp setControllerInternal(MediaController::create(Node::executionContext())); create 32 Source/core/html/HTMLMenuElement.h static PassRefPtr<HTMLMenuElement> create(Document&); create 40 Source/core/html/HTMLMetaElement.h static PassRefPtr<HTMLMetaElement> create(Document&); create 226 Source/core/html/HTMLMeterElement.cpp RefPtr<MeterInnerElement> inner = MeterInnerElement::create(document()); create 229 Source/core/html/HTMLMeterElement.cpp RefPtr<MeterBarElement> bar = MeterBarElement::create(document()); create 230 Source/core/html/HTMLMeterElement.cpp m_value = MeterValueElement::create(document()); create 34 Source/core/html/HTMLMeterElement.h static PassRefPtr<HTMLMeterElement> create(Document&); create 33 Source/core/html/HTMLModElement.h static PassRefPtr<HTMLModElement> create(const QualifiedName&, Document&); create 36 Source/core/html/HTMLNameCollection.h static PassRefPtr<HTMLNameCollection> create(ContainerNode& document, CollectionType type, const AtomicString& name) create 42 Source/core/html/HTMLNoEmbedElement.h static PassRefPtr<HTMLNoEmbedElement> create(Document&); create 42 Source/core/html/HTMLNoScriptElement.h static PassRefPtr<HTMLNoScriptElement> create(Document&); create 32 Source/core/html/HTMLOListElement.h static PassRefPtr<HTMLOListElement> create(Document&); create 35 Source/core/html/HTMLObjectElement.h static PassRefPtr<HTMLObjectElement> create(Document&, HTMLFormElement*, bool createdByParser); create 35 Source/core/html/HTMLOptGroupElement.h static PassRefPtr<HTMLOptGroupElement> create(Document&); create 67 Source/core/html/HTMLOptionElement.cpp RefPtr<Text> text = Text::create(document, data.isNull() ? "" : data); create 142 Source/core/html/HTMLOptionElement.cpp appendChild(Text::create(document(), text), exceptionState); create 38 Source/core/html/HTMLOptionElement.h static PassRefPtr<HTMLOptionElement> create(Document&); create 142 Source/core/html/HTMLOptionsCollection.cpp returnValue0 = NamedNodesCollection::create(namedItems); create 37 Source/core/html/HTMLOptionsCollection.h static PassRefPtr<HTMLOptionsCollection> create(ContainerNode&, CollectionType); create 43 Source/core/html/HTMLOutputElement.cpp , m_tokens(DOMSettableTokenList::create()) create 41 Source/core/html/HTMLOutputElement.h static PassRefPtr<HTMLOutputElement> create(Document&, HTMLFormElement*); create 32 Source/core/html/HTMLParagraphElement.h static PassRefPtr<HTMLParagraphElement> create(Document&); create 32 Source/core/html/HTMLParamElement.h static PassRefPtr<HTMLParamElement> create(Document&); create 218 Source/core/html/HTMLPlugInElement.cpp image->setImageResource(RenderImageResource::create()); create 520 Source/core/html/HTMLPlugInElement.cpp document().ownerElement()->dispatchEvent(Event::create(EventTypeNames::error)); create 522 Source/core/html/HTMLPlugInElement.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 557 Source/core/html/HTMLPlugInElement.cpp userAgentShadowRoot()->appendChild(HTMLContentElement::create(document())); create 32 Source/core/html/HTMLPreElement.h static PassRefPtr<HTMLPreElement> create(const QualifiedName&, Document&); create 153 Source/core/html/HTMLProgressElement.cpp RefPtr<ProgressInnerElement> inner = ProgressInnerElement::create(document()); create 157 Source/core/html/HTMLProgressElement.cpp RefPtr<ProgressBarElement> bar = ProgressBarElement::create(document()); create 159 Source/core/html/HTMLProgressElement.cpp RefPtr<ProgressValueElement> value = ProgressValueElement::create(document()); create 37 Source/core/html/HTMLProgressElement.h static PassRefPtr<HTMLProgressElement> create(Document&); create 34 Source/core/html/HTMLQuoteElement.h static PassRefPtr<HTMLQuoteElement> create(const QualifiedName&, Document&); create 16 Source/core/html/HTMLRTElement.h static PassRefPtr<HTMLRTElement> create(Document&); create 16 Source/core/html/HTMLRubyElement.h static PassRefPtr<HTMLRubyElement> create(Document&); create 41 Source/core/html/HTMLScriptElement.cpp , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted)) create 170 Source/core/html/HTMLScriptElement.cpp dispatchEvent(Event::create(EventTypeNames::load)); create 36 Source/core/html/HTMLScriptElement.h static PassRefPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false); create 42 Source/core/html/HTMLSelectElement.h static PassRefPtr<HTMLSelectElement> create(Document&); create 43 Source/core/html/HTMLSelectElement.h static PassRefPtr<HTMLSelectElement> create(Document&, HTMLFormElement*); create 41 Source/core/html/HTMLShadowElement.h static PassRefPtr<HTMLShadowElement> create(Document&); create 36 Source/core/html/HTMLSourceElement.h static PassRefPtr<HTMLSourceElement> create(Document&); create 35 Source/core/html/HTMLSpanElement.h static PassRefPtr<HTMLSpanElement> create(Document&); create 78 Source/core/html/HTMLStyleElement.cpp m_sheet->setMediaQueries(MediaQuerySet::create(value)); create 264 Source/core/html/HTMLStyleElement.cpp dispatchEvent(Event::create(m_loadedSheet ? EventTypeNames::load : EventTypeNames::error)); create 39 Source/core/html/HTMLStyleElement.h static PassRefPtr<HTMLStyleElement> create(Document&, bool createdByParser); create 57 Source/core/html/HTMLSummaryElement.cpp root.appendChild(DetailsMarkerControl::create(document())); create 58 Source/core/html/HTMLSummaryElement.cpp root.appendChild(HTMLContentElement::create(document())); create 32 Source/core/html/HTMLSummaryElement.h static PassRefPtr<HTMLSummaryElement> create(Document&); create 35 Source/core/html/HTMLTableCaptionElement.h static PassRefPtr<HTMLTableCaptionElement> create(Document&); create 35 Source/core/html/HTMLTableCellElement.h static PassRefPtr<HTMLTableCellElement> create(const QualifiedName&, Document&); create 35 Source/core/html/HTMLTableColElement.h static PassRefPtr<HTMLTableColElement> create(const QualifiedName& tagName, Document&); create 127 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableSectionElement> head = HTMLTableSectionElement::create(theadTag, document()); create 141 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableSectionElement> foot = HTMLTableSectionElement::create(tfootTag, document()); create 153 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableSectionElement> body = HTMLTableSectionElement::create(tbodyTag, document()); create 164 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableCaptionElement> caption = HTMLTableCaptionElement::create(document()); create 216 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableSectionElement> newBody = HTMLTableSectionElement::create(tbodyTag, document()); create 217 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableRowElement> newRow = HTMLTableRowElement::create(document()); create 224 Source/core/html/HTMLTableElement.cpp RefPtr<HTMLTableRowElement> newRow = HTMLTableRowElement::create(document()); create 308 Source/core/html/HTMLTableElement.cpp style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(url, document().completeURL(url)))); create 403 Source/core/html/HTMLTableElement.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 459 Source/core/html/HTMLTableElement.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 506 Source/core/html/HTMLTableElement.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); create 41 Source/core/html/HTMLTableElement.h static PassRefPtr<HTMLTableElement> create(Document&); create 56 Source/core/html/HTMLTablePartElement.cpp style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(url, document().completeURL(url)))); create 131 Source/core/html/HTMLTableRowElement.cpp RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document()); create 37 Source/core/html/HTMLTableRowElement.h static PassRefPtr<HTMLTableRowElement> create(Document&); create 41 Source/core/html/HTMLTableRowsCollection.h static PassRefPtr<HTMLTableRowsCollection> create(ContainerNode&, CollectionType); create 68 Source/core/html/HTMLTableSectionElement.cpp row = HTMLTableRowElement::create(document()); create 37 Source/core/html/HTMLTableSectionElement.h static PassRefPtr<HTMLTableSectionElement> create(const QualifiedName&, Document&); create 62 Source/core/html/HTMLTemplateElement.cpp m_content = TemplateContentDocumentFragment::create(document().ensureTemplateDocument(), const_cast<HTMLTemplateElement*>(this)); create 43 Source/core/html/HTMLTemplateElement.h static PassRefPtr<HTMLTemplateElement> create(Document&); create 100 Source/core/html/HTMLTextAreaElement.cpp root.appendChild(TextControlInnerTextElement::create(document())); create 547 Source/core/html/HTMLTextAreaElement.cpp RefPtr<HTMLDivElement> newElement = HTMLDivElement::create(document()); create 37 Source/core/html/HTMLTextAreaElement.h static PassRefPtr<HTMLTextAreaElement> create(Document&, HTMLFormElement*); create 315 Source/core/html/HTMLTextFormControlElement.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document()); create 328 Source/core/html/HTMLTextFormControlElement.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*indexPosition.document()); create 438 Source/core/html/HTMLTextFormControlElement.cpp return Range::create(document(), innerText, 0, innerText, 0); create 462 Source/core/html/HTMLTextFormControlElement.cpp return Range::create(document(), startNode, start, endNode, end); create 515 Source/core/html/HTMLTextFormControlElement.cpp innerTextElement()->appendChild(HTMLBRElement::create(document())); create 31 Source/core/html/HTMLTitleElement.h static PassRefPtr<HTMLTitleElement> create(Document&); create 132 Source/core/html/HTMLTrackElement.cpp m_track = LoadableTextTrack::create(this); create 227 Source/core/html/HTMLTrackElement.cpp dispatchEvent(Event::create(EventTypeNames::error), IGNORE_EXCEPTION); create 238 Source/core/html/HTMLTrackElement.cpp dispatchEvent(Event::create(EventTypeNames::load), IGNORE_EXCEPTION); create 39 Source/core/html/HTMLTrackElement.h static PassRefPtr<HTMLTrackElement> create(Document&); create 32 Source/core/html/HTMLUListElement.h static PassRefPtr<HTMLUListElement> create(Document&); create 39 Source/core/html/HTMLUnknownElement.h static PassRefPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document) create 284 Source/core/html/HTMLVideoElement.cpp OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(intrinsicSize); create 43 Source/core/html/HTMLVideoElement.h static PassRefPtr<HTMLVideoElement> create(Document&); create 63 Source/core/html/HTMLViewSourceDocument.cpp return HTMLViewSourceParser::create(this, m_type); create 68 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLHtmlElement> html = HTMLHtmlElement::create(*this); create 70 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLHeadElement> head = HTMLHeadElement::create(*this); create 72 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLBodyElement> body = HTMLBodyElement::create(*this); create 77 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLDivElement> div = HTMLDivElement::create(*this); create 81 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLTableElement> table = HTMLTableElement::create(*this); create 83 Source/core/html/HTMLViewSourceDocument.cpp m_tbody = HTMLTableSectionElement::create(tbodyTag, *this); create 185 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLSpanElement> span = HTMLSpanElement::create(*this); create 194 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLTableRowElement> trow = HTMLTableRowElement::create(*this); create 198 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLTableCellElement> td = HTMLTableCellElement::create(tdTag, *this); create 204 Source/core/html/HTMLViewSourceDocument.cpp td = HTMLTableCellElement::create(tdTag, *this); create 220 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLBRElement> br = HTMLBRElement::create(*this); create 245 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<Text> t = Text::create(*this, substring); create 273 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLBaseElement> base = HTMLBaseElement::create(*this); create 285 Source/core/html/HTMLViewSourceDocument.cpp RefPtr<HTMLAnchorElement> anchor = HTMLAnchorElement::create(*this); create 38 Source/core/html/HTMLViewSourceDocument.h static PassRefPtr<HTMLViewSourceDocument> create(const DocumentInit& initializer, const String& mimeType) create 42 Source/core/html/HTMLWBRElement.h static PassRefPtr<HTMLWBRElement> create(Document&); create 45 Source/core/html/ImageData.h static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&); create 46 Source/core/html/ImageData.h static PassRefPtrWillBeRawPtr<ImageData> create(const IntSize&, PassRefPtr<Uint8ClampedArray>); create 47 Source/core/html/ImageData.h static PassRefPtrWillBeRawPtr<ImageData> create(unsigned width, unsigned height, ExceptionState&); create 48 Source/core/html/ImageData.h static PassRefPtrWillBeRawPtr<ImageData> create(Uint8ClampedArray*, unsigned width, unsigned height, ExceptionState&); create 178 Source/core/html/ImageDocument.cpp return ImageDocumentParser::create(this); create 183 Source/core/html/ImageDocument.cpp RefPtr<HTMLHtmlElement> rootElement = HTMLHtmlElement::create(*this); create 190 Source/core/html/ImageDocument.cpp RefPtr<HTMLHeadElement> head = HTMLHeadElement::create(*this); create 191 Source/core/html/ImageDocument.cpp RefPtr<HTMLMetaElement> meta = HTMLMetaElement::create(*this); create 196 Source/core/html/ImageDocument.cpp RefPtr<HTMLBodyElement> body = HTMLBodyElement::create(*this); create 199 Source/core/html/ImageDocument.cpp m_imageElement = HTMLImageElement::create(*this); create 207 Source/core/html/ImageDocument.cpp RefPtr<EventListener> listener = ImageEventListener::create(this); create 38 Source/core/html/ImageDocument.h static PassRefPtr<ImageDocument> create(const DocumentInit& initializer = DocumentInit()) create 35 Source/core/html/LabelsNodeList.h static PassRefPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type) create 58 Source/core/html/MediaController.cpp , m_clock(Clock::create()) create 94 Source/core/html/MediaController.cpp return TimeRanges::create(); create 108 Source/core/html/MediaController.cpp return TimeRanges::create(); create 122 Source/core/html/MediaController.cpp return TimeRanges::create(); create 48 Source/core/html/MediaController.h static PassRefPtr<MediaController> create(ExecutionContext*); create 75 Source/core/html/MediaDocument.cpp RefPtr<HTMLHtmlElement> rootElement = HTMLHtmlElement::create(*document()); create 82 Source/core/html/MediaDocument.cpp RefPtr<HTMLHeadElement> head = HTMLHeadElement::create(*document()); create 83 Source/core/html/MediaDocument.cpp RefPtr<HTMLMetaElement> meta = HTMLMetaElement::create(*document()); create 88 Source/core/html/MediaDocument.cpp RefPtr<HTMLVideoElement> media = HTMLVideoElement::create(*document()); create 93 Source/core/html/MediaDocument.cpp RefPtr<HTMLSourceElement> source = HTMLSourceElement::create(*document()); create 101 Source/core/html/MediaDocument.cpp RefPtr<HTMLBodyElement> body = HTMLBodyElement::create(*document()); create 128 Source/core/html/MediaDocument.cpp return MediaDocumentParser::create(this); create 35 Source/core/html/MediaDocument.h static PassRefPtr<MediaDocument> create(const DocumentInit& initializer = DocumentInit()) create 45 Source/core/html/MediaError.h static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); } create 47 Source/core/html/MediaKeyError.h static PassRefPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0) { return adoptRef(new MediaKeyError(code, systemCode)); } create 50 Source/core/html/MediaKeyEvent.h static PassRefPtrWillBeRawPtr<MediaKeyEvent> create() create 55 Source/core/html/MediaKeyEvent.h static PassRefPtrWillBeRawPtr<MediaKeyEvent> create(const AtomicString& type, const MediaKeyEventInit& initializer) create 87 Source/core/html/PluginDocument.cpp RefPtr<HTMLHtmlElement> rootElement = HTMLHtmlElement::create(*document()); create 92 Source/core/html/PluginDocument.cpp RefPtr<HTMLBodyElement> body = HTMLBodyElement::create(*document()); create 98 Source/core/html/PluginDocument.cpp m_embedElement = HTMLEmbedElement::create(*document()); create 161 Source/core/html/PluginDocument.cpp return PluginDocumentParser::create(this); create 37 Source/core/html/PluginDocument.h static PassRefPtr<PluginDocument> create(const DocumentInit& initializer = DocumentInit()) create 46 Source/core/html/PublicURLManager.h static PassOwnPtr<PublicURLManager> create(ExecutionContext*); create 37 Source/core/html/RadioNodeList.h static PassRefPtr<RadioNodeList> create(ContainerNode& ownerNode, CollectionType type, const AtomicString& name) create 41 Source/core/html/TextDocument.cpp return TextDocumentParser::create(this); create 34 Source/core/html/TextDocument.h static PassRefPtr<TextDocument> create(const DocumentInit& initializer = DocumentInit()) create 37 Source/core/html/TextMetrics.h static PassRefPtr<TextMetrics> create() { return adoptRef(new TextMetrics); } create 46 Source/core/html/TimeRanges.cpp RefPtr<TimeRanges> ranges = TimeRanges::create(); create 57 Source/core/html/TimeRanges.cpp RefPtr<TimeRanges> newSession = TimeRanges::create(); create 68 Source/core/html/TimeRanges.cpp RefPtr<TimeRanges> inverted = TimeRanges::create(); create 43 Source/core/html/TimeRanges.h static PassRefPtr<TimeRanges> create() create 47 Source/core/html/TimeRanges.h static PassRefPtr<TimeRanges> create(double start, double end) create 51 Source/core/html/TimeRanges.h static PassRefPtr<TimeRanges> create(const blink::WebTimeRanges&); create 56 Source/core/html/TimeRangesTest.cpp ASSERT_RANGE("{ }", TimeRanges::create()); create 61 Source/core/html/TimeRangesTest.cpp ASSERT_RANGE("{ [1,2) }", TimeRanges::create(1, 2)); create 71 Source/core/html/TimeRangesTest.cpp ASSERT_RANGE("{ [0,1) [2,3) }", TimeRanges::create(webRanges)); create 76 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangeA = TimeRanges::create(); create 77 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangeB = TimeRanges::create(); create 95 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> ranges = TimeRanges::create(); create 125 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> ranges = TimeRanges::create(0, 2); create 136 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(0, 2); create 150 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(0, 2); create 151 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 164 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 165 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 184 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 185 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 204 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 205 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 224 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 225 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 244 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 245 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 263 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 264 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 283 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesA = TimeRanges::create(); create 284 Source/core/html/TimeRangesTest.cpp RefPtr<TimeRanges> rangesB = TimeRanges::create(); create 36 Source/core/html/ValidityState.h static PassOwnPtr<ValidityState> create(FormAssociatedElement* control) create 43 Source/core/html/canvas/ANGLEInstancedArrays.h static PassRefPtr<ANGLEInstancedArrays> create(WebGLRenderingContextBase*); create 46 Source/core/html/canvas/Canvas2DContextAttributes.h static PassRefPtr<Canvas2DContextAttributes> create(); create 38 Source/core/html/canvas/CanvasGradient.cpp : m_gradient(Gradient::create(p0, p1)) create 44 Source/core/html/canvas/CanvasGradient.cpp : m_gradient(Gradient::create(p0, r0, p1, r1)) create 42 Source/core/html/canvas/CanvasGradient.h static PassRefPtr<CanvasGradient> create(const FloatPoint& p0, const FloatPoint& p1) create 46 Source/core/html/canvas/CanvasGradient.h static PassRefPtr<CanvasGradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) create 61 Source/core/html/canvas/CanvasPattern.cpp : m_pattern(Pattern::create(image, repeatX, repeatY)) create 44 Source/core/html/canvas/CanvasPattern.h static PassRefPtr<CanvasPattern> create(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean) create 211 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtrWillBeRawPtr<Event> event(Event::create(EventTypeNames::contextrestored)); create 935 Source/core/html/canvas/CanvasRenderingContext2D.cpp return Path2D::create(m_path); create 1695 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtr<CanvasGradient> gradient = CanvasGradient::create(FloatPoint(x0, y0), FloatPoint(x1, y1)); create 1719 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtr<CanvasGradient> gradient = CanvasGradient::create(FloatPoint(x0, y0), r0, FloatPoint(x1, y1), r1); create 1757 Source/core/html/canvas/CanvasRenderingContext2D.cpp return CanvasPattern::create(imageForRendering.release(), repeatX, repeatY, !imageSource->wouldTaintOrigin(canvas()->securityOrigin())); create 1817 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (RefPtrWillBeRawPtr<ImageData> data = ImageData::create(size)) { create 1904 Source/core/html/canvas/CanvasRenderingContext2D.cpp return ImageData::create(imageDataRect.size(), byteArray.release()); create 2014 Source/core/html/canvas/CanvasRenderingContext2D.cpp parsedStyle = MutableStylePropertySet::create(); create 2036 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtr<RenderStyle> newStyle = RenderStyle::create(); create 2130 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtr<TextMetrics> metrics = TextMetrics::create(); create 2346 Source/core/html/canvas/CanvasRenderingContext2D.cpp RefPtr<Canvas2DContextAttributes> attributes = Canvas2DContextAttributes::create(); create 70 Source/core/html/canvas/CanvasRenderingContext2D.h static PassOwnPtr<CanvasRenderingContext2D> create(HTMLCanvasElement* canvas, const Canvas2DContextAttributes* attrs, bool usesCSSCompatibilityParseMode) create 125 Source/core/html/canvas/CanvasRenderingContext2D.h return SVGMatrixTearOff::create(state().m_transform); create 48 Source/core/html/canvas/DataView.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(uint8_t)); create 51 Source/core/html/canvas/DataView.cpp return create(buffer, 0, length); create 39 Source/core/html/canvas/DataView.h static PassRefPtr<DataView> create(unsigned length); create 40 Source/core/html/canvas/DataView.h static PassRefPtr<DataView> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned byteLength); create 37 Source/core/html/canvas/EXTFragDepth.h static PassRefPtr<EXTFragDepth> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/EXTTextureFilterAnisotropic.h static PassRefPtr<EXTTextureFilterAnisotropic> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESElementIndexUint.h static PassRefPtr<OESElementIndexUint> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESStandardDerivatives.h static PassRefPtr<OESStandardDerivatives> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESTextureFloat.h static PassRefPtr<OESTextureFloat> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESTextureFloatLinear.h static PassRefPtr<OESTextureFloatLinear> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESTextureHalfFloat.h static PassRefPtr<OESTextureHalfFloat> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/OESTextureHalfFloatLinear.h static PassRefPtr<OESTextureHalfFloatLinear> create(WebGLRenderingContextBase*); create 62 Source/core/html/canvas/OESVertexArrayObject.cpp RefPtr<WebGLVertexArrayObjectOES> o = WebGLVertexArrayObjectOES::create(m_context, WebGLVertexArrayObjectOES::VaoTypeUser); create 40 Source/core/html/canvas/OESVertexArrayObject.h static PassRefPtr<OESVertexArrayObject> create(WebGLRenderingContextBase*); create 44 Source/core/html/canvas/Path2D.h static PassRefPtr<Path2D> create() { return adoptRef(new Path2D); } create 45 Source/core/html/canvas/Path2D.h static PassRefPtr<Path2D> create(const String& pathData) { return adoptRef(new Path2D(pathData)); } create 46 Source/core/html/canvas/Path2D.h static PassRefPtr<Path2D> create(Path2D* path) { return adoptRef(new Path2D(path)); } create 48 Source/core/html/canvas/Path2D.h static PassRefPtr<Path2D> create(const Path& path) { return adoptRef(new Path2D(path)); } create 39 Source/core/html/canvas/WebGLActiveInfo.h static PassRefPtr<WebGLActiveInfo> create(const String& name, GLenum type, GLint size) create 40 Source/core/html/canvas/WebGLBuffer.h static PassRefPtr<WebGLBuffer> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLCompressedTextureATC.h static PassRefPtr<WebGLCompressedTextureATC> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/WebGLCompressedTexturePVRTC.h static PassRefPtr<WebGLCompressedTexturePVRTC> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLCompressedTextureS3TC.h static PassRefPtr<WebGLCompressedTextureS3TC> create(WebGLRenderingContextBase*); create 44 Source/core/html/canvas/WebGLContextAttributes.h static PassRefPtr<WebGLContextAttributes> create(); create 41 Source/core/html/canvas/WebGLContextEvent.h static PassRefPtrWillBeRawPtr<WebGLContextEvent> create() create 45 Source/core/html/canvas/WebGLContextEvent.h static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) create 49 Source/core/html/canvas/WebGLContextEvent.h static PassRefPtrWillBeRawPtr<WebGLContextEvent> create(const AtomicString& type, const WebGLContextEventInit& initializer) create 48 Source/core/html/canvas/WebGLContextGroup.h static PassRefPtr<WebGLContextGroup> create(); create 42 Source/core/html/canvas/WebGLDebugRendererInfo.h static PassRefPtr<WebGLDebugRendererInfo> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLDebugShaders.h static PassRefPtr<WebGLDebugShaders> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/WebGLDepthTexture.h static PassRefPtr<WebGLDepthTexture> create(WebGLRenderingContextBase*); create 37 Source/core/html/canvas/WebGLDrawBuffers.h static PassRefPtr<WebGLDrawBuffers> create(WebGLRenderingContextBase*); create 44 Source/core/html/canvas/WebGLFramebuffer.cpp static PassRefPtr<WebGLFramebuffer::WebGLAttachment> create(WebGLRenderbuffer*); create 144 Source/core/html/canvas/WebGLFramebuffer.cpp static PassRefPtr<WebGLFramebuffer::WebGLAttachment> create(WebGLTexture*, GLenum target, GLint level); create 281 Source/core/html/canvas/WebGLFramebuffer.cpp m_attachments.add(attachment, WebGLTextureAttachment::create(texture, texTarget, level)); create 294 Source/core/html/canvas/WebGLFramebuffer.cpp m_attachments.add(attachment, WebGLRenderbufferAttachment::create(renderbuffer)); create 67 Source/core/html/canvas/WebGLFramebuffer.h static PassRefPtr<WebGLFramebuffer> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLLoseContext.h static PassRefPtr<WebGLLoseContext> create(WebGLRenderingContextBase*); create 41 Source/core/html/canvas/WebGLProgram.h static PassRefPtr<WebGLProgram> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLRenderbuffer.h static PassRefPtr<WebGLRenderbuffer> create(WebGLRenderingContextBase*); create 66 Source/core/html/canvas/WebGLRenderingContext.cpp canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Web page was not allowed to create a WebGL context.")); create 74 Source/core/html/canvas/WebGLRenderingContext.cpp canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Web page was not allowed to create a WebGL context.")); create 81 Source/core/html/canvas/WebGLRenderingContext.cpp defaultAttrs = WebGLContextAttributes::create(); create 87 Source/core/html/canvas/WebGLRenderingContext.cpp canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Could not create a WebGL context.")); create 100 Source/core/html/canvas/WebGLRenderingContext.cpp canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Could not create a WebGL context.")); create 36 Source/core/html/canvas/WebGLRenderingContext.h static PassOwnPtr<WebGLRenderingContext> create(HTMLCanvasElement*, WebGLContextAttributes*); create 520 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_contextGroup = WebGLContextGroup::create(); create 530 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_drawingBuffer = DrawingBuffer::create(m_context.get(), clampedCanvasSize(), preserve, contextEvictionManager.release()); create 595 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_defaultVertexArrayObject = WebGLVertexArrayObjectOES::create(this, WebGLVertexArrayObjectOES::VaoTypeDefault); create 881 Source/core/html/canvas/WebGLRenderingContextBase.cpp return ImageData::create(IntSize(width, height), imageDataPixels); create 1483 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLBuffer> o = WebGLBuffer::create(this); create 1492 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLFramebuffer> o = WebGLFramebuffer::create(this); create 1501 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLTexture> o = WebGLTexture::create(this); create 1510 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLProgram> o = WebGLProgram::create(this); create 1519 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLRenderbuffer> o = WebGLRenderbuffer::create(this); create 1545 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtr<WebGLShader> o = WebGLShader::create(this, type); create 2000 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLActiveInfo::create(info.name, info.type, info.size); create 2010 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLActiveInfo::create(info.name, info.type, info.size); create 2244 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Uint32Array::create(m_compressedTextureFormats.data(), m_compressedTextureFormats.size())); create 2574 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLShaderPrecisionFormat::create(range[0], range[1], precision); create 2751 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Float32Array::create(value, length)); create 2758 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Int32Array::create(value, length)); create 2799 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLUniformLocation::create(program, uniformLocation); create 2831 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Float32Array::create(m_vertexAttribValue[index].value, 4)); create 4323 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Float32Array::create(value, length)); create 4343 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLGetInfo(Int32Array::create(value, length)); create 5342 Source/core/html/canvas/WebGLRenderingContextBase.cpp RefPtrWillBeRawPtr<WebGLContextEvent> event = WebGLContextEvent::create(EventTypeNames::webglcontextlost, false, true, ""); create 5382 Source/core/html/canvas/WebGLRenderingContextBase.cpp drawingBuffer = DrawingBuffer::create(context.get(), clampedCanvasSize(), preserve, contextEvictionManager.release()); create 5410 Source/core/html/canvas/WebGLRenderingContextBase.cpp canvas()->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextrestored, false, true, "")); create 5439 Source/core/html/canvas/WebGLRenderingContextBase.cpp OwnPtr<ImageBuffer> temp(ImageBuffer::create(size)); create 610 Source/core/html/canvas/WebGLRenderingContextBase.h m_extension = T::create(context); create 40 Source/core/html/canvas/WebGLShader.h static PassRefPtr<WebGLShader> create(WebGLRenderingContextBase*, GLenum); create 39 Source/core/html/canvas/WebGLShaderPrecisionFormat.h static PassRefPtr<WebGLShaderPrecisionFormat> create(GLint rangeMin, GLint rangeMax, GLint precision); create 45 Source/core/html/canvas/WebGLTexture.h static PassRefPtr<WebGLTexture> create(WebGLRenderingContextBase*); create 39 Source/core/html/canvas/WebGLUniformLocation.h static PassRefPtr<WebGLUniformLocation> create(WebGLProgram*, GLint location); create 45 Source/core/html/canvas/WebGLVertexArrayObjectOES.h static PassRefPtr<WebGLVertexArrayObjectOES> create(WebGLRenderingContextBase*, VaoType); create 48 Source/core/html/forms/BaseButtonInputType.cpp element().userAgentShadowRoot()->appendChild(Text::create(element().document(), element().valueWithDefault())); create 64 Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.cpp RefPtr<HTMLDivElement> valueContainer = HTMLDivElement::create(element().document()); create 341 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp container->appendChild(DateTimeEditElement::create(document, *this)); create 343 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp container->appendChild(ClearButtonElement::create(document, *this)); create 344 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp container->appendChild(SpinButtonElement::create(document, *this)); create 348 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp container->appendChild(PickerIndicatorElement::create(document, *this)); create 40 Source/core/html/forms/ButtonInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/CheckboxInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 131 Source/core/html/forms/ColorInputType.cpp RefPtr<HTMLDivElement> wrapperElement = HTMLDivElement::create(document); create 133 Source/core/html/forms/ColorInputType.cpp RefPtr<HTMLDivElement> colorSwatch = HTMLDivElement::create(document); create 41 Source/core/html/forms/ColorInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 49 Source/core/html/forms/DateInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 49 Source/core/html/forms/DateTimeLocalInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/EmailInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 53 Source/core/html/forms/FileInputType.cpp , m_fileList(FileList::create()) create 119 Source/core/html/forms/FileInputType.cpp encoding.appendBlob(element().name(), File::create("")); create 215 Source/core/html/forms/FileInputType.cpp RefPtrWillBeRawPtr<FileList> fileList(FileList::create()); create 254 Source/core/html/forms/FileInputType.cpp RefPtr<HTMLInputElement> button = HTMLInputElement::create(element().document(), 0, false); create 47 Source/core/html/forms/FileInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 180 Source/core/html/forms/FormController.cpp static PassOwnPtr<SavedFormState> create(); create 396 Source/core/html/forms/FormController.cpp OwnPtr<FormKeyGenerator> keyGenerator = FormKeyGenerator::create(); create 405 Source/core/html/forms/FormController.cpp result.storedValue->value = SavedFormState::create(); create 437 Source/core/html/forms/FormController.cpp m_formKeyGenerator = FormKeyGenerator::create(); create 77 Source/core/html/forms/FormController.h static PassOwnPtr<FormController> create() create 40 Source/core/html/forms/HiddenInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 123 Source/core/html/forms/ImageInputType.cpp image->setImageResource(RenderImageResource::create()); create 43 Source/core/html/forms/ImageInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 84 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::button, ButtonInputType::create); create 85 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::checkbox, CheckboxInputType::create); create 86 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::color, ColorInputType::create); create 87 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::date, DateInputType::create); create 88 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::datetime_local, DateTimeLocalInputType::create); create 89 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::email, EmailInputType::create); create 90 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::file, FileInputType::create); create 91 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::hidden, HiddenInputType::create); create 92 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::image, ImageInputType::create); create 93 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::month, MonthInputType::create); create 94 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::number, NumberInputType::create); create 95 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::password, PasswordInputType::create); create 96 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::radio, RadioInputType::create); create 97 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::range, RangeInputType::create); create 98 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::reset, ResetInputType::create); create 99 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::search, SearchInputType::create); create 100 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::submit, SubmitInputType::create); create 101 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::tel, TelephoneInputType::create); create 102 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::time, TimeInputType::create); create 103 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::url, URLInputType::create); create 104 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::week, WeekInputType::create); create 119 Source/core/html/forms/InputType.cpp factory = TextInputType::create; create 125 Source/core/html/forms/InputType.cpp return TextInputType::create(element); create 61 Source/core/html/forms/InputType.h static PassRefPtr<InputType> create(HTMLInputElement&, const AtomicString&); create 73 Source/core/html/forms/InputTypeView.h static PassRefPtr<InputTypeView> create(HTMLInputElement&); create 47 Source/core/html/forms/MonthInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 42 Source/core/html/forms/NumberInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 88 Source/core/html/forms/PasswordInputType.cpp RefPtr<PasswordGeneratorButtonElement> generatorButton = PasswordGeneratorButtonElement::create(element().document()); create 41 Source/core/html/forms/PasswordInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 32 Source/core/html/forms/RadioButtonGroupScope.cpp static PassOwnPtr<RadioButtonGroup> create(); create 198 Source/core/html/forms/RadioButtonGroupScope.cpp group = RadioButtonGroup::create(); create 40 Source/core/html/forms/RadioInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 248 Source/core/html/forms/RangeInputType.cpp RefPtr<HTMLDivElement> track = HTMLDivElement::create(document); create 251 Source/core/html/forms/RangeInputType.cpp track->appendChild(SliderThumbElement::create(document)); create 252 Source/core/html/forms/RangeInputType.cpp RefPtr<HTMLElement> container = SliderContainerElement::create(document); create 43 Source/core/html/forms/RangeInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/ResetInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 98 Source/core/html/forms/SearchInputType.cpp container->insertBefore(SearchFieldDecorationElement::create(element().document()), viewPort); create 99 Source/core/html/forms/SearchInputType.cpp container->insertBefore(SearchFieldCancelButtonElement::create(element().document()), viewPort->nextSibling()); create 44 Source/core/html/forms/SearchInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/SubmitInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/TelephoneInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 294 Source/core/html/forms/TextFieldInputType.cpp RefPtr<TextControlInnerTextElement> innerEditor = TextControlInnerTextElement::create(document); create 300 Source/core/html/forms/TextFieldInputType.cpp RefPtr<TextControlInnerContainer> container = TextControlInnerContainer::create(document); create 304 Source/core/html/forms/TextFieldInputType.cpp RefPtr<EditingViewPortElement> editingViewPort = EditingViewPortElement::create(document); create 310 Source/core/html/forms/TextFieldInputType.cpp container->appendChild(InputFieldSpeechButtonElement::create(document)); create 314 Source/core/html/forms/TextFieldInputType.cpp container->appendChild(DataListIndicatorElement::create(document)); create 319 Source/core/html/forms/TextFieldInputType.cpp container->appendChild(SpinButtonElement::create(document, *this)); create 346 Source/core/html/forms/TextFieldInputType.cpp container->insertBefore(DataListIndicatorElement::create(document), spinButtonElement()); create 351 Source/core/html/forms/TextFieldInputType.cpp RefPtr<Element> rpContainer = TextControlInnerContainer::create(document); create 355 Source/core/html/forms/TextFieldInputType.cpp RefPtr<Element> editingViewPort = EditingViewPortElement::create(document); create 358 Source/core/html/forms/TextFieldInputType.cpp rpContainer->appendChild(DataListIndicatorElement::create(document)); create 468 Source/core/html/forms/TextFieldInputType.cpp RefPtr<HTMLElement> newElement = HTMLDivElement::create(element().document()); create 40 Source/core/html/forms/TextInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 47 Source/core/html/forms/TimeInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 40 Source/core/html/forms/URLInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 48 Source/core/html/forms/ValidationMessage.h static PassOwnPtr<ValidationMessage> create(HTMLFormControlElement*); create 47 Source/core/html/forms/WeekInputType.h static PassRefPtr<InputType> create(HTMLInputElement&); create 175 Source/core/html/ime/InputMethodContext.cpp dispatchEvent(Event::create(EventTypeNames::candidatewindowshow)); create 180 Source/core/html/ime/InputMethodContext.cpp dispatchEvent(Event::create(EventTypeNames::candidatewindowupdate)); create 185 Source/core/html/ime/InputMethodContext.cpp dispatchEvent(Event::create(EventTypeNames::candidatewindowhide)); create 51 Source/core/html/ime/InputMethodContext.h static PassOwnPtr<InputMethodContext> create(HTMLElement*); create 190 Source/core/html/imports/HTMLImportChild.cpp m_loader = HTMLImportLoader::create(); create 96 Source/core/html/imports/HTMLImportLoader.cpp m_importedDocument = HTMLDocument::create(init); create 97 Source/core/html/imports/HTMLImportLoader.cpp m_writer = DocumentWriter::create(m_importedDocument.get(), response.mimeType(), response.textEncodingName()); create 60 Source/core/html/imports/HTMLImportLoader.h static PassRefPtr<HTMLImportLoader> create() create 52 Source/core/html/imports/LinkImport.h static PassOwnPtr<LinkImport> create(HTMLLinkElement* owner); create 88 Source/core/html/parser/BackgroundHTMLParser.cpp , m_tokenizer(HTMLTokenizer::create(config->options)) create 218 Source/core/html/parser/CSSPreloadScanner.cpp OwnPtr<PreloadRequest> request = PreloadRequest::create(FetchInitiatorTypeNames::css, position, url, baseElementURL, Resource::CSSStyleSheet); create 258 Source/core/html/parser/HTMLConstructionSite.cpp task.child = Text::create(task.parent->document(), substring); create 381 Source/core/html/parser/HTMLConstructionSite.cpp RefPtr<HTMLHtmlElement> element = HTMLHtmlElement::create(*m_document); create 384 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.pushHTMLHtmlElement(HTMLStackItem::create(element, token)); create 542 Source/core/html/parser/HTMLConstructionSite.cpp RefPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId); create 564 Source/core/html/parser/HTMLConstructionSite.cpp attachLater(currentNode(), Comment::create(ownerDocumentForCurrentNode(), token->comment())); create 571 Source/core/html/parser/HTMLConstructionSite.cpp attachLater(m_attachmentRoot, Comment::create(*m_document, token->comment())); create 578 Source/core/html/parser/HTMLConstructionSite.cpp attachLater(parent, Comment::create(parent->document(), token->comment())); create 584 Source/core/html/parser/HTMLConstructionSite.cpp m_head = HTMLStackItem::create(createHTMLElement(token), token); create 594 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.pushHTMLBodyElement(HTMLStackItem::create(body.release(), token)); create 606 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.push(HTMLStackItem::create(m_form, token)); create 613 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.push(HTMLStackItem::create(element.release(), token)); create 645 Source/core/html/parser/HTMLConstructionSite.cpp RefPtr<HTMLScriptElement> element = HTMLScriptElement::create(ownerDocumentForCurrentNode(), parserInserted, alreadyStarted); create 649 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.push(HTMLStackItem::create(element.release(), token)); create 661 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.push(HTMLStackItem::create(element.release(), token, namespaceURI)); create 760 Source/core/html/parser/HTMLConstructionSite.cpp return HTMLStackItem::create(element.release(), &fakeToken, item->namespaceURI()); create 105 Source/core/html/parser/HTMLDocumentParser.cpp , m_tokenizer(m_options.useThreading ? nullptr : HTMLTokenizer::create(m_options)) create 106 Source/core/html/parser/HTMLDocumentParser.cpp , m_scriptRunner(HTMLScriptRunner::create(document, this)) create 107 Source/core/html/parser/HTMLDocumentParser.cpp , m_treeBuilder(HTMLTreeBuilder::create(this, document, parserContentPolicy(), reportErrors, m_options)) create 108 Source/core/html/parser/HTMLDocumentParser.cpp , m_parserScheduler(HTMLParserScheduler::create(this)) create 126 Source/core/html/parser/HTMLDocumentParser.cpp , m_tokenizer(HTMLTokenizer::create(m_options)) create 127 Source/core/html/parser/HTMLDocumentParser.cpp , m_treeBuilder(HTMLTreeBuilder::create(this, fragment, contextElement, this->parserContentPolicy(), m_options)) create 161 Source/core/html/parser/HTMLDocumentParser.cpp m_tokenizer = HTMLTokenizer::create(m_options); create 543 Source/core/html/parser/HTMLDocumentParser.cpp RefPtr<MediaValues> mediaValues = MediaValues::create(document, MediaValues::CachingMode); create 673 Source/core/html/parser/HTMLDocumentParser.cpp m_tokenizer = HTMLTokenizer::create(m_options); create 848 Source/core/html/parser/HTMLDocumentParser.cpp m_tokenizer = HTMLTokenizer::create(m_options); create 983 Source/core/html/parser/HTMLDocumentParser.cpp RefPtr<HTMLDocumentParser> parser = HTMLDocumentParser::create(fragment, contextElement, parserContentPolicy); create 71 Source/core/html/parser/HTMLDocumentParser.h static PassRefPtr<HTMLDocumentParser> create(HTMLDocument* document, bool reportErrors) create 121 Source/core/html/parser/HTMLDocumentParser.h static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy) create 43 Source/core/html/parser/HTMLMetaCharsetParser.cpp : m_tokenizer(HTMLTokenizer::create(HTMLParserOptions(0))) create 42 Source/core/html/parser/HTMLMetaCharsetParser.h static PassOwnPtr<HTMLMetaCharsetParser> create() { return adoptPtr(new HTMLMetaCharsetParser()); } create 63 Source/core/html/parser/HTMLParserScheduler.h static PassOwnPtr<HTMLParserScheduler> create(HTMLDocumentParser* parser) create 154 Source/core/html/parser/HTMLPreloadScanner.cpp OwnPtr<PreloadRequest> request = PreloadRequest::create(initiatorFor(m_tagImpl), position, m_urlToLoad, predictedBaseURL, resourceType()); create 390 Source/core/html/parser/HTMLPreloadScanner.cpp , m_tokenizer(HTMLTokenizer::create(options)) create 38 Source/core/html/parser/HTMLResourcePreloader.h static PassOwnPtr<PreloadRequest> create(const String& initiatorName, const TextPosition& initiatorPosition, const String& resourceURL, const KURL& baseURL, Resource::Type resourceType) create 90 Source/core/html/parser/HTMLScriptRunner.cpp return Event::create(EventTypeNames::load); create 47 Source/core/html/parser/HTMLScriptRunner.h static PassOwnPtr<HTMLScriptRunner> create(Document* document, HTMLScriptRunnerHost* host) create 50 Source/core/html/parser/HTMLStackItem.h static PassRefPtr<HTMLStackItem> create(PassRefPtr<ContainerNode> node, ItemType type) create 56 Source/core/html/parser/HTMLStackItem.h static PassRefPtr<HTMLStackItem> create(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI) create 41 Source/core/html/parser/HTMLTokenizer.h static PassOwnPtr<HTMLTokenizer> create(const HTMLParserOptions& options) { return adoptPtr(new HTMLTokenizer(options)); } create 305 Source/core/html/parser/HTMLTreeBuilder.cpp m_tree.openElements()->pushRootNode(HTMLStackItem::create(fragment, HTMLStackItem::ItemForDocumentFragmentNode)); create 340 Source/core/html/parser/HTMLTreeBuilder.cpp m_contextElementStackItem = HTMLStackItem::create(contextElement, HTMLStackItem::ItemForContextElement); create 56 Source/core/html/parser/HTMLTreeBuilder.h static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, HTMLDocument* document, ParserContentPolicy parserContentPolicy, bool reportErrors, const HTMLParserOptions& options) create 60 Source/core/html/parser/HTMLTreeBuilder.h static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options) create 38 Source/core/html/parser/HTMLViewSourceParser.cpp , m_tokenizer(HTMLTokenizer::create(HTMLParserOptions(document))) create 39 Source/core/html/parser/HTMLViewSourceParser.h static PassRefPtr<HTMLViewSourceParser> create(HTMLViewSourceDocument* document, const String& mimeType) create 35 Source/core/html/parser/TextDocumentParser.h static PassRefPtr<TextDocumentParser> create(HTMLDocument* document) create 335 Source/core/html/parser/TextResourceDecoder.cpp m_charsetParser = HTMLMetaCharsetParser::create(); create 48 Source/core/html/parser/TextResourceDecoder.h static PassOwnPtr<TextResourceDecoder> create(const String& mimeType, const WTF::TextEncoding& defaultEncoding = WTF::TextEncoding(), bool usesEncodingDetector = false) create 360 Source/core/html/parser/XSSAuditor.cpp OwnPtr<XSSInfo> xssInfo = XSSInfo::create(m_documentURL, didBlockEntirePage, m_didSendValidXSSProtectionHeader, m_didSendValidCSPHeader); create 87 Source/core/html/parser/XSSAuditorDelegate.cpp RefPtr<JSONObject> reportDetails = JSONObject::create(); create 91 Source/core/html/parser/XSSAuditorDelegate.cpp RefPtr<JSONObject> reportObject = JSONObject::create(); create 94 Source/core/html/parser/XSSAuditorDelegate.cpp return FormData::create(reportObject->toJSONString().utf8().data()); create 43 Source/core/html/parser/XSSAuditorDelegate.h static PassOwnPtr<XSSInfo> create(const String& originalURL, bool didBlockEntirePage, bool didSendXSSProtectionHeader, bool didSendCSPHeader) create 44 Source/core/html/shadow/ClearButtonElement.h static PassRefPtr<ClearButtonElement> create(Document&, ClearButtonOwner&); create 150 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeDayFieldElement::create(document, m_editElement, m_parameters.placeholderForDay, m_dayRange); create 161 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeHour11FieldElement::create(document, m_editElement, m_hour23Range, step); create 172 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeHour12FieldElement::create(document, m_editElement, m_hour23Range, step); create 183 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeHour23FieldElement::create(document, m_editElement, m_hour23Range, step); create 194 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeHour24FieldElement::create(document, m_editElement, m_hour23Range, step); create 205 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeNumericFieldElement> field = DateTimeMinuteFieldElement::create(document, m_editElement, m_minuteRange, step); create 228 Source/core/html/shadow/DateTimeEditElement.cpp field = DateTimeSymbolicMonthFieldElement::create(document, m_editElement, fieldType == DateTimeFormat::FieldTypeMonth ? m_parameters.locale.shortMonthLabels() : m_parameters.locale.shortStandAloneMonthLabels(), minMonth, maxMonth); create 231 Source/core/html/shadow/DateTimeEditElement.cpp field = DateTimeSymbolicMonthFieldElement::create(document, m_editElement, fieldType == DateTimeFormat::FieldTypeMonth ? m_parameters.locale.monthLabels() : m_parameters.locale.standAloneMonthLabels(), minMonth, maxMonth); create 234 Source/core/html/shadow/DateTimeEditElement.cpp field = DateTimeMonthFieldElement::create(document, m_editElement, m_parameters.placeholderForMonth, DateTimeNumericFieldElement::Range(minMonth + 1, maxMonth + 1)); create 246 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeAMPMFieldElement::create(document, m_editElement, m_parameters.locale.timeAMPMLabels()); create 257 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeNumericFieldElement> field = DateTimeSecondFieldElement::create(document, m_editElement, m_secondRange, step); create 273 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeNumericFieldElement> field = DateTimeMillisecondFieldElement::create(document, m_editElement, m_millisecondRange, step); create 291 Source/core/html/shadow/DateTimeEditElement.cpp m_editElement.addField(DateTimeWeekFieldElement::create(document, m_editElement, range)); create 316 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<DateTimeFieldElement> field = DateTimeYearFieldElement::create(document, m_editElement, yearParams); create 404 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<HTMLDivElement> element = HTMLDivElement::create(m_editElement.document()); create 409 Source/core/html/shadow/DateTimeEditElement.cpp element->appendChild(Text::create(m_editElement.document(), String(&rightToLeftMark, 1))); create 411 Source/core/html/shadow/DateTimeEditElement.cpp element->appendChild(Text::create(m_editElement.document(), text)); create 654 Source/core/html/shadow/DateTimeEditElement.cpp RefPtr<HTMLDivElement> element = HTMLDivElement::create(document()); create 82 Source/core/html/shadow/DateTimeEditElement.h static PassRefPtr<DateTimeEditElement> create(Document&, EditControlOwner&); create 150 Source/core/html/shadow/DateTimeFieldElement.cpp appendChild(Text::create(document(), visibleValue())); create 39 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeAMPMFieldElement> create(Document&, FieldOwner&, const Vector<String>&); create 54 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeDayFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&); create 82 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeHour11FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 96 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeHour12FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 110 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeHour23FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 124 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeHour24FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 138 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeMillisecondFieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 153 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeMinuteFieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 168 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeMonthFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&); create 183 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeSecondFieldElement> create(Document&, FieldOwner&, const Range&, const Step&); create 198 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeSymbolicMonthFieldElement> create(Document&, FieldOwner&, const Vector<String>&, int minimum, int maximum); create 213 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeWeekFieldElement> create(Document&, FieldOwner&, const Range&); create 244 Source/core/html/shadow/DateTimeFieldElements.h static PassRefPtr<DateTimeYearFieldElement> create(Document&, FieldOwner&, const Parameters&); create 44 Source/core/html/shadow/DetailsMarkerControl.h static PassRefPtr<DetailsMarkerControl> create(Document&); create 53 Source/core/html/shadow/DetailsMarkerControl.h inline PassRefPtr<DetailsMarkerControl> DetailsMarkerControl::create(Document& document) create 41 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlPanelElement> create(MediaControls&); create 68 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlPanelEnclosureElement> create(MediaControls&); create 79 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlOverlayEnclosureElement> create(MediaControls&); create 90 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlMuteButtonElement> create(MediaControls&); create 106 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlPlayButtonElement> create(MediaControls&); create 122 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlOverlayPlayButtonElement> create(MediaControls&); create 136 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlToggleClosedCaptionsButtonElement> create(MediaControls&); create 153 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlTimelineElement> create(MediaControls&); create 173 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlFullscreenButtonElement> create(MediaControls&); create 190 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlVolumeSliderElement> create(MediaControls&); create 207 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlTimeRemainingDisplayElement> create(MediaControls&); create 218 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlCurrentTimeDisplayElement> create(MediaControls&); create 229 Source/core/html/shadow/MediaControlElements.h static PassRefPtr<MediaControlTextTrackContainerElement> create(MediaControls&); create 86 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlOverlayEnclosureElement> overlayEnclosure = MediaControlOverlayEnclosureElement::create(*this); create 87 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlOverlayPlayButtonElement> overlayPlayButton = MediaControlOverlayPlayButtonElement::create(*this); create 100 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlPanelEnclosureElement> enclosure = MediaControlPanelEnclosureElement::create(*this); create 102 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(*this); create 104 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlPlayButtonElement> playButton = MediaControlPlayButtonElement::create(*this); create 110 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlTimelineElement> timeline = MediaControlTimelineElement::create(*this); create 116 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlCurrentTimeDisplayElement> currentTimeDisplay = MediaControlCurrentTimeDisplayElement::create(*this); create 123 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlTimeRemainingDisplayElement> durationDisplay = MediaControlTimeRemainingDisplayElement::create(*this); create 129 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlMuteButtonElement> muteButton = MediaControlMuteButtonElement::create(*this); create 135 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlVolumeSliderElement> slider = MediaControlVolumeSliderElement::create(*this); create 141 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlToggleClosedCaptionsButtonElement> toggleClosedCaptionsButton = MediaControlToggleClosedCaptionsButtonElement::create(*this); create 147 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlFullscreenButtonElement> fullscreenButton = MediaControlFullscreenButtonElement::create(*this); create 426 Source/core/html/shadow/MediaControls.cpp RefPtr<MediaControlTextTrackContainerElement> textDisplayContainer = MediaControlTextTrackContainerElement::create(*this); create 40 Source/core/html/shadow/MediaControls.h static PassRefPtr<MediaControls> create(HTMLMediaElement&); create 53 Source/core/html/shadow/MeterShadowElement.h static PassRefPtr<MeterInnerElement> create(Document&); create 66 Source/core/html/shadow/MeterShadowElement.h static PassRefPtr<MeterBarElement> create(Document&); create 71 Source/core/html/shadow/MeterShadowElement.h static PassRefPtr<MeterValueElement> create(Document&); create 96 Source/core/html/shadow/PasswordGeneratorButtonElement.cpp image->setImageResource(RenderImageResource::create()); create 45 Source/core/html/shadow/PasswordGeneratorButtonElement.h static PassRefPtr<PasswordGeneratorButtonElement> create(Document&); create 58 Source/core/html/shadow/PickerIndicatorElement.h static PassRefPtr<PickerIndicatorElement> create(Document&, PickerIndicatorOwner&); create 53 Source/core/html/shadow/ProgressShadowElement.h static PassRefPtr<ProgressInnerElement> create(Document&); create 62 Source/core/html/shadow/ProgressShadowElement.h inline PassRefPtr<ProgressInnerElement> ProgressInnerElement::create(Document& document) create 69 Source/core/html/shadow/ProgressShadowElement.h static PassRefPtr<ProgressBarElement> create(Document&); create 75 Source/core/html/shadow/ProgressShadowElement.h inline PassRefPtr<ProgressBarElement> ProgressBarElement::create(Document& document) create 82 Source/core/html/shadow/ProgressShadowElement.h static PassRefPtr<ProgressValueElement> create(Document&); create 89 Source/core/html/shadow/ProgressShadowElement.h inline PassRefPtr<ProgressValueElement> ProgressValueElement::create(Document& document) create 49 Source/core/html/shadow/SliderThumbElement.h static PassRefPtr<SliderThumbElement> create(Document&); create 78 Source/core/html/shadow/SliderThumbElement.h return create(document()); create 99 Source/core/html/shadow/SliderThumbElement.h static PassRefPtr<SliderContainerElement> create(Document&); create 57 Source/core/html/shadow/SpinButtonElement.h static PassRefPtr<SpinButtonElement> create(Document&, SpinButtonOwner&); create 86 Source/core/html/shadow/TextControlInnerElements.cpp RefPtr<RenderStyle> style = RenderStyle::create(); create 393 Source/core/html/shadow/TextControlInnerElements.cpp input->dispatchEvent(TextEvent::create(document().domWindow(), results.isEmpty() ? "" : results[0]->utterance(), TextEventInputOther)); create 398 Source/core/html/shadow/TextControlInnerElements.cpp input->dispatchEvent(SpeechInputEvent::create(EventTypeNames::webkitspeechchange, results)); create 40 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<TextControlInnerContainer> create(Document&); create 48 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<EditingViewPortElement> create(Document&); create 60 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<TextControlInnerTextElement> create(Document&); create 73 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<SearchFieldDecorationElement> create(Document&); create 86 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<SearchFieldCancelButtonElement> create(Document&); create 111 Source/core/html/shadow/TextControlInnerElements.h static PassRefPtr<InputFieldSpeechButtonElement> create(Document&); create 100 Source/core/html/track/InbandTextTrack.cpp RefPtr<VTTCue> cue = VTTCue::create(document(), start, end, content); create 46 Source/core/html/track/InbandTextTrack.h static PassRefPtr<InbandTextTrack> create(Document&, blink::WebInbandTextTrack*); create 105 Source/core/html/track/LoadableTextTrack.cpp m_loader = TextTrackLoader::create(*this, m_trackElement->document()); create 118 Source/core/html/track/LoadableTextTrack.cpp m_cues = TextTrackCueList::create(); create 40 Source/core/html/track/LoadableTextTrack.h static PassRefPtr<LoadableTextTrack> create(HTMLTrackElement* track) create 286 Source/core/html/track/TextTrack.cpp m_regions = VTTRegionList::create(); create 406 Source/core/html/track/TextTrack.cpp m_cues = TextTrackCueList::create(); create 50 Source/core/html/track/TextTrack.h static PassRefPtr<TextTrack> create(Document& document, const AtomicString& kind, const AtomicString& label, const AtomicString& language) create 66 Source/core/html/track/TextTrackCueList.cpp m_activeCues = create(); create 39 Source/core/html/track/TextTrackCueList.h static PassRefPtr<TextTrackCueList> create() create 41 Source/core/html/track/TextTrackList.cpp , m_asyncEventQueue(GenericEventQueue::create(this)) create 281 Source/core/html/track/TextTrackList.cpp m_asyncEventQueue->enqueueEvent(TrackEvent::create(eventName, initializer)); create 309 Source/core/html/track/TextTrackList.cpp m_asyncEventQueue->enqueueEvent(Event::create(EventTypeNames::change, initializer)); create 46 Source/core/html/track/TextTrackList.h static PassRefPtr<TextTrackList> create(HTMLMediaElement* owner) create 44 Source/core/html/track/TrackEvent.h static PassRefPtrWillBeRawPtr<TrackEvent> create() create 49 Source/core/html/track/TrackEvent.h static PassRefPtrWillBeRawPtr<TrackEvent> create(const AtomicString& type, const TrackEventInit& initializer) create 214 Source/core/html/track/vtt/VTTCue.cpp , m_cueBackgroundBox(HTMLDivElement::create(document)) create 239 Source/core/html/track/vtt/VTTCue.cpp m_displayTree = VTTCueBox::create(document(), this); create 439 Source/core/html/track/vtt/VTTCue.cpp RefPtr<DocumentFragment> clonedFragment = DocumentFragment::create(document()); create 448 Source/core/html/track/vtt/VTTCue.cpp clonedFragment = DocumentFragment::create(document()); create 45 Source/core/html/track/vtt/VTTCue.h static PassRefPtr<VTTCueBox> create(Document& document, VTTCue* cue) create 63 Source/core/html/track/vtt/VTTCue.h static PassRefPtr<VTTCue> create(Document& document, double startTime, double endTime, const String& text) create 81 Source/core/html/track/vtt/VTTElement.cpp RefPtr<VTTElement> clone = create(static_cast<VTTNodeType>(m_webVTTNodeType), &document()); create 44 Source/core/html/track/vtt/VTTElement.h static PassRefPtr<VTTElement> create(const VTTNodeType, Document*); create 45 Source/core/html/track/vtt/VTTElement.h static PassRefPtr<VTTElement> create(const QualifiedName&, Document*); create 85 Source/core/html/track/vtt/VTTParser.cpp , m_decoder(TextResourceDecoder::create("text/plain", UTF8Encoding())) create 340 Source/core/html/track/vtt/VTTParser.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(m_document); create 343 Source/core/html/track/vtt/VTTParser.cpp fragment->parserAppendChild(Text::create(m_document, "")); create 366 Source/core/html/track/vtt/VTTParser.cpp RefPtr<VTTCue> cue = VTTCue::create(*m_document, m_currentStartTime, m_currentEndTime, m_currentContent.toString()); create 390 Source/core/html/track/vtt/VTTParser.cpp RefPtr<VTTRegion> region = VTTRegion::create(); create 491 Source/core/html/track/vtt/VTTParser.cpp RefPtr<Text> child = Text::create(document, m_token.characters()); create 505 Source/core/html/track/vtt/VTTParser.cpp RefPtr<VTTElement> child = VTTElement::create(nodeType, &document); create 552 Source/core/html/track/vtt/VTTParser.cpp m_currentNode->parserAppendChild(ProcessingInstruction::create(document, "timestamp", charactersString)); create 70 Source/core/html/track/vtt/VTTParser.h static PassOwnPtr<VTTParser> create(VTTParserClient* client, Document& document) create 328 Source/core/html/track/vtt/VTTRegion.cpp m_regionDisplayTree = HTMLDivElement::create(document); create 435 Source/core/html/track/vtt/VTTRegion.cpp m_cueContainer = HTMLDivElement::create(m_regionDisplayTree->document()); create 50 Source/core/html/track/vtt/VTTRegion.h static PassRefPtr<VTTRegion> create() create 38 Source/core/html/track/vtt/VTTRegionList.h static PassRefPtr<VTTRegionList> create() create 191 Source/core/inspector/ConsoleMessage.cpp RefPtr<TypeBuilder::Console::ConsoleMessage> jsonObj = TypeBuilder::Console::ConsoleMessage::create() create 208 Source/core/inspector/ConsoleMessage.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create(); create 86 Source/core/inspector/ContentSearchUtils.cpp return TypeBuilder::Page::SearchMatch::create() create 119 Source/core/inspector/ContentSearchUtils.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> > result = TypeBuilder::Array<TypeBuilder::Page::SearchMatch>::create(); create 87 Source/core/inspector/DOMPatchSupport.cpp newDocument = HTMLDocument::create(); create 91 Source/core/inspector/DOMPatchSupport.cpp newDocument = XMLDocument::create(); create 97 Source/core/inspector/DOMPatchSupport.cpp parser = HTMLDocumentParser::create(toHTMLDocument(newDocument.get()), false); create 99 Source/core/inspector/DOMPatchSupport.cpp parser = XMLDocumentParser::create(newDocument.get(), 0); create 123 Source/core/inspector/DOMPatchSupport.cpp RefPtr<DocumentFragment> fragment = DocumentFragment::create(m_document); create 247 Source/core/inspector/InjectedScript.cpp return Array<CallFrame>::create(); create 112 Source/core/inspector/InjectedScriptBase.cpp *result = JSONString::create(String::format("Object has too long reference chain(must not be longer than %d)", JSONValue::maxDepth)); create 114 Source/core/inspector/InjectedScriptBase.cpp *result = JSONString::create("Exception while making a call."); create 61 Source/core/inspector/InjectedScriptHost.h static PassRefPtr<InjectedScriptHost> create(); create 56 Source/core/inspector/InjectedScriptManager.cpp , m_injectedScriptHost(InjectedScriptHost::create()) create 100 Source/core/inspector/InspectorApplicationCacheAgent.cpp result = TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest>::create(); create 112 Source/core/inspector/InspectorApplicationCacheAgent.cpp RefPtr<TypeBuilder::ApplicationCache::FrameWithManifest> value = TypeBuilder::ApplicationCache::FrameWithManifest::create() create 157 Source/core/inspector/InspectorApplicationCacheAgent.cpp return TypeBuilder::ApplicationCache::ApplicationCache::create() create 168 Source/core/inspector/InspectorApplicationCacheAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::ApplicationCacheResource> > resources = TypeBuilder::Array<TypeBuilder::ApplicationCache::ApplicationCacheResource>::create(); create 196 Source/core/inspector/InspectorApplicationCacheAgent.cpp RefPtr<TypeBuilder::ApplicationCache::ApplicationCacheResource> value = TypeBuilder::ApplicationCache::ApplicationCacheResource::create() create 46 Source/core/inspector/InspectorApplicationCacheAgent.h static PassOwnPtr<InspectorApplicationCacheAgent> create(InspectorPageAgent* pageAgent) create 693 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> > pseudoElements = TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches>::create(); create 697 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::PseudoIdMatches> matches = TypeBuilder::CSS::PseudoIdMatches::create() create 709 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> > entries = TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry>::create(); create 714 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::InheritedStyleEntry> entry = TypeBuilder::CSS::InheritedStyleEntry::create() create 751 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); create 752 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<InspectorStyle> inspectorStyle = InspectorStyle::create(InspectorCSSId(), computedStyleInfo, 0); create 781 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<CSSComputedStyleDeclaration> computedStyleInfo = CSSComputedStyleDeclaration::create(node, true); create 811 Source/core/inspector/InspectorCSSAgent.cpp platformFonts = TypeBuilder::Array<TypeBuilder::CSS::PlatformFontUsage>::create(); create 813 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::PlatformFontUsage> platformFont = TypeBuilder::CSS::PlatformFontUsage::create() create 1008 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::CSSMedia> mediaObject = TypeBuilder::CSS::CSSMedia::create() create 1034 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> > mediaArray = TypeBuilder::Array<TypeBuilder::CSS::CSSMedia>::create(); create 1106 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<InspectorStyleSheetForInlineStyle> inspectorStyleSheet = InspectorStyleSheetForInlineStyle::create(newStyleSheetId, element, this); create 1165 Source/core/inspector/InspectorCSSAgent.cpp inspectorStyleSheet = InspectorStyleSheet::create(m_pageAgent, m_resourceAgent, id, styleSheet, detectOrigin(styleSheet, document), InspectorDOMAgent::documentURLString(document), this); create 1275 Source/core/inspector/InspectorCSSAgent.cpp m_inspectorUserAgentStyleSheet = CSSStyleSheet::create(CSSDefaultStyleSheets::instance().defaultStyleSheet()); create 1295 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> > result = TypeBuilder::Array<TypeBuilder::CSS::RuleMatch>::create(); create 1304 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::Array<int> > matchingSelectors = TypeBuilder::Array<int>::create(); create 1318 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<TypeBuilder::CSS::RuleMatch> match = TypeBuilder::CSS::RuleMatch::create() create 1339 Source/core/inspector/InspectorCSSAgent.cpp RefPtr<InspectorStyle> inspectorStyle = InspectorStyle::create(InspectorCSSId(), mutableAttributeStyle->ensureCSSStyleDeclaration(), 0); create 100 Source/core/inspector/InspectorCSSAgent.h static PassOwnPtr<InspectorCSSAgent> create(InspectorDOMAgent* domAgent, InspectorPageAgent* pageAgent, InspectorResourceAgent* resourceAgent) create 57 Source/core/inspector/InspectorCanvasAgent.h static PassOwnPtr<InspectorCanvasAgent> create(InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager) create 73 Source/core/inspector/InspectorController.cpp : m_instrumentingAgents(InstrumentingAgents::create()) create 76 Source/core/inspector/InspectorController.cpp , m_overlay(InspectorOverlay::create(page, inspectorClient)) create 87 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorInspectorAgent::create(m_page, injectedScriptManager)); create 89 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_page, injectedScriptManager, inspectorClient, overlay)); create 93 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorDOMAgent> domAgentPtr(InspectorDOMAgent::create(m_pageAgent, injectedScriptManager, overlay)); create 98 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorLayerTreeAgent> layerTreeAgentPtr(InspectorLayerTreeAgent::create(m_domAgent, m_page)); create 102 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorTimelineAgent> timelineAgentPtr(InspectorTimelineAgent::create(m_pageAgent, m_domAgent, m_layerTreeAgent, create 109 Source/core/inspector/InspectorController.cpp m_agents.append(PageRuntimeAgent::create(injectedScriptManager, pageScriptDebugServer, m_page, m_pageAgent)); create 111 Source/core/inspector/InspectorController.cpp m_agents.append(PageConsoleAgent::create(injectedScriptManager, m_domAgent, m_timelineAgent)); create 113 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorWorkerAgent::create()); create 149 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorResourceAgent> resourceAgentPtr(InspectorResourceAgent::create(m_pageAgent, m_inspectorClient)); create 153 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorCSSAgent::create(m_domAgent, m_pageAgent, resourceAgent)); create 155 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorDOMStorageAgent::create(m_pageAgent)); create 157 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorMemoryAgent::create()); create 159 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorApplicationCacheAgent::create(m_pageAgent)); create 163 Source/core/inspector/InspectorController.cpp OwnPtr<InspectorDebuggerAgent> debuggerAgentPtr(PageDebuggerAgent::create(pageScriptDebugServer, m_pageAgent, injectedScriptManager, overlay)); create 167 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorDOMDebuggerAgent::create(m_domAgent, debuggerAgent)); create 169 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorProfilerAgent::create(injectedScriptManager, overlay)); create 171 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorHeapProfilerAgent::create(injectedScriptManager)); create 173 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorCanvasAgent::create(m_pageAgent, injectedScriptManager)); create 175 Source/core/inspector/InspectorController.cpp m_agents.append(InspectorInputAgent::create(m_page, m_inspectorClient)); create 222 Source/core/inspector/InspectorController.cpp m_inspectorBackendDispatcher = InspectorBackendDispatcher::create(frontendChannel); create 78 Source/core/inspector/InspectorController.h static PassOwnPtr<InspectorController> create(Page*, InspectorClient*); create 618 Source/core/inspector/InspectorDOMAgent.cpp result = TypeBuilder::Array<int>::create(); create 649 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > children = TypeBuilder::Array<TypeBuilder::DOM::Node>::create(); create 881 Source/core/inspector/InspectorDOMAgent.cpp listenersArray = TypeBuilder::Array<TypeBuilder::DOM::EventListener>::create(); create 1087 Source/core/inspector/InspectorDOMAgent.cpp nodeIds = TypeBuilder::Array<int>::create(); create 1367 Source/core/inspector/InspectorDOMAgent.cpp RefPtrWillBeRawPtr<FileList> fileList = FileList::create(); create 1374 Source/core/inspector/InspectorDOMAgent.cpp fileList->append(File::create(path)); create 1381 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<double> > array = TypeBuilder::Array<double>::create(); create 1413 Source/core/inspector/InspectorDOMAgent.cpp model = TypeBuilder::DOM::BoxModel::create() create 1522 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::DOM::Node> value = TypeBuilder::DOM::Node::create() create 1545 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > shadowRoots = TypeBuilder::Array<TypeBuilder::DOM::Node>::create(); create 1615 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<String> > attributesValue = TypeBuilder::Array<String>::create(); create 1631 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > children = TypeBuilder::Array<TypeBuilder::DOM::Node>::create(); create 1663 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Debugger::Location> location = TypeBuilder::Debugger::Location::create() create 1666 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::DOM::EventListener> value = TypeBuilder::DOM::EventListener::create() create 1699 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::DOM::Node> > pseudoElements = TypeBuilder::Array<TypeBuilder::DOM::Node>::create(); create 1898 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<TypeBuilder::Array<int> > nodeIds = TypeBuilder::Array<int>::create(); create 2063 Source/core/inspector/InspectorDOMAgent.cpp result = TypeBuilder::Array<int>::create(); create 99 Source/core/inspector/InspectorDOMAgent.h static PassOwnPtr<InspectorDOMAgent> create(InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) create 195 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 295 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 305 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 309 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 319 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 403 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 513 Source/core/inspector/InspectorDOMDebuggerAgent.cpp RefPtr<JSONObject> eventData = JSONObject::create(); create 59 Source/core/inspector/InspectorDOMDebuggerAgent.h static PassOwnPtr<InspectorDOMDebuggerAgent> create(InspectorDOMAgent*, InspectorDebuggerAgent*); create 116 Source/core/inspector/InspectorDOMStorageAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > > storageItems = TypeBuilder::Array<TypeBuilder::Array<String> >::create(); create 126 Source/core/inspector/InspectorDOMStorageAgent.cpp RefPtr<TypeBuilder::Array<String> > entry = TypeBuilder::Array<String>::create(); create 171 Source/core/inspector/InspectorDOMStorageAgent.cpp return TypeBuilder::DOMStorage::StorageId::create() create 51 Source/core/inspector/InspectorDOMStorageAgent.h static PassOwnPtr<InspectorDOMStorageAgent> create(InspectorPageAgent* pageAgent) create 139 Source/core/inspector/InspectorDebuggerAgent.cpp m_state->setObject(DebuggerAgentState::javaScriptBreakpoints, JSONObject::create()); create 288 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<JSONObject> breakpointObject = JSONObject::create(); create 309 Source/core/inspector/InspectorDebuggerAgent.cpp locations = Array<TypeBuilder::Debugger::Location>::create(); create 575 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<TypeBuilder::Debugger::Location> location = TypeBuilder::Debugger::Location::create() create 1062 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<JSONObject> directive = JSONObject::create(); create 1071 Source/core/inspector/InspectorDebuggerAgent.cpp return Array<CallFrame>::create(); create 1075 Source/core/inspector/InspectorDebuggerAgent.cpp return Array<CallFrame>::create(); create 1098 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<StackTrace> next = StackTrace::create() create 1196 Source/core/inspector/InspectorDebuggerAgent.cpp RefPtr<Array<String> > hitBreakpointIds = Array<String>::create(); create 204 Source/core/inspector/InspectorFrontendHost.cpp RefPtr<FrontendMenuProvider> menuProvider = FrontendMenuProvider::create(this, frontendApiObject, items); create 47 Source/core/inspector/InspectorFrontendHost.h static PassRefPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPage) create 168 Source/core/inspector/InspectorHeapProfilerAgent.cpp RefPtr<TypeBuilder::Array<int> > statsDiff = TypeBuilder::Array<int>::create(); create 54 Source/core/inspector/InspectorHeapProfilerAgent.h static PassOwnPtr<InspectorHeapProfilerAgent> create(InjectedScriptManager*); create 48 Source/core/inspector/InspectorInputAgent.h static PassOwnPtr<InspectorInputAgent> create(Page* page, InspectorClient* client) create 54 Source/core/inspector/InspectorInspectorAgent.h static PassOwnPtr<InspectorInspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager) create 82 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::DOM::Rect> rectObject = TypeBuilder::DOM::Rect::create() create 87 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::LayerTree::ScrollRect> scrollRectObject = TypeBuilder::LayerTree::ScrollRect::create() create 95 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > scrollRects = TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect>::create(); create 113 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::LayerTree::Layer> layerObject = TypeBuilder::LayerTree::Layer::create() create 135 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::Array<double> > transformArray = TypeBuilder::Array<double>::create(); create 205 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::DOM::Rect> domRect = TypeBuilder::DOM::Rect::create() create 221 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > layers = TypeBuilder::Array<TypeBuilder::LayerTree::Layer>::create(); create 311 Source/core/inspector/InspectorLayerTreeAgent.cpp reasonStrings = TypeBuilder::Array<String>::create(); create 374 Source/core/inspector/InspectorLayerTreeAgent.cpp outTimings = TypeBuilder::Array<TypeBuilder::Array<double> >::create(); create 377 Source/core/inspector/InspectorLayerTreeAgent.cpp RefPtr<TypeBuilder::Array<double> > outRow = TypeBuilder::Array<double>::create(); create 56 Source/core/inspector/InspectorLayerTreeAgent.h static PassOwnPtr<InspectorLayerTreeAgent> create(InspectorDOMAgent* domAgent, Page* page) create 47 Source/core/inspector/InspectorMemoryAgent.h static PassOwnPtr<InspectorMemoryAgent> create() create 246 Source/core/inspector/InspectorOverlay.cpp , m_overlayHost(InspectorOverlayHost::create()) create 453 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONObject> object = JSONObject::create(); create 461 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONArray> array = JSONArray::create(); create 471 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONObject> object = JSONObject::create(); create 472 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONArray> array = JSONArray::create(); create 488 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONObject> result = JSONObject::create(); create 510 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONObject> elementInfo = JSONObject::create(); create 605 Source/core/inspector/InspectorOverlay.cpp RefPtr<LocalFrame> frame = LocalFrame::create(dummyFrameLoaderClient, &m_overlayPage->frameHost(), 0); create 606 Source/core/inspector/InspectorOverlay.cpp frame->setView(FrameView::create(frame.get())); create 612 Source/core/inspector/InspectorOverlay.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(reinterpret_cast<const char*>(InspectorOverlayPage_html), sizeof(InspectorOverlayPage_html)); create 636 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONObject> resetData = JSONObject::create(); create 649 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONArray> command = JSONArray::create(); create 657 Source/core/inspector/InspectorOverlay.cpp RefPtr<JSONArray> command = JSONArray::create(); create 110 Source/core/inspector/InspectorOverlay.h static PassOwnPtr<InspectorOverlay> create(Page* page, InspectorClient* client) create 40 Source/core/inspector/InspectorOverlayHost.h static PassRefPtr<InspectorOverlayHost> create() create 172 Source/core/inspector/InspectorPageAgent.cpp return TextResourceDecoder::create("text/plain", textEncodingName); create 174 Source/core/inspector/InspectorPageAgent.cpp OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml"); create 179 Source/core/inspector/InspectorPageAgent.cpp return TextResourceDecoder::create("text/html", "UTF-8"); create 180 Source/core/inspector/InspectorPageAgent.cpp return TextResourceDecoder::create("text/plain", "UTF-8"); create 192 Source/core/inspector/InspectorPageAgent.cpp RefPtr<SharedBuffer> buffer = hasZeroSize ? SharedBuffer::create() : cachedResource->resourceBuffer(); create 449 Source/core/inspector/InspectorPageAgent.cpp scripts = JSONObject::create(); create 490 Source/core/inspector/InspectorPageAgent.cpp return TypeBuilder::Page::Cookie::create() create 505 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> > cookies = TypeBuilder::Array<TypeBuilder::Page::Cookie>::create(); create 646 Source/core/inspector/InspectorPageAgent.cpp results = TypeBuilder::Array<TypeBuilder::Page::SearchMatch>::create(); create 1071 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Page::Frame> frameObject = TypeBuilder::Page::Frame::create() create 1092 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Page::FrameResourceTree::Resources> > subresources = TypeBuilder::Array<TypeBuilder::Page::FrameResourceTree::Resources>::create(); create 1093 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Page::FrameResourceTree> result = TypeBuilder::Page::FrameResourceTree::create() create 1101 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Page::FrameResourceTree::Resources> resourceObject = TypeBuilder::Page::FrameResourceTree::Resources::create() create 1115 Source/core/inspector/InspectorPageAgent.cpp RefPtr<TypeBuilder::Page::FrameResourceTree::Resources> resourceObject = TypeBuilder::Page::FrameResourceTree::Resources::create() create 1125 Source/core/inspector/InspectorPageAgent.cpp childrenArray = TypeBuilder::Array<TypeBuilder::Page::FrameResourceTree>::create(); create 1196 Source/core/inspector/InspectorPageAgent.cpp RefPtrWillBeRawPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(CSSParserContext(UASheetMode, 0)); create 1198 Source/core/inspector/InspectorPageAgent.cpp OwnPtrWillBeRawPtr<RuleSet> ruleSet = RuleSet::create(); create 77 Source/core/inspector/InspectorPageAgent.h static PassOwnPtr<InspectorPageAgent> create(Page*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*); create 57 Source/core/inspector/InspectorProfilerAgent.cpp RefPtr<TypeBuilder::Profiler::CPUProfile> profile = TypeBuilder::Profiler::CPUProfile::create() create 69 Source/core/inspector/InspectorProfilerAgent.cpp RefPtr<TypeBuilder::Debugger::Location> location = TypeBuilder::Debugger::Location::create() create 56 Source/core/inspector/InspectorProfilerAgent.h static PassOwnPtr<InspectorProfilerAgent> create(InjectedScriptManager*, InspectorOverlay*); create 86 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<JSONObject> headersObject = JSONObject::create(); create 110 Source/core/inspector/InspectorResourceAgent.cpp m_decoder = TextResourceDecoder::create("text/plain", textEncoding, useDetector); create 201 Source/core/inspector/InspectorResourceAgent.cpp return TypeBuilder::Network::ResourceTiming::create() create 219 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::Request> requestObject = TypeBuilder::Network::Request::create() create 253 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::Response> responseObject = TypeBuilder::Network::Response::create() create 452 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<XHRReplayData> xhrReplayData = XHRReplayData::create(xhr->executionContext(), method, urlWithoutFragment(url), async, formData, includeCredentials); create 512 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::Initiator> initiatorObject = TypeBuilder::Network::Initiator::create() create 519 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::Initiator> initiatorObject = TypeBuilder::Network::Initiator::create() create 532 Source/core/inspector/InspectorResourceAgent.cpp return TypeBuilder::Network::Initiator::create() create 545 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::WebSocketRequest> requestObject = TypeBuilder::Network::WebSocketRequest::create() create 553 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::WebSocketResponse> responseObject = TypeBuilder::Network::WebSocketResponse::create() create 575 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::WebSocketFrame> frameObject = TypeBuilder::Network::WebSocketFrame::create() create 584 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<TypeBuilder::Network::WebSocketFrame> frameObject = TypeBuilder::Network::WebSocketFrame::create() create 680 Source/core/inspector/InspectorResourceAgent.cpp RefPtrWillBeRawPtr<XMLHttpRequest> xhr = XMLHttpRequest::create(executionContext); create 755 Source/core/inspector/InspectorResourceAgent.cpp RefPtr<DocumentThreadableLoader> loader = DocumentThreadableLoader::create(document, inspectorThreadableLoaderClient, request, options); create 77 Source/core/inspector/InspectorResourceAgent.h static PassOwnPtr<InspectorResourceAgent> create(InspectorPageAgent* pageAgent, InspectorClient* client) create 118 Source/core/inspector/InspectorState.cpp m_properties->setObject(propertyName, JSONObject::create()); create 128 Source/core/inspector/InspectorState.cpp RefPtr<JSONObject> stateProperties = JSONObject::create(); create 142 Source/core/inspector/InspectorState.cpp m_stateObject = JSONObject::create(); create 148 Source/core/inspector/InspectorState.cpp agentStateObject = JSONObject::create(); create 67 Source/core/inspector/InspectorState.h void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); } create 68 Source/core/inspector/InspectorState.h void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONString::create(value)); } create 69 Source/core/inspector/InspectorState.h void setLong(const String& propertyName, long value) { setValue(propertyName, JSONBasicValue::create((double)value)); } create 70 Source/core/inspector/InspectorState.h void setDouble(const String& propertyName, double value) { setValue(propertyName, JSONBasicValue::create(value)); } create 91 Source/core/inspector/InspectorState.h , m_stateObject(JSONObject::create()) create 122 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<CSSRuleSourceData> data = CSSRuleSourceData::create(type); create 342 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> tempMutableStyle = MutableStylePropertySet::create(); create 419 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<StyleSheetContents> newStyleSheet = StyleSheetContents::create(strictCSSParserContext()); create 466 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::SourceRange> result = TypeBuilder::CSS::SourceRange::create() create 479 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<StaticCSSRuleList> list = StaticCSSRuleList::create(); create 536 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> > result = TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty>::create(); create 542 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::CSSComputedStyleProperty> entry = TypeBuilder::CSS::CSSComputedStyleProperty::create() create 554 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> tempMutableStyle = MutableStylePropertySet::create(); create 556 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<StyleSheetContents> styleSheetContents = StyleSheetContents::create(strictCSSParserContext()); create 665 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<Array<TypeBuilder::CSS::CSSProperty> > propertiesObject = Array<TypeBuilder::CSS::CSSProperty>::create(); create 666 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<Array<TypeBuilder::CSS::ShorthandEntry> > shorthandEntries = Array<TypeBuilder::CSS::ShorthandEntry>::create(); create 679 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::CSSProperty> property = TypeBuilder::CSS::CSSProperty::create() create 714 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::ShorthandEntry> entry = TypeBuilder::CSS::ShorthandEntry::create() create 723 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::CSSStyle> result = TypeBuilder::CSS::CSSStyle::create() create 871 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<InspectorStyle> inspectorStyle = InspectorStyle::create(id, style, this); create 1147 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::CSSStyleSheetHeader> result = TypeBuilder::CSS::CSSStyleSheetHeader::create() create 1170 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::Array<TypeBuilder::CSS::Selector> > result = TypeBuilder::Array<TypeBuilder::CSS::Selector>::create(); create 1182 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::Selector> simpleSelector = TypeBuilder::CSS::Selector::create() create 1203 Source/core/inspector/InspectorStyleSheet.cpp selectors = TypeBuilder::Array<TypeBuilder::CSS::Selector>::create(); create 1206 Source/core/inspector/InspectorStyleSheet.cpp selectors->addItem(TypeBuilder::CSS::Selector::create().setValue(selector->selectorText()).release()); create 1208 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::SelectorList> result = TypeBuilder::CSS::SelectorList::create() create 1226 Source/core/inspector/InspectorStyleSheet.cpp RefPtr<TypeBuilder::CSS::CSSRule> result = TypeBuilder::CSS::CSSRule::create() create 1283 Source/core/inspector/InspectorStyleSheet.cpp return InspectorStyle::create(id, style, this); create 1542 Source/core/inspector/InspectorStyleSheet.cpp m_inspectorStyle = InspectorStyle::create(InspectorCSSId(id, 0), inlineStyle(), this); create 1550 Source/core/inspector/InspectorStyleSheet.cpp m_inspectorStyle = InspectorStyle::create(InspectorCSSId(id(), 0), inlineStyle(), this); create 1617 Source/core/inspector/InspectorStyleSheet.cpp m_ruleSourceData = CSSRuleSourceData::create(CSSRuleSourceData::STYLE_RULE); create 1646 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<CSSRuleSourceData> result = CSSRuleSourceData::create(CSSRuleSourceData::STYLE_RULE); create 1652 Source/core/inspector/InspectorStyleSheet.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> tempDeclaration = MutableStylePropertySet::create(); create 93 Source/core/inspector/InspectorStyleSheet.h RefPtr<ID> result = ID::create() create 139 Source/core/inspector/InspectorStyleSheet.h static PassRefPtr<InspectorStyle> create(const InspectorCSSId&, PassRefPtr<CSSStyleDeclaration>, InspectorStyleSheetBase* parentStyleSheet); create 218 Source/core/inspector/InspectorStyleSheet.h static PassRefPtr<InspectorStyleSheet> create(InspectorPageAgent*, InspectorResourceAgent*, const String& id, PassRefPtrWillBeRawPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*); create 283 Source/core/inspector/InspectorStyleSheet.h static PassRefPtr<InspectorStyleSheetForInlineStyle> create(const String& id, PassRefPtr<Element>, Listener*); create 171 Source/core/inspector/InspectorTimelineAgent.cpp , children(TypeBuilder::Array<TimelineEvent>::create()) create 304 Source/core/inspector/InspectorTimelineAgent.cpp m_bufferedEvents = TypeBuilder::Array<TimelineEvent>::create(); create 345 Source/core/inspector/InspectorTimelineAgent.cpp m_bufferedEvents = TypeBuilder::Array<TimelineEvent>::create(); create 502 Source/core/inspector/InspectorTimelineAgent.cpp appendRecord(JSONObject::create(), TimelineRecordType::InvalidateLayout, true, frame); create 554 Source/core/inspector/InspectorTimelineAgent.cpp appendRecord(JSONObject::create(), TimelineRecordType::ScheduleStyleRecalculation, true, document->frame()); create 559 Source/core/inspector/InspectorTimelineAgent.cpp pushCurrentRecord(JSONObject::create(), TimelineRecordType::RecalculateStyles, true, document->frame()); create 598 Source/core/inspector/InspectorTimelineAgent.cpp pushCurrentRecord(JSONObject::create(), TimelineRecordType::Paint, true, frame, true); create 612 Source/core/inspector/InspectorTimelineAgent.cpp appendRecord(JSONObject::create(), TimelineRecordType::MarkFirstPaint, false, 0); create 665 Source/core/inspector/InspectorTimelineAgent.cpp pushCurrentRecord(JSONObject::create(), TimelineRecordType::CompositeLayers, false, 0); create 673 Source/core/inspector/InspectorTimelineAgent.cpp appendRecord(JSONObject::create(), TimelineRecordType::MarkFirstPaint, false, 0); create 890 Source/core/inspector/InspectorTimelineAgent.cpp pushCurrentRecord(JSONObject::create(), TimelineRecordType::Program, false, 0); create 924 Source/core/inspector/InspectorTimelineAgent.cpp state.recordStack.addInstantRecord(createRecordForEvent(event, TimelineRecordType::BeginFrame, JSONObject::create())); create 977 Source/core/inspector/InspectorTimelineAgent.cpp RefPtr<JSONObject> data = JSONObject::create(); create 998 Source/core/inspector/InspectorTimelineAgent.cpp state.recordStack.addInstantRecord(createRecordForEvent(event, TimelineRecordType::RequestMainThreadFrame, JSONObject::create())); create 1017 Source/core/inspector/InspectorTimelineAgent.cpp state.recordStack.addInstantRecord(createRecordForEvent(event, TimelineRecordType::DrawFrame, JSONObject::create())); create 1067 Source/core/inspector/InspectorTimelineAgent.cpp RefPtr<TypeBuilder::Timeline::Counters> counters = TypeBuilder::Timeline::Counters::create(); create 1124 Source/core/inspector/InspectorTimelineAgent.cpp RefPtr<TypeBuilder::Timeline::Counters> counters = TypeBuilder::Timeline::Counters::create(); create 1237 Source/core/inspector/InspectorTimelineAgent.cpp m_recordStack.append(TimelineRecordEntry(record.release(), data, TypeBuilder::Array<TimelineEvent>::create(), type, getUsedHeapSize())); create 119 Source/core/inspector/InspectorTimelineAgent.h static PassOwnPtr<InspectorTimelineAgent> create(InspectorPageAgent* pageAgent, InspectorDOMAgent* domAgent, InspectorLayerTreeAgent* layerTreeAgent, create 49 Source/core/inspector/InspectorWorkerAgent.h static PassOwnPtr<InspectorWorkerAgent> create(); create 357 Source/core/inspector/JSONParser.cpp result = JSONBasicValue::create(true); create 360 Source/core/inspector/JSONParser.cpp result = JSONBasicValue::create(false); create 367 Source/core/inspector/JSONParser.cpp result = JSONBasicValue::create(value); create 375 Source/core/inspector/JSONParser.cpp result = JSONString::create(value); create 379 Source/core/inspector/JSONParser.cpp RefPtr<JSONArray> array = JSONArray::create(); create 407 Source/core/inspector/JSONParser.cpp RefPtr<JSONObject> object = JSONObject::create(); create 60 Source/core/inspector/JavaScriptCallFrame.cpp m_caller = JavaScriptCallFrame::create(debuggerContext, v8::Handle<v8::Object>::Cast(callerFrame)); create 47 Source/core/inspector/JavaScriptCallFrame.h static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) create 125 Source/core/inspector/NetworkResourcesData.cpp m_dataBuffer = SharedBuffer::create(data, dataLength); create 163 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("text/plain", textEncodingName); create 165 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("application/xml"); create 168 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("text/html", "UTF-8"); create 170 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("text/plain", "UTF-8"); create 172 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("text/plain", "ISO-8859-1"); create 56 Source/core/inspector/NetworkResourcesData.h static PassRefPtr<XHRReplayData> create(ExecutionContext*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials); create 44 Source/core/inspector/PageConsoleAgent.h static PassOwnPtr<PageConsoleAgent> create(InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent) create 53 Source/core/inspector/PageDebuggerAgent.h static PassOwnPtr<PageDebuggerAgent> create(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*); create 186 Source/core/inspector/PageRuntimeAgent.cpp m_frontend->executionContextCreated(ExecutionContextDescription::create() create 47 Source/core/inspector/PageRuntimeAgent.h static PassOwnPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent) create 46 Source/core/inspector/ScriptArguments.h static PassRefPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments); create 51 Source/core/inspector/ScriptCallFrame.cpp return TypeBuilder::Console::CallFrame::create() create 64 Source/core/inspector/ScriptCallStack.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create(); create 46 Source/core/inspector/ScriptCallStack.h static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&); create 71 Source/core/inspector/ScriptProfile.cpp RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode> > children = TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode>::create(); create 78 Source/core/inspector/ScriptProfile.cpp RefPtr<TypeBuilder::Profiler::CPUProfileNode> result = TypeBuilder::Profiler::CPUProfileNode::create() create 99 Source/core/inspector/ScriptProfile.cpp RefPtr<TypeBuilder::Array<int> > array = TypeBuilder::Array<int>::create(); create 46 Source/core/inspector/ScriptProfile.h static PassRefPtr<ScriptProfile> create(v8::CpuProfile* profile, double idleTime) create 50 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<TimelineEvent> record = TimelineEvent::create() create 65 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<TimelineEvent> record = TimelineEvent::create() create 75 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 82 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 91 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 98 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 105 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 114 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 122 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 129 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 137 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 144 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 151 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 158 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 167 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 176 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 186 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 194 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 203 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 210 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 217 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 224 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 231 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 238 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 245 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONArray> array = JSONArray::create(); create 259 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 271 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 296 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 323 Source/core/inspector/TimelineRecordFactory.cpp RefPtr<JSONObject> data = JSONObject::create(); create 90 Source/core/inspector/TimelineRecordFactory.h RefPtr<JSONObject> data = JSONObject::create(); create 100 Source/core/inspector/TimelineRecordFactory.h RefPtr<JSONObject> data = JSONObject::create(); create 42 Source/core/inspector/WorkerConsoleAgent.h static PassOwnPtr<WorkerConsoleAgent> create(InspectorTimelineAgent* timelineAgent, InjectedScriptManager* injectedScriptManager) create 46 Source/core/inspector/WorkerDebuggerAgent.h static PassOwnPtr<WorkerDebuggerAgent> create(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*); create 94 Source/core/inspector/WorkerInspectorController.cpp , m_instrumentingAgents(InstrumentingAgents::create()) create 99 Source/core/inspector/WorkerInspectorController.cpp m_agents.append(WorkerRuntimeAgent::create(m_injectedScriptManager.get(), m_debugServer.get(), workerGlobalScope)); create 101 Source/core/inspector/WorkerInspectorController.cpp OwnPtr<InspectorTimelineAgent> timelineAgent = InspectorTimelineAgent::create(0, 0, 0, 0, InspectorTimelineAgent::WorkerInspector, 0); create 102 Source/core/inspector/WorkerInspectorController.cpp m_agents.append(WorkerDebuggerAgent::create(m_debugServer.get(), workerGlobalScope, m_injectedScriptManager.get())); create 104 Source/core/inspector/WorkerInspectorController.cpp m_agents.append(InspectorProfilerAgent::create(m_injectedScriptManager.get(), 0)); create 105 Source/core/inspector/WorkerInspectorController.cpp m_agents.append(InspectorHeapProfilerAgent::create(m_injectedScriptManager.get())); create 106 Source/core/inspector/WorkerInspectorController.cpp m_agents.append(WorkerConsoleAgent::create(timelineAgent.get(), m_injectedScriptManager.get())); create 124 Source/core/inspector/WorkerInspectorController.cpp m_backendDispatcher = InspectorBackendDispatcher::create(m_frontendChannel.get()); create 43 Source/core/inspector/WorkerRuntimeAgent.h static PassOwnPtr<WorkerRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context) create 87 Source/core/loader/DocumentLoadTiming.cpp RefPtr<SecurityOrigin> redirectedSecurityOrigin = SecurityOrigin::create(redirectedUrl); create 75 Source/core/loader/DocumentLoader.cpp , m_fetcher(ResourceFetcher::create(this)) create 306 Source/core/loader/DocumentLoader.cpp m_frame->ownerElement()->dispatchEvent(Event::create(EventTypeNames::load)); create 355 Source/core/loader/DocumentLoader.cpp RefPtr<SecurityOrigin> redirectingOrigin = SecurityOrigin::create(redirectResponse.url()); create 457 Source/core/loader/DocumentLoader.cpp ownerElement->dispatchEvent(Event::create(EventTypeNames::load)); create 600 Source/core/loader/DocumentLoader.cpp m_archive = MHTMLArchive::create(m_response.url(), m_mainResource->resourceBuffer()); create 799 Source/core/loader/DocumentLoader.cpp frame->setDOMWindow(DOMWindow::create(*frame)); create 809 Source/core/loader/DocumentLoader.cpp return DocumentWriter::create(document.get(), mimeType, encoding, userChosen); create 71 Source/core/loader/DocumentLoader.h static PassRefPtr<DocumentLoader> create(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data) create 202 Source/core/loader/DocumentThreadableLoader.cpp RefPtr<SecurityOrigin> originalOrigin = SecurityOrigin::create(redirectResponse.url()); create 203 Source/core/loader/DocumentThreadableLoader.cpp RefPtr<SecurityOrigin> requestOrigin = SecurityOrigin::create(request.url()); create 58 Source/core/loader/DocumentThreadableLoader.h static PassRefPtr<DocumentThreadableLoader> create(Document*, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&); create 48 Source/core/loader/DocumentWriter.h static PassRefPtr<DocumentWriter> create(Document*, const AtomicString& mimeType = emptyAtom, const AtomicString& encoding = emptyAtom, bool encodingUserChoosen = false); create 122 Source/core/loader/EmptyClients.cpp return DocumentLoader::create(frame, request, substituteData); create 47 Source/core/loader/FormState.h static PassRefPtr<FormState> create(HTMLFormElement&, FormSubmissionTrigger); create 212 Source/core/loader/FormSubmission.cpp RefPtrWillBeRawPtr<DOMFormData> domFormData = DOMFormData::create(dataEncoding.encodingForFormSubmission()); create 239 Source/core/loader/FormSubmission.cpp formData = FormData::create(); create 246 Source/core/loader/FormSubmission.cpp RefPtr<FormState> formState = FormState::create(*form, trigger); create 96 Source/core/loader/FormSubmission.h static PassRefPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtrWillBeRawPtr<Event>, FormSubmissionTrigger); create 51 Source/core/loader/FrameFetchContext.h static PassOwnPtr<FrameFetchContext> create(LocalFrame* frame) { return adoptPtr(new FrameFetchContext(frame)); } create 112 Source/core/loader/FrameLoader.cpp , m_progressTracker(ProgressTracker::create(frame)) create 115 Source/core/loader/FrameLoader.cpp , m_fetchContext(FrameFetchContext::create(frame)) create 281 Source/core/loader/FrameLoader.cpp m_currentItem = HistoryItem::create(); create 339 Source/core/loader/FrameLoader.cpp ownerElement->dispatchEvent(Event::create(EventTypeNames::load)); create 746 Source/core/loader/FrameLoader.cpp return SubstituteData(SharedBuffer::create(encodedSrcdoc.data(), encodedSrcdoc.length()), "text/html", "UTF-8", KURL()); create 863 Source/core/loader/FrameLoader.cpp RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(pdl->request().url()); create 1319 Source/core/loader/FrameLoader.cpp RefPtr<SecurityOrigin> origin = SecurityOrigin::create(url); create 49 Source/core/loader/HistoryItem.h static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); } create 353 Source/core/loader/ImageLoader.cpp element()->dispatchEvent(Event::create(EventTypeNames::error)); create 136 Source/core/loader/LinkLoader.cpp m_prerender = PrerenderHandle::create(document, this, href, prerenderRelTypes); create 139 Source/core/loader/LinkLoader.cpp m_prerender = PrerenderHandle::create(document, this, href, prerenderRelTypes); create 82 Source/core/loader/PingLoader.cpp request.setHTTPBody(FormData::create("PING")); create 86 Source/core/loader/PingLoader.cpp RefPtr<SecurityOrigin> pingOrigin = SecurityOrigin::create(pingURL); create 115 Source/core/loader/PingLoader.cpp PingLoader::start(frame, request, initiatorInfo, SecurityOrigin::create(reportURL)->isSameSchemeHostPort(frame->document()->securityOrigin()) ? AllowStoredCredentials : DoNotAllowStoredCredentials); create 56 Source/core/loader/PrerenderHandle.cpp RefPtr<Prerender> prerender = Prerender::create(client, url, prerenderRelTypes, referrer, referrerPolicy); create 49 Source/core/loader/PrerenderHandle.h static PassOwnPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&, unsigned prerenderRelTypes); create 50 Source/core/loader/ProgressTracker.h static PassOwnPtr<ProgressTracker> create(LocalFrame*); create 59 Source/core/loader/SinkDocument.cpp return SinkDocumentParser::create(this); create 35 Source/core/loader/SinkDocument.h static PassRefPtr<SinkDocument> create(const DocumentInit& initializer = DocumentInit()) create 63 Source/core/loader/TextResourceDecoderBuilder.cpp return TextResourceDecoder::create(m_mimeType, settings->defaultTextEncodingName(), settings->usesEncodingDetector()); create 66 Source/core/loader/TextResourceDecoderBuilder.cpp return TextResourceDecoder::create(m_mimeType, String()); create 80 Source/core/loader/TextTrackLoader.cpp m_cueParser = VTTParser::create(this, m_document); create 87 Source/core/loader/TextTrackLoader.cpp String consoleMessage("Text track from origin '" + SecurityOrigin::create(url)->toString() + "' has been blocked from loading: Not at same origin as the document, and parent of track element does not have a 'crossorigin' attribute. Origin '" + securityOrigin->toString() + "' is therefore not allowed access."); create 53 Source/core/loader/TextTrackLoader.h static PassOwnPtr<TextTrackLoader> create(TextTrackLoaderClient& client, Document& document) create 53 Source/core/loader/ThreadableLoader.cpp RefPtr<ThreadableLoaderClientWrapper> clientWrapper(ThreadableLoaderClientWrapper::create(client)); create 54 Source/core/loader/ThreadableLoader.cpp OwnPtr<ThreadableLoaderClient> clientBridge(WorkerLoaderClientBridge::create(clientWrapper, workerGlobalScope->thread()->workerLoaderProxy())); create 55 Source/core/loader/ThreadableLoader.cpp return WorkerThreadableLoader::create(workerGlobalScope, clientWrapper, clientBridge.release(), request, options); create 58 Source/core/loader/ThreadableLoader.cpp return DocumentThreadableLoader::create(toDocument(context), client, request, options); create 84 Source/core/loader/ThreadableLoader.h static PassRefPtr<ThreadableLoader> create(ExecutionContext*, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&); create 44 Source/core/loader/ThreadableLoaderClientWrapper.h static PassRefPtr<ThreadableLoaderClientWrapper> create(ThreadableLoaderClient* client) create 48 Source/core/loader/WorkerLoaderClientBridge.h static PassOwnPtr<ThreadableLoaderClient> create(PassRefPtr<ThreadableLoaderClientWrapper>, WorkerLoaderProxy&); create 50 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h static PassOwnPtr<WorkerLoaderClientBridgeSyncHelper> create(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>); create 77 Source/core/loader/WorkerThreadableLoader.cpp RefPtr<ThreadableLoaderClientWrapper> clientWrapper(ThreadableLoaderClientWrapper::create(&client)); create 78 Source/core/loader/WorkerThreadableLoader.cpp OwnPtr<WorkerLoaderClientBridgeSyncHelper> clientBridge(WorkerLoaderClientBridgeSyncHelper::create(client, loaderDone.release())); create 83 Source/core/loader/WorkerThreadableLoader.cpp RefPtr<WorkerThreadableLoader> loader = WorkerThreadableLoader::create(workerGlobalScope, clientWrapper, clientBridge.release(), request, options); create 131 Source/core/loader/WorkerThreadableLoader.cpp thisPtr->m_mainThreadLoader = DocumentThreadableLoader::create(document, thisPtr, *request, options); create 58 Source/core/loader/WorkerThreadableLoader.h static PassRefPtr<WorkerThreadableLoader> create(WorkerGlobalScope* workerGlobalScope, PassRefPtr<ThreadableLoaderClientWrapper> clientWrapper, PassOwnPtr<ThreadableLoaderClient> clientBridge, const ResourceRequest& request, const ThreadableLoaderOptions& options) create 47 Source/core/loader/appcache/ApplicationCache.h static PassRefPtrWillBeRawPtr<ApplicationCache> create(LocalFrame* frame) create 221 Source/core/loader/appcache/ApplicationCacheHost.cpp event = ProgressEvent::create(eventType, true, progressDone, progressTotal); create 223 Source/core/loader/appcache/ApplicationCacheHost.cpp event = ApplicationCacheErrorEvent::create(errorReason, errorURL, errorStatus, errorMessage); create 225 Source/core/loader/appcache/ApplicationCacheHost.cpp event = Event::create(eventType); create 56 Source/core/page/AutoscrollController.h static PassOwnPtr<AutoscrollController> create(Page&); create 59 Source/core/page/Chrome.h static PassOwnPtr<Chrome> create(Page*, ChromeClient*); create 50 Source/core/page/ContextMenuController.h static PassOwnPtr<ContextMenuController> create(Page*, ContextMenuClient*); create 369 Source/core/page/DOMSelection.cpp return Range::create(shadowAncestor->document(), container, offset, container, offset); create 429 Source/core/page/DOMSelection.cpp RefPtrWillBeRawPtr<Range> merged = Range::create(originalRange->startContainer()->document(), start->startContainer(), start->startOffset(), end->endContainer(), end->endOffset()); create 53 Source/core/page/DOMSelection.h static PassRefPtrWillBeRawPtr<DOMSelection> create(const TreeScope* treeScope) create 40 Source/core/page/DOMWindowPagePopup.cpp : m_controller(PagePopupController::create(popupClient)) create 126 Source/core/page/DragController.cpp return Clipboard::create(Clipboard::DragAndDrop, policy, dragData->platformData()); create 166 Source/core/page/DragController.cpp RefPtr<HTMLAnchorElement> anchor = HTMLAnchorElement::create(document); create 506 Source/core/page/DragController.cpp MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert, smartDelete)->apply(); create 515 Source/core/page/DragController.cpp ReplaceSelectionCommand::create(*m_documentUnderMouse.get(), fragment, options)->apply(); create 525 Source/core/page/DragController.cpp ReplaceSelectionCommand::create(*m_documentUnderMouse.get(), createFragmentFromText(range.get(), text), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting)->apply(); create 809 Source/core/page/DragController.cpp && (dragImage = DragImage::create(image, element->renderer() ? element->renderer()->shouldRespectImageOrientation() : DoNotRespectImageOrientation))) { create 835 Source/core/page/DragController.cpp OwnPtr<DragImage> dragImage = DragImage::create(linkURL, linkText, fontDescription, deviceScaleFactor); create 59 Source/core/page/DragController.h static PassOwnPtr<DragController> create(Page*, DragClient*); create 546 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*start.document(), start, end); create 1752 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<MouseEvent> me = MouseEvent::create(eventType, create 3131 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<KeyboardEvent> keydown = KeyboardEvent::create(keyDownEvent, m_frame->document()->domWindow()); create 3160 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<KeyboardEvent> keypress = KeyboardEvent::create(keyPressEvent, m_frame->document()->domWindow()); create 3412 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<TextEvent> event = TextEvent::create(m_frame->domWindow(), text, inputType); create 3602 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<TouchList> touches = TouchList::create(); create 3731 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<Touch> touch = Touch::create(targetFrame, touchTarget.get(), point.id(), create 3740 Source/core/page/EventHandler.cpp touchesByTarget.set(touchTarget.get(), TouchList::create()); create 3760 Source/core/page/EventHandler.cpp changedTouches[pointState].m_touches = TouchList::create(); create 3771 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<TouchList> emptyList = TouchList::create(); create 3788 Source/core/page/EventHandler.cpp TouchEvent::create(effectiveTouches.get(), targetTouches.get(), changedTouches[state].m_touches.get(), create 4031 Source/core/page/EventHandler.cpp return Clipboard::create(Clipboard::DragAndDrop, ClipboardWritable, DataObject::create()); create 65 Source/core/page/EventSource.cpp , m_decoder(TextResourceDecoder::create("text/plain", "UTF-8")) create 147 Source/core/page/EventSource.cpp m_loader = ThreadableLoader::create(executionContext(), this, request, options); create 170 Source/core/page/EventSource.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 227 Source/core/page/EventSource.cpp m_eventStreamOrigin = SecurityOrigin::create(response.url())->toString(); create 257 Source/core/page/EventSource.cpp dispatchEvent(Event::create(EventTypeNames::open)); create 260 Source/core/page/EventSource.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 325 Source/core/page/EventSource.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 429 Source/core/page/EventSource.cpp RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create(); create 430 Source/core/page/EventSource.cpp event->initMessageEvent(m_eventName.isEmpty() ? EventTypeNames::message : m_eventName, false, false, SerializedScriptValue::create(String(m_data)), m_eventStreamOrigin, m_lastEventId, 0, nullptr); create 58 Source/core/page/EventSource.h static PassRefPtrWillBeRawPtr<EventSource> create(ExecutionContext*, const String& url, const Dictionary&, ExceptionState&); create 157 Source/core/page/FocusController.cpp window->dispatchEvent(Event::create(focused ? EventTypeNames::focus : EventTypeNames::blur)); create 252 Source/core/page/FocusController.cpp oldFrame->domWindow()->dispatchEvent(Event::create(EventTypeNames::blur)); create 257 Source/core/page/FocusController.cpp newFrame->domWindow()->dispatchEvent(Event::create(EventTypeNames::focus)); create 67 Source/core/page/FocusController.h static PassOwnPtr<FocusController> create(Page*); create 50 Source/core/page/HistoryController.cpp m_children.append(HistoryNode::create(m_entry, item.get(), frameID)); create 58 Source/core/page/HistoryController.cpp OwnPtr<HistoryNode> newHistoryNode = create(newEntry, itemForCreate, currentFrame->frameID()); create 113 Source/core/page/HistoryController.cpp m_root = HistoryNode::create(this, root, frameID); create 215 Source/core/page/HistoryController.cpp OwnPtr<HistoryEntry> newEntry = HistoryEntry::create(targetItem, m_page->mainFrame()->frameID()); create 305 Source/core/page/HistoryController.cpp m_currentEntry = HistoryEntry::create(newItem.get(), targetFrame->frameID()); create 96 Source/core/page/HistoryController.h static PassOwnPtr<HistoryNode> create(HistoryEntry*, HistoryItem*, int64_t frameID); create 117 Source/core/page/HistoryController.h static PassOwnPtr<HistoryEntry> create(HistoryItem* root, int64_t frameID); create 96 Source/core/page/Page.cpp frames[i]->domWindow()->dispatchEvent(Event::create(eventName)); create 110 Source/core/page/Page.cpp : SettingsDelegate(Settings::create()) create 112 Source/core/page/Page.cpp , m_autoscrollController(AutoscrollController::create(*this)) create 113 Source/core/page/Page.cpp , m_chrome(Chrome::create(this, pageClients.chromeClient)) create 114 Source/core/page/Page.cpp , m_dragCaretController(DragCaretController::create()) create 115 Source/core/page/Page.cpp , m_dragController(DragController::create(this, pageClients.dragClient)) create 116 Source/core/page/Page.cpp , m_focusController(FocusController::create(this)) create 117 Source/core/page/Page.cpp , m_contextMenuController(ContextMenuController::create(this, pageClients.contextMenuClient)) create 118 Source/core/page/Page.cpp , m_inspectorController(InspectorController::create(this, pageClients.inspectorClient)) create 119 Source/core/page/Page.cpp , m_pointerLockController(PointerLockController::create(this)) create 121 Source/core/page/Page.cpp , m_undoStack(UndoStack::create()) create 139 Source/core/page/Page.cpp , m_frameHost(FrameHost::create(*this)) create 188 Source/core/page/Page.cpp m_scrollingCoordinator = ScrollingCoordinator::create(this); create 213 Source/core/page/Page.cpp return ClientRectList::create(quads); create 300 Source/core/page/Page.cpp m_pluginData = PluginData::create(this); create 532 Source/core/page/Page.cpp return PageLifecycleNotifier::create(this); create 41 Source/core/page/PageLifecycleNotifier.h static PassOwnPtr<PageLifecycleNotifier> create(Page*); create 56 Source/core/page/PageLifecycleNotifier.h inline PassOwnPtr<PageLifecycleNotifier> PageLifecycleNotifier::create(Page* context) create 45 Source/core/page/PagePopupController.h static PassRefPtrWillBeRawPtr<PagePopupController> create(PagePopupClient*); create 214 Source/core/page/PageSerializer.cpp m_resources->append(SerializedResource(url, document.suggestedMIMEType(), SharedBuffer::create(frameHTML.data(), frameHTML.length()))); create 291 Source/core/page/PageSerializer.cpp m_resources->append(SerializedResource(url, String("text/css"), SharedBuffer::create(text.data(), text.length()))); create 158 Source/core/page/PointerLockController.cpp document->domWindow()->enqueueDocumentEvent(Event::create(type)); create 43 Source/core/page/PointerLockController.h static PassOwnPtr<PointerLockController> create(Page*); create 243 Source/core/page/scrolling/ScrollingCoordinator.cpp OwnPtr<blink::WebScrollbarThemeGeometry> geometry(blink::WebScrollbarThemeGeometryNative::create(theme)); create 55 Source/core/page/scrolling/ScrollingCoordinator.h static PassOwnPtr<ScrollingCoordinator> create(Page*); create 73 Source/core/plugins/DOMMimeType.cpp return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]); create 39 Source/core/plugins/DOMMimeType.h static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index) create 56 Source/core/plugins/DOMMimeTypeArray.cpp return DOMMimeType::create(data, m_frame, index).get(); create 80 Source/core/plugins/DOMMimeTypeArray.cpp return DOMMimeType::create(data, m_frame, i).get(); create 40 Source/core/plugins/DOMMimeTypeArray.h static PassRefPtrWillBeRawPtr<DOMMimeTypeArray> create(LocalFrame* frame) create 69 Source/core/plugins/DOMPlugin.cpp return DOMMimeType::create(m_pluginData.get(), m_frame, i).get(); create 88 Source/core/plugins/DOMPlugin.cpp return DOMMimeType::create(m_pluginData.get(), m_frame, i).get(); create 38 Source/core/plugins/DOMPlugin.h static PassRefPtrWillBeRawPtr<DOMPlugin> create(PluginData* pluginData, LocalFrame* frame, unsigned index) create 56 Source/core/plugins/DOMPluginArray.cpp return DOMPlugin::create(data, m_frame, index).get(); create 80 Source/core/plugins/DOMPluginArray.cpp return DOMPlugin::create(data, m_frame, i).get(); create 40 Source/core/plugins/DOMPluginArray.h static PassRefPtrWillBeRawPtr<DOMPluginArray> create(LocalFrame* frame) create 152 Source/core/rendering/AbstractInlineTextBox.cpp RefPtrWillBeRawPtr<Range> range = Range::create(node->document()); create 68 Source/core/rendering/ClipPathOperation.h static PassRefPtr<ReferenceClipPathOperation> create(const String& url, const AtomicString& fragment) create 97 Source/core/rendering/ClipPathOperation.h static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape) create 93 Source/core/rendering/ClipRect.h static PassRefPtr<ClipRects> create() create 98 Source/core/rendering/ClipRect.h static PassRefPtr<ClipRects> create(const ClipRects& other) create 45 Source/core/rendering/CounterNode.h static PassRefPtr<CounterNode> create(RenderObject&, bool isReset, int value); create 69 Source/core/rendering/EllipsisBox.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 58 Source/core/rendering/FastTextAutosizer.h static PassOwnPtr<FastTextAutosizer> create(const Document* document) create 74 Source/core/rendering/FilterEffectRenderer.cpp m_sourceGraphic = SourceGraphic::create(this); create 132 Source/core/rendering/FilterEffectRenderer.cpp effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_MATRIX, inputParameters); create 159 Source/core/rendering/FilterEffectRenderer.cpp effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_MATRIX, inputParameters); create 165 Source/core/rendering/FilterEffectRenderer.cpp effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_SATURATE, inputParameters); create 171 Source/core/rendering/FilterEffectRenderer.cpp effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_HUEROTATE, inputParameters); create 184 Source/core/rendering/FilterEffectRenderer.cpp effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunction); create 196 Source/core/rendering/FilterEffectRenderer.cpp effect = FEComponentTransfer::create(this, nullFunction, nullFunction, nullFunction, transferFunction); create 206 Source/core/rendering/FilterEffectRenderer.cpp effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunction); create 217 Source/core/rendering/FilterEffectRenderer.cpp effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunction); create 222 Source/core/rendering/FilterEffectRenderer.cpp effect = FEGaussianBlur::create(this, stdDeviation, stdDeviation); create 230 Source/core/rendering/FilterEffectRenderer.cpp effect = FEDropShadow::create(this, stdDeviation, stdDeviation, x, y, dropShadowOperation->color(), 1); create 281 Source/core/rendering/FilterEffectRenderer.cpp setSourceImage(ImageBuffer::create(surface.release())); create 80 Source/core/rendering/FilterEffectRenderer.h static PassRefPtr<FilterEffectRenderer> create() create 52 Source/core/rendering/FloatingObjects.h static PassOwnPtr<FloatingObject> create(RenderBox*); create 43 Source/core/rendering/FlowThreadController.h static PassOwnPtr<FlowThreadController> create(); create 45 Source/core/rendering/HitTestingTransformState.h static PassRefPtr<HitTestingTransformState> create(const FloatPoint& p, const FloatQuad& quad, const FloatQuad& area) create 50 Source/core/rendering/HitTestingTransformState.h static PassRefPtr<HitTestingTransformState> create(const HitTestingTransformState& other) create 399 Source/core/rendering/InlineTextBox.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 1535 Source/core/rendering/InlineTextBox.cpp run.setRenderingContext(SVGTextRunRenderingContext::create(&textRenderer())); create 143 Source/core/rendering/RenderBlock.cpp RefPtrWillBeRawPtr<OverflowEvent> event = OverflowEvent::create(horizontalLayoutOverflowChanged, hasHorizontalLayoutOverflow, verticalLayoutOverflowChanged, hasVerticalLayoutOverflow); create 2210 Source/core/rendering/RenderBlockFlow.cpp OwnPtr<FloatingObject> newObj = FloatingObject::create(floatBox); create 2696 Source/core/rendering/RenderBlockFlow.cpp run.setRenderingContext(SVGTextRunRenderingContext::create(context)); create 2717 Source/core/rendering/RenderBlockFlow.cpp run.setRenderingContext(SVGTextRunRenderingContext::create(context)); create 739 Source/core/rendering/RenderBlockLineLayout.cpp RefPtr<BidiContext> context = BidiContext::create(textDirection == LTR ? 0 : 1, direction, isOverride, FromStyleOrDOM); create 2540 Source/core/rendering/RenderBoxModelObject.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 312 Source/core/rendering/RenderCounter.cpp RefPtr<CounterNode> newNode = CounterNode::create(object, isReset, value); create 61 Source/core/rendering/RenderFlowThread.cpp RefPtr<RenderStyle> newStyle(RenderStyle::create()); create 1113 Source/core/rendering/RenderGrid.cpp return GridSpan::create(resolvedOppositePosition, resolvedOppositePosition); create 1139 Source/core/rendering/RenderGrid.cpp return GridSpan::create(resolvedOppositePosition, resolvedOppositePosition); create 42 Source/core/rendering/RenderImageResource.h static PassOwnPtr<RenderImageResource> create() create 41 Source/core/rendering/RenderImageResourceStyleImage.h static PassOwnPtr<RenderImageResource> create(StyleImage* styleImage) create 2814 Source/core/rendering/RenderLayer.cpp transformState = HitTestingTransformState::create(*containerTransformState); create 2819 Source/core/rendering/RenderLayer.cpp transformState = HitTestingTransformState::create(hitTestLocation.transformedPoint(), hitTestLocation.transformedRect(), FloatQuad(hitTestRect)); create 2920 Source/core/rendering/RenderLayer.cpp unflattenedTransformState = HitTestingTransformState::create(*localTransformState); create 3967 Source/core/rendering/RenderLayer.cpp RefPtr<ReferenceFilter> referenceFilter = ReferenceFilter::create(); create 4012 Source/core/rendering/RenderLayer.cpp RefPtr<FilterEffectRenderer> filterRenderer = FilterEffectRenderer::create(); create 87 Source/core/rendering/RenderLayerClipper.cpp m_clipRectsCache->setClipRects(clipRectsType, clipRectsContext.respectOverflowClip, ClipRects::create(clipRects)); create 86 Source/core/rendering/RenderLayerReflectionInfo.cpp RefPtr<RenderStyle> newStyle = RenderStyle::create(); create 93 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), create 95 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), create 97 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale)); create 101 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale)); create 102 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), create 104 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), create 109 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(100., Percent), create 111 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create( create 113 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale)); create 117 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale)); create 118 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create(Length(100., Percent), create 120 Source/core/rendering/RenderLayerReflectionInfo.cpp transform.operations().append(TranslateTransformOperation::create( create 842 Source/core/rendering/RenderLayerScrollableArea.cpp widget = Scrollbar::create(this, orientation, RegularScrollbar); create 915 Source/core/rendering/RenderListBox.cpp widget = Scrollbar::create(this, VerticalScrollbar, RenderTheme::theme().scrollbarControlSizeForPart(ListboxPart)); create 59 Source/core/rendering/RenderListItem.cpp RefPtr<RenderStyle> newStyle = RenderStyle::create(); create 39 Source/core/rendering/RenderMedia.cpp setImageResource(RenderImageResource::create()); create 173 Source/core/rendering/RenderMediaControls.cpp RefPtr<Gradient> gradient = Gradient::create(sliderTopLeft, sliderBottomLeft); create 152 Source/core/rendering/RenderObject.cpp image->setImageResource(RenderImageResourceStyleImage::create(const_cast<StyleImage*>(styleImage))); create 155 Source/core/rendering/RenderObject.cpp image->setImageResource(RenderImageResource::create()); create 1907 Source/core/rendering/RenderObject.cpp RefPtr<RenderStyle> style = RenderStyle::create(); create 246 Source/core/rendering/RenderQuote.cpp match->data = QuotesData::create(match->open1, match->close1, match->open2, match->close2).leakRef(); create 254 Source/core/rendering/RenderQuote.cpp DEFINE_STATIC_REF(QuotesData, staticBasicQuotes, (QuotesData::create('"', '"', '\'', '\''))); create 80 Source/core/rendering/RenderTextControlMultiLine.cpp RefPtr<RenderStyle> textBlockStyle = RenderStyle::create(); create 359 Source/core/rendering/RenderTextControlSingleLine.cpp RefPtr<RenderStyle> textBlockStyle = RenderStyle::create(); create 53 Source/core/rendering/RenderThemeChromiumAndroid.cpp DEFINE_STATIC_REF(RenderTheme, renderTheme, (RenderThemeChromiumAndroid::create())); create 35 Source/core/rendering/RenderThemeChromiumAndroid.h static PassRefPtr<RenderTheme> create(); create 87 Source/core/rendering/RenderThemeChromiumDefault.cpp DEFINE_STATIC_REF(RenderTheme, renderTheme, (RenderThemeChromiumDefault::create())); create 38 Source/core/rendering/RenderThemeChromiumDefault.h static PassRefPtr<RenderTheme> create(); create 37 Source/core/rendering/RenderThemeChromiumMac.h static PassRefPtr<RenderTheme> create(); create 915 Source/core/rendering/RenderView.cpp m_flowThreadController = FlowThreadController::create(); create 947 Source/core/rendering/RenderView.cpp m_intervalArena = IntervalArena::create(); create 69 Source/core/rendering/TextAutosizer.h static PassOwnPtr<TextAutosizer> create(Document* document) { return adoptPtr(new TextAutosizer(document)); } create 213 Source/core/rendering/compositing/CompositedLayerMapping.cpp OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this); create 1447 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_rootTransformLayer = GraphicsLayer::create(graphicsLayerFactory(), this); create 1767 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_layerForOverhangShadow = GraphicsLayer::create(graphicsLayerFactory(), this); create 1783 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_layerForHorizontalScrollbar = GraphicsLayer::create(graphicsLayerFactory(), this); create 1799 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_layerForVerticalScrollbar = GraphicsLayer::create(graphicsLayerFactory(), this); create 1815 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_layerForScrollCorner = GraphicsLayer::create(graphicsLayerFactory(), this); create 1833 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_rootContentLayer = GraphicsLayer::create(graphicsLayerFactory(), this); create 1847 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_overflowControlsHostLayer = GraphicsLayer::create(graphicsLayerFactory(), this); create 1850 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_containerLayer = GraphicsLayer::create(graphicsLayerFactory(), this); create 1858 Source/core/rendering/compositing/RenderLayerCompositor.cpp m_scrollLayer = GraphicsLayer::create(graphicsLayerFactory(), this); create 182 Source/core/rendering/shapes/Shape.cpp OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(imageRect.size()); create 55 Source/core/rendering/style/BasicShapes.cpp m_computedLength = Length(CalculationValue::create(op.release(), ValueRangeAll)); create 127 Source/core/rendering/style/BasicShapes.cpp RefPtr<BasicShapeCircle> result = BasicShapeCircle::create(); create 173 Source/core/rendering/style/BasicShapes.cpp RefPtr<BasicShapeEllipse> result = BasicShapeEllipse::create(); create 218 Source/core/rendering/style/BasicShapes.cpp RefPtr<BasicShapePolygon> result = BasicShapePolygon::create(); create 162 Source/core/rendering/style/BasicShapes.h static PassRefPtr<BasicShapeCircle> create() { return adoptRef(new BasicShapeCircle); } create 190 Source/core/rendering/style/BasicShapes.h static PassRefPtr<BasicShapeEllipse> create() { return adoptRef(new BasicShapeEllipse); } create 221 Source/core/rendering/style/BasicShapes.h static PassRefPtr<BasicShapePolygon> create() { return adoptRef(new BasicShapePolygon); } create 250 Source/core/rendering/style/BasicShapes.h static PassRefPtr<BasicShapeInset> create() { return adoptRef(new BasicShapeInset); } create 74 Source/core/rendering/style/ContentData.cpp image->setImageResource(RenderImageResourceStyleImage::create(m_image.get())); create 76 Source/core/rendering/style/ContentData.cpp image->setImageResource(RenderImageResource::create()); create 42 Source/core/rendering/style/ContentData.h static PassOwnPtr<ContentData> create(PassRefPtr<StyleImage>); create 43 Source/core/rendering/style/ContentData.h static PassOwnPtr<ContentData> create(const String&); create 44 Source/core/rendering/style/ContentData.h static PassOwnPtr<ContentData> create(PassOwnPtr<CounterContent>); create 45 Source/core/rendering/style/ContentData.h static PassOwnPtr<ContentData> create(QuoteType); create 95 Source/core/rendering/style/ContentData.h return create(image.release()); create 123 Source/core/rendering/style/ContentData.h virtual PassOwnPtr<ContentData> cloneInternal() const OVERRIDE { return create(text()); } create 146 Source/core/rendering/style/ContentData.h return create(counterData.release()); create 181 Source/core/rendering/style/ContentData.h virtual PassOwnPtr<ContentData> cloneInternal() const OVERRIDE { return create(quote()); } create 36 Source/core/rendering/style/CursorList.h static PassRefPtr<CursorList> create() create 48 Source/core/rendering/style/DataRef.h m_data = T::create(); create 45 Source/core/rendering/style/GridCoordinate.h static PassOwnPtr<GridSpan> create(size_t initialPosition, size_t finalPosition) create 57 Source/core/rendering/style/GridCoordinate.h return GridSpan::create(initialResolvedPosition, resolvedOppositePosition); create 60 Source/core/rendering/style/GridCoordinate.h return GridSpan::create(resolvedOppositePosition, resolvedOppositePosition + positionOffset); create 88 Source/core/rendering/style/GridCoordinate.h return GridSpan::create(resolvedGridLinePosition, resolvedOppositePosition); create 102 Source/core/rendering/style/GridCoordinate.h return GridSpan::create(resolvedOppositePosition, resolvedGridLinePosition); create 41 Source/core/rendering/style/NinePieceImage.h static PassRefPtr<NinePieceImageData> create() { return adoptRef(new NinePieceImageData); } create 29 Source/core/rendering/style/QuotesData.cpp RefPtr<QuotesData> data = QuotesData::create(); create 36 Source/core/rendering/style/QuotesData.cpp RefPtr<QuotesData> data = QuotesData::create(); create 34 Source/core/rendering/style/QuotesData.h static PassRefPtr<QuotesData> create() { return adoptRef(new QuotesData()); } create 35 Source/core/rendering/style/QuotesData.h static PassRefPtr<QuotesData> create(const String open, const String close); create 36 Source/core/rendering/style/QuotesData.h static PassRefPtr<QuotesData> create(UChar open1, UChar close1, UChar open2, UChar close2); create 88 Source/core/rendering/style/RenderStyle.cpp RefPtr<RenderStyle> newStyle = RenderStyle::create(); create 689 Source/core/rendering/style/RenderStyle.cpp rareInheritedData.access()->cursorData = CursorList::create(); create 742 Source/core/rendering/style/RenderStyle.cpp appendContent(ContentData::create(image)); create 746 Source/core/rendering/style/RenderStyle.cpp rareNonInheritedData.access()->m_content = ContentData::create(image); create 763 Source/core/rendering/style/RenderStyle.cpp lastContent->setNext(ContentData::create(string)); create 769 Source/core/rendering/style/RenderStyle.cpp content = ContentData::create(string); create 778 Source/core/rendering/style/RenderStyle.cpp appendContent(ContentData::create(counter)); create 782 Source/core/rendering/style/RenderStyle.cpp rareNonInheritedData.access()->m_content = ContentData::create(counter); create 788 Source/core/rendering/style/RenderStyle.cpp appendContent(ContentData::create(quote)); create 792 Source/core/rendering/style/RenderStyle.cpp rareNonInheritedData.access()->m_content = ContentData::create(quote); create 354 Source/core/rendering/style/RenderStyle.h static PassRefPtr<RenderStyle> create(); create 43 Source/core/rendering/style/SVGRenderStyle.h static PassRefPtr<SVGRenderStyle> create() { return adoptRef(new SVGRenderStyle); } create 82 Source/core/rendering/style/SVGRenderStyle.h static PassRefPtr<SVGLengthList> initialStrokeDashArray() { return SVGLengthList::create(); } create 100 Source/core/rendering/style/SVGRenderStyle.h RefPtr<SVGLength> length = SVGLength::create(); create 107 Source/core/rendering/style/SVGRenderStyle.h RefPtr<SVGLength> length = SVGLength::create(); create 114 Source/core/rendering/style/SVGRenderStyle.h RefPtr<SVGLength> length = SVGLength::create(); create 121 Source/core/rendering/style/SVGRenderStyle.h RefPtr<SVGLength> length = SVGLength::create(); create 114 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleFillData> create() { return adoptRef(new StyleFillData); } create 138 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleStrokeData> create() { return adoptRef(new StyleStrokeData); } create 168 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleStopData> create() { return adoptRef(new StyleStopData); } create 187 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleTextData> create() { return adoptRef(new StyleTextData); } create 206 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleMiscData> create() { return adoptRef(new StyleMiscData); } create 230 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleResourceData> create() { return adoptRef(new StyleResourceData); } create 251 Source/core/rendering/style/SVGRenderStyleDefs.h static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef(new StyleInheritedResourceData); } create 38 Source/core/rendering/style/StyleBackgroundData.h static PassRefPtr<StyleBackgroundData> create() { return adoptRef(new StyleBackgroundData); } create 37 Source/core/rendering/style/StyleBoxData.h static PassRefPtr<StyleBoxData> create() { return adoptRef(new StyleBoxData); } create 35 Source/core/rendering/style/StyleDeprecatedFlexibleBoxData.h static PassRefPtr<StyleDeprecatedFlexibleBoxData> create() { return adoptRef(new StyleDeprecatedFlexibleBoxData); } create 47 Source/core/rendering/style/StyleFetchedImage.cpp return CSSImageValue::create(m_image->url(), const_cast<StyleFetchedImage*>(this)); create 38 Source/core/rendering/style/StyleFetchedImage.h static PassRefPtr<StyleFetchedImage> create(ImageResource* image) { return adoptRef(new StyleFetchedImage(image)); } create 44 Source/core/rendering/style/StyleFetchedImageSet.h static PassRefPtr<StyleFetchedImageSet> create(ImageResource* image, float imageScaleFactor, CSSImageSetValue* value) create 37 Source/core/rendering/style/StyleFilterData.h static PassRefPtr<StyleFilterData> create() { return adoptRef(new StyleFilterData); } create 38 Source/core/rendering/style/StyleFlexibleBoxData.h static PassRefPtr<StyleFlexibleBoxData> create() { return adoptRef(new StyleFlexibleBoxData); } create 36 Source/core/rendering/style/StyleGeneratedImage.h static PassRefPtr<StyleGeneratedImage> create(CSSImageGeneratorValue* value) create 44 Source/core/rendering/style/StyleGridData.h static PassRefPtr<StyleGridData> create() { return adoptRef(new StyleGridData); } create 44 Source/core/rendering/style/StyleGridItemData.h static PassRefPtr<StyleGridItemData> create() { return adoptRef(new StyleGridItemData); } create 39 Source/core/rendering/style/StyleInheritedData.h static PassRefPtr<StyleInheritedData> create() { return adoptRef(new StyleInheritedData); } create 37 Source/core/rendering/style/StyleMarqueeData.h static PassRefPtr<StyleMarqueeData> create() { return adoptRef(new StyleMarqueeData); } create 40 Source/core/rendering/style/StyleMultiColData.h static PassRefPtr<StyleMultiColData> create() { return adoptRef(new StyleMultiColData); } create 44 Source/core/rendering/style/StylePendingImage.h static PassRefPtr<StylePendingImage> create(CSSValue* value) { return adoptRef(new StylePendingImage(value)); } create 48 Source/core/rendering/style/StyleRareInheritedData.h static PassRefPtr<StyleRareInheritedData> create() { return adoptRef(new StyleRareInheritedData); } create 77 Source/core/rendering/style/StyleRareNonInheritedData.h static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new StyleRareNonInheritedData); } create 37 Source/core/rendering/style/StyleReflection.h static PassRefPtr<StyleReflection> create() create 37 Source/core/rendering/style/StyleSurroundData.h static PassRefPtr<StyleSurroundData> create() { return adoptRef(new StyleSurroundData); } create 37 Source/core/rendering/style/StyleTransformData.h static PassRefPtr<StyleTransformData> create() { return adoptRef(new StyleTransformData); } create 37 Source/core/rendering/style/StyleVisualData.h static PassRefPtr<StyleVisualData> create() { return adoptRef(new StyleVisualData); } create 18 Source/core/rendering/style/StyleWillChangeData.h static PassRefPtr<StyleWillChangeData> create() { return adoptRef(new StyleWillChangeData); } create 150 Source/core/rendering/svg/ReferenceFilterBuilder.cpp RefPtr<SVGFilterBuilder> builder = SVGFilterBuilder::create(previousEffect, SourceAlpha::create(parentFilter)); create 49 Source/core/rendering/svg/RenderSVGImage.cpp , m_imageResource(RenderImageResource::create()) create 84 Source/core/rendering/svg/RenderSVGResourceFilter.cpp RefPtr<SVGFilterBuilder> builder = SVGFilterBuilder::create(SourceGraphic::create(filter), SourceAlpha::create(filter)); create 129 Source/core/rendering/svg/RenderSVGResourceFilter.cpp OwnPtr<ImageBuffer> image = ImageBuffer::create(surface.release()); create 204 Source/core/rendering/svg/RenderSVGResourceFilter.cpp filterData->filter = SVGFilter::create(filterData->shearFreeAbsoluteTransform, intDrawingRegion, targetBoundingBox, filterData->boundaries, primitiveBoundingBoxMode); create 58 Source/core/rendering/svg/RenderSVGResourceLinearGradient.cpp gradientData->gradient = Gradient::create(startPoint(m_attributes), endPoint(m_attributes)); create 110 Source/core/rendering/svg/RenderSVGResourcePattern.cpp patternData->pattern = Pattern::create(copiedImage, true, true); create 247 Source/core/rendering/svg/RenderSVGResourcePattern.cpp OwnPtr<ImageBuffer> tileImage = ImageBuffer::create(imageSize); create 69 Source/core/rendering/svg/RenderSVGResourceRadialGradient.cpp gradientData->gradient = Gradient::create(this->focalPoint(m_attributes), create 104 Source/core/rendering/svg/RenderSVGViewportContainer.cpp RefPtr<SVGLength> containerWidth = SVGLength::create(LengthModeWidth); create 112 Source/core/rendering/svg/RenderSVGViewportContainer.cpp RefPtr<SVGLength> containerHeight = SVGLength::create(LengthModeHeight); create 451 Source/core/rendering/svg/SVGInlineTextBox.cpp run.setRenderingContext(SVGTextRunRenderingContext::create(text)); create 626 Source/core/rendering/svg/SVGInlineTextBox.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 515 Source/core/rendering/svg/SVGRenderTreeAsText.cpp RefPtr<SVGFilter> dummyFilter = SVGFilter::create(AffineTransform(), dummyIntRect, dummyRect, dummyRect, true); create 488 Source/core/rendering/svg/SVGResources.cpp m_clipperFilterMaskerData = ClipperFilterMaskerData::create(); create 509 Source/core/rendering/svg/SVGResources.cpp m_clipperFilterMaskerData = ClipperFilterMaskerData::create(); create 530 Source/core/rendering/svg/SVGResources.cpp m_markerData = MarkerData::create(); create 551 Source/core/rendering/svg/SVGResources.cpp m_markerData = MarkerData::create(); create 572 Source/core/rendering/svg/SVGResources.cpp m_markerData = MarkerData::create(); create 593 Source/core/rendering/svg/SVGResources.cpp m_clipperFilterMaskerData = ClipperFilterMaskerData::create(); create 616 Source/core/rendering/svg/SVGResources.cpp m_fillStrokeData = FillStrokeData::create(); create 639 Source/core/rendering/svg/SVGResources.cpp m_fillStrokeData = FillStrokeData::create(); create 124 Source/core/rendering/svg/SVGResources.h static PassOwnPtr<ClipperFilterMaskerData> create() create 146 Source/core/rendering/svg/SVGResources.h static PassOwnPtr<MarkerData> create() create 169 Source/core/rendering/svg/SVGResources.h static PassOwnPtr<FillStrokeData> create() create 84 Source/core/rendering/svg/SVGTextMetrics.cpp run.setRenderingContext(SVGTextRunRenderingContext::create(text)); create 34 Source/core/rendering/svg/SVGTextRunRenderingContext.h static PassRefPtr<SVGTextRunRenderingContext> create(RenderObject* renderer) create 125 Source/core/speech/SpeechInput.cpp SpeechInput::provideTo(page, SpeechInput::supplementName(), SpeechInput::create(client)); create 56 Source/core/speech/SpeechInput.h static PassOwnPtr<SpeechInput> create(PassOwnPtr<SpeechInputClient>); create 56 Source/core/speech/SpeechInputEvent.cpp , m_results(SpeechInputResultList::create(results)) create 40 Source/core/speech/SpeechInputEvent.h static PassRefPtrWillBeRawPtr<SpeechInputEvent> create(); create 41 Source/core/speech/SpeechInputEvent.h static PassRefPtrWillBeRawPtr<SpeechInputEvent> create(const AtomicString& eventType, const SpeechInputResultArray& results); create 43 Source/core/speech/SpeechInputResult.h static PassRefPtrWillBeRawPtr<SpeechInputResult> create(const SpeechInputResult& source); create 44 Source/core/speech/SpeechInputResult.h static PassRefPtrWillBeRawPtr<SpeechInputResult> create(const String& utterance, double confidence); create 41 Source/core/speech/SpeechInputResultList.h static PassRefPtrWillBeRawPtr<SpeechInputResultList> create(const SpeechInputResultArray& results); create 45 Source/core/storage/Storage.h static PassRefPtrWillBeRawPtr<Storage> create(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>); create 151 Source/core/storage/StorageArea.cpp frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); create 179 Source/core/storage/StorageArea.cpp frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); create 49 Source/core/storage/StorageEvent.h static PassRefPtrWillBeRawPtr<StorageEvent> create(); create 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); create 51 Source/core/storage/StorageEvent.h static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString&, const StorageEventInit&); create 28 Source/core/svg/LinearGradientAttributes.h : m_x1(SVGLength::create(LengthModeWidth)) create 29 Source/core/svg/LinearGradientAttributes.h , m_y1(SVGLength::create(LengthModeWidth)) create 30 Source/core/svg/LinearGradientAttributes.h , m_x2(SVGLength::create(LengthModeWidth)) create 31 Source/core/svg/LinearGradientAttributes.h , m_y2(SVGLength::create(LengthModeWidth)) create 33 Source/core/svg/PatternAttributes.h : m_x(SVGLength::create(LengthModeWidth)) create 34 Source/core/svg/PatternAttributes.h , m_y(SVGLength::create(LengthModeHeight)) create 35 Source/core/svg/PatternAttributes.h , m_width(SVGLength::create(LengthModeWidth)) create 36 Source/core/svg/PatternAttributes.h , m_height(SVGLength::create(LengthModeHeight)) create 38 Source/core/svg/PatternAttributes.h , m_preserveAspectRatio(SVGPreserveAspectRatio::create()) create 28 Source/core/svg/RadialGradientAttributes.h : m_cx(SVGLength::create(LengthModeWidth)) create 29 Source/core/svg/RadialGradientAttributes.h , m_cy(SVGLength::create(LengthModeHeight)) create 30 Source/core/svg/RadialGradientAttributes.h , m_r(SVGLength::create(LengthModeOther)) create 31 Source/core/svg/RadialGradientAttributes.h , m_fx(SVGLength::create(LengthModeWidth)) create 32 Source/core/svg/RadialGradientAttributes.h , m_fy(SVGLength::create(LengthModeHeight)) create 33 Source/core/svg/RadialGradientAttributes.h , m_fr(SVGLength::create(LengthModeOther)) create 59 Source/core/svg/SVGAElement.cpp , m_svgTarget(SVGAnimatedString::create(this, SVGNames::targetAttr, SVGString::create())) create 34 Source/core/svg/SVGAElement.h static PassRefPtr<SVGAElement> create(Document&); create 32 Source/core/svg/SVGAltGlyphDefElement.h static PassRefPtr<SVGAltGlyphDefElement> create(Document&); create 39 Source/core/svg/SVGAltGlyphElement.h static PassRefPtr<SVGAltGlyphElement> create(Document&); create 32 Source/core/svg/SVGAltGlyphItemElement.h static PassRefPtr<SVGAltGlyphItemElement> create(Document&); create 85 Source/core/svg/SVGAngle.cpp , m_orientType(SVGMarkerOrientEnumeration::create(this)) create 93 Source/core/svg/SVGAngle.cpp , m_orientType(SVGMarkerOrientEnumeration::create(this)) create 109 Source/core/svg/SVGAngle.cpp RefPtr<SVGAngle> point = create(); create 41 Source/core/svg/SVGAngle.h static PassRefPtr<SVGMarkerOrientEnumeration> create(SVGAngle* angle) create 73 Source/core/svg/SVGAngle.h static PassRefPtr<SVGAngle> create() create 42 Source/core/svg/SVGAngleTearOff.h static PassRefPtr<SVGAngleTearOff> create(PassRefPtr<SVGAngle> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 396 Source/core/svg/SVGAnimateElement.cpp m_animator = SVGAnimatedTypeAnimator::create(m_animatedPropertyType, this, targetElement()); create 37 Source/core/svg/SVGAnimateElement.h static PassRefPtr<SVGAnimateElement> create(Document&); create 35 Source/core/svg/SVGAnimateMotionElement.h static PassRefPtr<SVGAnimateMotionElement> create(Document&); create 35 Source/core/svg/SVGAnimateTransformElement.h static PassRefPtr<SVGAnimateTransformElement> create(Document&); create 41 Source/core/svg/SVGAnimatedAngle.cpp : SVGAnimatedProperty<SVGAngle>(contextElement, SVGNames::orientAttr, SVGAngle::create()) create 42 Source/core/svg/SVGAnimatedAngle.cpp , m_orientType(SVGAnimatedEnumeration<SVGMarkerOrientType>::create(contextElement, SVGNames::orientAttr, baseValue()->orientType())) create 43 Source/core/svg/SVGAnimatedAngle.h static PassRefPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement) create 41 Source/core/svg/SVGAnimatedBoolean.h static PassRefPtr<SVGAnimatedBoolean> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGBoolean> initialValue) create 45 Source/core/svg/SVGAnimatedColor.h static PassRefPtr<SVGColorProperty> create(StyleColor styleColor) create 41 Source/core/svg/SVGAnimatedEnumeration.h static PassRefPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, Enum initialValue) create 43 Source/core/svg/SVGAnimatedEnumeration.h return adoptRef(new SVGAnimatedEnumeration(contextElement, attributeName, SVGEnumeration<Enum>::create(initialValue))); create 46 Source/core/svg/SVGAnimatedEnumeration.h static PassRefPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumeration<Enum> > initialValue) create 44 Source/core/svg/SVGAnimatedInteger.h static PassRefPtr<SVGAnimatedInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue) create 39 Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp SVGIntegerOptionalInteger::create(SVGInteger::create(initialFirstValue), SVGInteger::create(initialSecondValue))) create 40 Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp , m_firstInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->firstInteger())) create 41 Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp , m_secondInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->secondInteger())) create 46 Source/core/svg/SVGAnimatedIntegerOptionalInteger.h static PassRefPtr<SVGAnimatedIntegerOptionalInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0) create 41 Source/core/svg/SVGAnimatedLength.h static PassRefPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode) create 44 Source/core/svg/SVGAnimatedNumber.h static PassRefPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue) create 28 Source/core/svg/SVGAnimatedNumberOptionalNumber.cpp SVGNumberOptionalNumber::create(SVGNumber::create(initialFirstValue), SVGNumber::create(initialSecondValue))) create 29 Source/core/svg/SVGAnimatedNumberOptionalNumber.cpp , m_firstNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->firstNumber())) create 30 Source/core/svg/SVGAnimatedNumberOptionalNumber.cpp , m_secondNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->secondNumber())) create 46 Source/core/svg/SVGAnimatedNumberOptionalNumber.h static PassRefPtr<SVGAnimatedNumberOptionalNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0) create 39 Source/core/svg/SVGAnimatedPath.cpp : SVGAnimatedProperty<SVGPathSegList>(contextElement, attributeName, SVGPathSegList::create(contextElement, PathSegUnalteredRole)) create 45 Source/core/svg/SVGAnimatedPath.h static PassRefPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName) create 41 Source/core/svg/SVGAnimatedPreserveAspectRatio.h static PassRefPtr<SVGAnimatedPreserveAspectRatio> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue) create 41 Source/core/svg/SVGAnimatedRect.h static PassRefPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName) create 48 Source/core/svg/SVGAnimatedRect.h : SVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag())) create 41 Source/core/svg/SVGAnimatedString.h static PassRefPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue) create 72 Source/core/svg/SVGAnimatedTypeAnimator.cpp return SVGTransformList::create(transformType, value); create 87 Source/core/svg/SVGAnimatedTypeAnimator.cpp return SVGColorProperty::create(value.isEmpty() ? StyleColor::currentColor() : SVGPaint::colorFromRGBColorString(value)); create 89 Source/core/svg/SVGAnimatedTypeAnimator.cpp RefPtr<SVGNumber> property = SVGNumber::create(); create 94 Source/core/svg/SVGAnimatedTypeAnimator.cpp RefPtr<SVGLength> property = SVGLength::create(LengthModeOther); create 99 Source/core/svg/SVGAnimatedTypeAnimator.cpp RefPtr<SVGLengthList> property = SVGLengthList::create(LengthModeOther); create 104 Source/core/svg/SVGAnimatedTypeAnimator.cpp RefPtr<SVGString> property = SVGString::create(); create 40 Source/core/svg/SVGAnimatedTypeAnimator.h static PassOwnPtr<SVGAnimatedTypeAnimator> create(AnimatedPropertyType type, SVGAnimationElement* animationElement, SVGElement* targetElement) create 661 Source/core/svg/SVGAnimationElement.cpp value = CSSComputedStyleDeclaration::create(element)->getPropertyValue(id); create 44 Source/core/svg/SVGBoolean.cpp RefPtr<SVGBoolean> svgBoolean = create(); create 44 Source/core/svg/SVGBoolean.h static PassRefPtr<SVGBoolean> create(bool value = false) create 49 Source/core/svg/SVGBoolean.h PassRefPtr<SVGBoolean> clone() const { return create(m_value); } create 34 Source/core/svg/SVGCircleElement.cpp , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 35 Source/core/svg/SVGCircleElement.cpp , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 36 Source/core/svg/SVGCircleElement.cpp , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths)) create 33 Source/core/svg/SVGCircleElement.h static PassRefPtr<SVGCircleElement> create(Document&); create 33 Source/core/svg/SVGClipPathElement.cpp , m_clipPathUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::clipPathUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE)) create 36 Source/core/svg/SVGClipPathElement.h static PassRefPtr<SVGClipPathElement> create(Document&); create 49 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_tableValues(SVGAnimatedNumberList::create(this, SVGNames::tableValuesAttr, SVGNumberList::create())) create 50 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_slope(SVGAnimatedNumber::create(this, SVGNames::slopeAttr, SVGNumber::create(1))) create 51 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_intercept(SVGAnimatedNumber::create(this, SVGNames::interceptAttr, SVGNumber::create())) create 52 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_amplitude(SVGAnimatedNumber::create(this, SVGNames::amplitudeAttr, SVGNumber::create(1))) create 53 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_exponent(SVGAnimatedNumber::create(this, SVGNames::exponentAttr, SVGNumber::create(1))) create 54 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumber::create())) create 55 Source/core/svg/SVGComponentTransferFunctionElement.cpp , m_type(SVGAnimatedEnumeration<ComponentTransferType>::create(this, SVGNames::typeAttr, FECOMPONENTTRANSFER_TYPE_IDENTITY)) create 36 Source/core/svg/SVGCursorElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 37 Source/core/svg/SVGCursorElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 38 Source/core/svg/SVGCursorElement.h static PassRefPtr<SVGCursorElement> create(Document&); create 31 Source/core/svg/SVGDefsElement.h static PassRefPtr<SVGDefsElement> create(Document&); create 30 Source/core/svg/SVGDescElement.h static PassRefPtr<SVGDescElement> create(Document&); create 40 Source/core/svg/SVGDiscardElement.h static PassRefPtr<SVGDiscardElement> create(Document&); create 54 Source/core/svg/SVGDocument.cpp RefPtrWillBeRawPtr<SVGZoomEvent> event = SVGZoomEvent::create(); create 63 Source/core/svg/SVGDocument.cpp RefPtrWillBeRawPtr<Event> event = Event::create(); create 99 Source/core/svg/SVGDocument.cpp return create(DocumentInit(url())); create 33 Source/core/svg/SVGDocument.h static PassRefPtr<SVGDocument> create(const DocumentInit& initializer = DocumentInit()) create 80 Source/core/svg/SVGElement.cpp , m_className(SVGAnimatedString::create(this, HTMLNames::classAttr, SVGString::create())) create 847 Source/core/svg/SVGElement.cpp currentTarget->dispatchEvent(Event::create(EventTypeNames::load)); create 158 Source/core/svg/SVGElementInstance.cpp return SVGElementInstanceList::create(this); create 44 Source/core/svg/SVGElementInstance.h static PassRefPtr<SVGElementInstance> create(SVGUseElement* correspondingUseElement, SVGUseElement* directUseElement, PassRefPtr<SVGElement> originalElement); create 33 Source/core/svg/SVGElementInstanceList.h static PassRefPtr<SVGElementInstanceList> create(PassRefPtr<SVGElementInstance> root) { return adoptRef(new SVGElementInstanceList(root)); } create 81 Source/core/svg/SVGElementRareData.h m_animatedSMILStyleProperties = MutableStylePropertySet::create(SVGAttributeMode); create 34 Source/core/svg/SVGEllipseElement.cpp , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 35 Source/core/svg/SVGEllipseElement.cpp , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 36 Source/core/svg/SVGEllipseElement.cpp , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 37 Source/core/svg/SVGEllipseElement.cpp , m_ry(SVGAnimatedLength::create(this, SVGNames::ryAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 33 Source/core/svg/SVGEllipseElement.h static PassRefPtr<SVGEllipseElement> create(Document&); create 92 Source/core/svg/SVGEnumeration.h static PassRefPtr<SVGEnumeration<Enum> > create(Enum newValue) create 103 Source/core/svg/SVGEnumeration.h return create(enumValue()); create 48 Source/core/svg/SVGFEBlendElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 49 Source/core/svg/SVGFEBlendElement.cpp , m_in2(SVGAnimatedString::create(this, SVGNames::in2Attr, SVGString::create())) create 50 Source/core/svg/SVGFEBlendElement.cpp , m_mode(SVGAnimatedEnumeration<BlendModeType>::create(this, SVGNames::modeAttr, FEBLEND_MODE_NORMAL)) create 135 Source/core/svg/SVGFEBlendElement.cpp RefPtr<FilterEffect> effect = FEBlend::create(filter, m_mode->currentValue()->enumValue()); create 34 Source/core/svg/SVGFEBlendElement.h static PassRefPtr<SVGFEBlendElement> create(Document&); create 47 Source/core/svg/SVGFEColorMatrixElement.cpp , m_values(SVGAnimatedNumberList::create(this, SVGNames::valuesAttr, SVGNumberList::create())) create 48 Source/core/svg/SVGFEColorMatrixElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 49 Source/core/svg/SVGFEColorMatrixElement.cpp , m_type(SVGAnimatedEnumeration<ColorMatrixType>::create(this, SVGNames::typeAttr, FECOLORMATRIX_TYPE_MATRIX)) create 167 Source/core/svg/SVGFEColorMatrixElement.cpp RefPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues); create 35 Source/core/svg/SVGFEColorMatrixElement.h static PassRefPtr<SVGFEColorMatrixElement> create(Document&); create 38 Source/core/svg/SVGFEComponentTransferElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 97 Source/core/svg/SVGFEComponentTransferElement.cpp RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha); create 31 Source/core/svg/SVGFEComponentTransferElement.h static PassRefPtr<SVGFEComponentTransferElement> create(Document&); create 49 Source/core/svg/SVGFECompositeElement.cpp , m_k1(SVGAnimatedNumber::create(this, SVGNames::k1Attr, SVGNumber::create())) create 50 Source/core/svg/SVGFECompositeElement.cpp , m_k2(SVGAnimatedNumber::create(this, SVGNames::k2Attr, SVGNumber::create())) create 51 Source/core/svg/SVGFECompositeElement.cpp , m_k3(SVGAnimatedNumber::create(this, SVGNames::k3Attr, SVGNumber::create())) create 52 Source/core/svg/SVGFECompositeElement.cpp , m_k4(SVGAnimatedNumber::create(this, SVGNames::k4Attr, SVGNumber::create())) create 53 Source/core/svg/SVGFECompositeElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 54 Source/core/svg/SVGFECompositeElement.cpp , m_in2(SVGAnimatedString::create(this, SVGNames::in2Attr, SVGString::create())) create 55 Source/core/svg/SVGFECompositeElement.cpp , m_svgOperator(SVGAnimatedEnumeration<CompositeOperationType>::create(this, SVGNames::operatorAttr, FECOMPOSITE_OPERATOR_OVER)) create 170 Source/core/svg/SVGFECompositeElement.cpp RefPtr<FilterEffect> effect = FEComposite::create(filter, m_svgOperator->currentValue()->enumValue(), m_k1->currentValue()->value(), m_k2->currentValue()->value(), m_k3->currentValue()->value(), m_k4->currentValue()->value()); create 35 Source/core/svg/SVGFECompositeElement.h static PassRefPtr<SVGFECompositeElement> create(Document&); create 49 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_bias(SVGAnimatedNumber::create(this, SVGNames::biasAttr, SVGNumber::create())) create 50 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_divisor(SVGAnimatedNumber::create(this, SVGNames::divisorAttr, SVGNumber::create())) create 51 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 52 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_edgeMode(SVGAnimatedEnumeration<EdgeModeType>::create(this, SVGNames::edgeModeAttr, EDGEMODE_DUPLICATE)) create 53 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_kernelMatrix(SVGAnimatedNumberList::create(this, SVGNames::kernelMatrixAttr, SVGNumberList::create())) create 54 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::kernelUnitLengthAttr)) create 55 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_order(SVGAnimatedIntegerOptionalInteger::create(this, SVGNames::orderAttr)) create 56 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_preserveAlpha(SVGAnimatedBoolean::create(this, SVGNames::preserveAlphaAttr, SVGBoolean::create())) create 57 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_targetX(SVGAnimatedInteger::create(this, SVGNames::targetXAttr, SVGInteger::create())) create 58 Source/core/svg/SVGFEConvolveMatrixElement.cpp , m_targetY(SVGAnimatedInteger::create(this, SVGNames::targetYAttr, SVGInteger::create())) create 245 Source/core/svg/SVGFEConvolveMatrixElement.cpp RefPtr<FilterEffect> effect = FEConvolveMatrix::create(filter, create 39 Source/core/svg/SVGFEConvolveMatrixElement.h static PassRefPtr<SVGFEConvolveMatrixElement> create(Document&); create 35 Source/core/svg/SVGFEDiffuseLightingElement.cpp , m_diffuseConstant(SVGAnimatedNumber::create(this, SVGNames::diffuseConstantAttr, SVGNumber::create(1))) create 36 Source/core/svg/SVGFEDiffuseLightingElement.cpp , m_surfaceScale(SVGAnimatedNumber::create(this, SVGNames::surfaceScaleAttr, SVGNumber::create(1))) create 37 Source/core/svg/SVGFEDiffuseLightingElement.cpp , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::kernelUnitLengthAttr)) create 38 Source/core/svg/SVGFEDiffuseLightingElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 186 Source/core/svg/SVGFEDiffuseLightingElement.cpp RefPtr<FilterEffect> effect = FEDiffuseLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_diffuseConstant->currentValue()->value(), create 36 Source/core/svg/SVGFEDiffuseLightingElement.h static PassRefPtr<SVGFEDiffuseLightingElement> create(Document&); create 46 Source/core/svg/SVGFEDisplacementMapElement.cpp , m_scale(SVGAnimatedNumber::create(this, SVGNames::scaleAttr, SVGNumber::create(0))) create 47 Source/core/svg/SVGFEDisplacementMapElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 48 Source/core/svg/SVGFEDisplacementMapElement.cpp , m_in2(SVGAnimatedString::create(this, SVGNames::in2Attr, SVGString::create())) create 49 Source/core/svg/SVGFEDisplacementMapElement.cpp , m_xChannelSelector(SVGAnimatedEnumeration<ChannelSelectorType>::create(this, SVGNames::xChannelSelectorAttr, CHANNEL_A)) create 50 Source/core/svg/SVGFEDisplacementMapElement.cpp , m_yChannelSelector(SVGAnimatedEnumeration<ChannelSelectorType>::create(this, SVGNames::yChannelSelectorAttr, CHANNEL_A)) create 148 Source/core/svg/SVGFEDisplacementMapElement.cpp RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, m_xChannelSelector->currentValue()->enumValue(), m_yChannelSelector->currentValue()->enumValue(), m_scale->currentValue()->value()); create 34 Source/core/svg/SVGFEDisplacementMapElement.h static PassRefPtr<SVGFEDisplacementMapElement> create(Document&); create 41 Source/core/svg/SVGFEDistantLightElement.cpp return DistantLightSource::create(azimuth()->currentValue()->value(), elevation()->currentValue()->value()); create 29 Source/core/svg/SVGFEDistantLightElement.h static PassRefPtr<SVGFEDistantLightElement> create(Document&); create 35 Source/core/svg/SVGFEDropShadowElement.cpp , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create(2))) create 36 Source/core/svg/SVGFEDropShadowElement.cpp , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create(2))) create 37 Source/core/svg/SVGFEDropShadowElement.cpp , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 2, 2)) create 38 Source/core/svg/SVGFEDropShadowElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 134 Source/core/svg/SVGFEDropShadowElement.cpp RefPtr<FilterEffect> effect = FEDropShadow::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value(), m_dx->currentValue()->value(), m_dy->currentValue()->value(), color, opacity); create 32 Source/core/svg/SVGFEDropShadowElement.h static PassRefPtr<SVGFEDropShadowElement> create(Document&); create 72 Source/core/svg/SVGFEFloodElement.cpp return FEFlood::create(filter, color, opacity); create 31 Source/core/svg/SVGFEFloodElement.h static PassRefPtr<SVGFEFloodElement> create(Document&); create 31 Source/core/svg/SVGFEFuncAElement.h static PassRefPtr<SVGFEFuncAElement> create(Document&); create 31 Source/core/svg/SVGFEFuncBElement.h static PassRefPtr<SVGFEFuncBElement> create(Document&); create 31 Source/core/svg/SVGFEFuncGElement.h static PassRefPtr<SVGFEFuncGElement> create(Document&); create 31 Source/core/svg/SVGFEFuncRElement.h static PassRefPtr<SVGFEFuncRElement> create(Document&); create 35 Source/core/svg/SVGFEGaussianBlurElement.cpp , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 0, 0)) create 36 Source/core/svg/SVGFEGaussianBlurElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 112 Source/core/svg/SVGFEGaussianBlurElement.cpp RefPtr<FilterEffect> effect = FEGaussianBlur::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value()); create 32 Source/core/svg/SVGFEGaussianBlurElement.h static PassRefPtr<SVGFEGaussianBlurElement> create(Document&); create 40 Source/core/svg/SVGFEImageElement.cpp , m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create())) create 40 Source/core/svg/SVGFEImageElement.h static PassRefPtr<SVGFEImageElement> create(Document&); create 37 Source/core/svg/SVGFELightElement.cpp , m_azimuth(SVGAnimatedNumber::create(this, SVGNames::azimuthAttr, SVGNumber::create())) create 38 Source/core/svg/SVGFELightElement.cpp , m_elevation(SVGAnimatedNumber::create(this, SVGNames::elevationAttr, SVGNumber::create())) create 39 Source/core/svg/SVGFELightElement.cpp , m_x(SVGAnimatedNumber::create(this, SVGNames::xAttr, SVGNumber::create())) create 40 Source/core/svg/SVGFELightElement.cpp , m_y(SVGAnimatedNumber::create(this, SVGNames::yAttr, SVGNumber::create())) create 41 Source/core/svg/SVGFELightElement.cpp , m_z(SVGAnimatedNumber::create(this, SVGNames::zAttr, SVGNumber::create())) create 42 Source/core/svg/SVGFELightElement.cpp , m_pointsAtX(SVGAnimatedNumber::create(this, SVGNames::pointsAtXAttr, SVGNumber::create())) create 43 Source/core/svg/SVGFELightElement.cpp , m_pointsAtY(SVGAnimatedNumber::create(this, SVGNames::pointsAtYAttr, SVGNumber::create())) create 44 Source/core/svg/SVGFELightElement.cpp , m_pointsAtZ(SVGAnimatedNumber::create(this, SVGNames::pointsAtZAttr, SVGNumber::create())) create 45 Source/core/svg/SVGFELightElement.cpp , m_specularExponent(SVGAnimatedNumber::create(this, SVGNames::specularExponentAttr, SVGNumber::create(1))) create 46 Source/core/svg/SVGFELightElement.cpp , m_limitingConeAngle(SVGAnimatedNumber::create(this, SVGNames::limitingConeAngleAttr, SVGNumber::create())) create 45 Source/core/svg/SVGFEMergeElement.cpp RefPtr<FilterEffect> effect = FEMerge::create(filter); create 31 Source/core/svg/SVGFEMergeElement.h static PassRefPtr<SVGFEMergeElement> create(Document&); create 32 Source/core/svg/SVGFEMergeNodeElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 32 Source/core/svg/SVGFEMergeNodeElement.h static PassRefPtr<SVGFEMergeNodeElement> create(Document&); create 45 Source/core/svg/SVGFEMorphologyElement.cpp , m_radius(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::radiusAttr)) create 46 Source/core/svg/SVGFEMorphologyElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 47 Source/core/svg/SVGFEMorphologyElement.cpp , m_svgOperator(SVGAnimatedEnumeration<MorphologyOperatorType>::create(this, SVGNames::operatorAttr, FEMORPHOLOGY_OPERATOR_ERODE)) create 150 Source/core/svg/SVGFEMorphologyElement.cpp RefPtr<FilterEffect> effect = FEMorphology::create(filter, m_svgOperator->currentValue()->enumValue(), xRadius, yRadius); create 34 Source/core/svg/SVGFEMorphologyElement.h static PassRefPtr<SVGFEMorphologyElement> create(Document&); create 34 Source/core/svg/SVGFEOffsetElement.cpp , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create())) create 35 Source/core/svg/SVGFEOffsetElement.cpp , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create())) create 36 Source/core/svg/SVGFEOffsetElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 106 Source/core/svg/SVGFEOffsetElement.cpp RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()->value(), m_dy->currentValue()->value()); create 32 Source/core/svg/SVGFEOffsetElement.h static PassRefPtr<SVGFEOffsetElement> create(Document&); create 41 Source/core/svg/SVGFEPointLightElement.cpp return PointLightSource::create(FloatPoint3D(x()->currentValue()->value(), y()->currentValue()->value(), z()->currentValue()->value())); create 29 Source/core/svg/SVGFEPointLightElement.h static PassRefPtr<SVGFEPointLightElement> create(Document&); create 36 Source/core/svg/SVGFESpecularLightingElement.cpp , m_specularConstant(SVGAnimatedNumber::create(this, SVGNames::specularConstantAttr, SVGNumber::create(1))) create 37 Source/core/svg/SVGFESpecularLightingElement.cpp , m_specularExponent(SVGAnimatedNumber::create(this, SVGNames::specularExponentAttr, SVGNumber::create(1))) create 38 Source/core/svg/SVGFESpecularLightingElement.cpp , m_surfaceScale(SVGAnimatedNumber::create(this, SVGNames::surfaceScaleAttr, SVGNumber::create(1))) create 39 Source/core/svg/SVGFESpecularLightingElement.cpp , m_kernelUnitLength(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::surfaceScaleAttr)) create 40 Source/core/svg/SVGFESpecularLightingElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 193 Source/core/svg/SVGFESpecularLightingElement.cpp RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, m_surfaceScale->currentValue()->value(), m_specularConstant->currentValue()->value(), create 36 Source/core/svg/SVGFESpecularLightingElement.h static PassRefPtr<SVGFESpecularLightingElement> create(Document&); create 44 Source/core/svg/SVGFESpotLightElement.cpp return SpotLightSource::create(pos, direction, specularExponent()->currentValue()->value(), limitingConeAngle()->currentValue()->value()); create 29 Source/core/svg/SVGFESpotLightElement.h static PassRefPtr<SVGFESpotLightElement> create(Document&); create 34 Source/core/svg/SVGFETileElement.cpp , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create())) create 94 Source/core/svg/SVGFETileElement.cpp RefPtr<FilterEffect> effect = FETile::create(filter); create 31 Source/core/svg/SVGFETileElement.h static PassRefPtr<SVGFETileElement> create(Document&); create 55 Source/core/svg/SVGFETurbulenceElement.cpp , m_baseFrequency(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::baseFrequencyAttr)) create 56 Source/core/svg/SVGFETurbulenceElement.cpp , m_seed(SVGAnimatedNumber::create(this, SVGNames::seedAttr, SVGNumber::create(0))) create 57 Source/core/svg/SVGFETurbulenceElement.cpp , m_stitchTiles(SVGAnimatedEnumeration<SVGStitchOptions>::create(this, SVGNames::stitchTilesAttr, SVG_STITCHTYPE_NOSTITCH)) create 58 Source/core/svg/SVGFETurbulenceElement.cpp , m_type(SVGAnimatedEnumeration<TurbulenceType>::create(this, SVGNames::typeAttr, FETURBULENCE_TYPE_TURBULENCE)) create 59 Source/core/svg/SVGFETurbulenceElement.cpp , m_numOctaves(SVGAnimatedInteger::create(this, SVGNames::numOctavesAttr, SVGInteger::create(1))) create 159 Source/core/svg/SVGFETurbulenceElement.cpp return FETurbulence::create(filter, m_type->currentValue()->enumValue(), baseFrequencyX()->currentValue()->value(), baseFrequencyY()->currentValue()->value(), m_numOctaves->currentValue()->value(), m_seed->currentValue()->value(), m_stitchTiles->currentValue()->enumValue() == SVG_STITCHTYPE_STITCH); create 44 Source/core/svg/SVGFETurbulenceElement.h static PassRefPtr<SVGFETurbulenceElement> create(Document&); create 38 Source/core/svg/SVGFilterElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 39 Source/core/svg/SVGFilterElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 40 Source/core/svg/SVGFilterElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 41 Source/core/svg/SVGFilterElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 42 Source/core/svg/SVGFilterElement.cpp , m_filterUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::filterUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) create 43 Source/core/svg/SVGFilterElement.cpp , m_primitiveUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::primitiveUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE)) create 44 Source/core/svg/SVGFilterElement.cpp , m_filterRes(SVGAnimatedIntegerOptionalInteger::create(this, SVGNames::filterResAttr)) create 41 Source/core/svg/SVGFilterElement.h static PassRefPtr<SVGFilterElement> create(Document&); create 36 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 37 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 38 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 39 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 40 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp , m_result(SVGAnimatedString::create(this, SVGNames::resultAttr, SVGString::create())) create 38 Source/core/svg/SVGFitToViewBox.cpp : m_viewBox(SVGAnimatedRect::create(element, SVGNames::viewBoxAttr)) create 39 Source/core/svg/SVGFitToViewBox.cpp , m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(element, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create())) create 35 Source/core/svg/SVGFontData.h static PassRefPtr<SVGFontData> create(SVGFontFaceElement* element) create 58 Source/core/svg/SVGFontElement.h static PassRefPtr<SVGFontElement> create(Document&); create 51 Source/core/svg/SVGFontFaceElement.cpp , m_fontFaceRule(StyleRuleFontFace::create()) create 55 Source/core/svg/SVGFontFaceElement.cpp RefPtrWillBeRawPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(HTMLStandardMode); create 36 Source/core/svg/SVGFontFaceElement.h static PassRefPtr<SVGFontFaceElement> create(Document&); create 30 Source/core/svg/SVGFontFaceFormatElement.h static PassRefPtr<SVGFontFaceFormatElement> create(Document&); create 33 Source/core/svg/SVGFontFaceNameElement.h static PassRefPtr<SVGFontFaceNameElement> create(Document&); create 24 Source/core/svg/SVGFontFaceSource.cpp return SimpleFontData::create( create 25 Source/core/svg/SVGFontFaceSource.cpp SVGFontData::create(m_svgFontFaceElement.get()), create 33 Source/core/svg/SVGFontFaceSrcElement.h static PassRefPtr<SVGFontFaceSrcElement> create(Document&); create 56 Source/core/svg/SVGFontFaceUriElement.cpp RefPtrWillBeRawPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr)); create 35 Source/core/svg/SVGFontFaceUriElement.h static PassRefPtr<SVGFontFaceUriElement> create(Document&); create 36 Source/core/svg/SVGForeignObjectElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 37 Source/core/svg/SVGForeignObjectElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 38 Source/core/svg/SVGForeignObjectElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 39 Source/core/svg/SVGForeignObjectElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 33 Source/core/svg/SVGForeignObjectElement.h static PassRefPtr<SVGForeignObjectElement> create(Document&); create 31 Source/core/svg/SVGGElement.h static PassRefPtr<SVGGElement> create(Document&); create 36 Source/core/svg/SVGGlyphElement.h static PassRefPtr<SVGGlyphElement> create(Document&); create 42 Source/core/svg/SVGGlyphMap.h static PassRefPtr<GlyphMapNode> create() { return adoptRef(new GlyphMapNode); } create 199 Source/core/svg/SVGGlyphMap.h node = GlyphMapNode::create(); create 33 Source/core/svg/SVGGlyphRefElement.h static PassRefPtr<SVGGlyphRefElement> create(Document&); create 53 Source/core/svg/SVGGradientElement.cpp , m_gradientTransform(SVGAnimatedTransformList::create(this, SVGNames::gradientTransformAttr, SVGTransformList::create())) create 54 Source/core/svg/SVGGradientElement.cpp , m_spreadMethod(SVGAnimatedEnumeration<SVGSpreadMethodType>::create(this, SVGNames::spreadMethodAttr, SVGSpreadMethodPad)) create 55 Source/core/svg/SVGGradientElement.cpp , m_gradientUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::gradientUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) create 38 Source/core/svg/SVGGraphicsElement.cpp , m_transform(SVGAnimatedTransformList::create(this, SVGNames::transformAttr, SVGTransformList::create())) create 60 Source/core/svg/SVGGraphicsElement.cpp return SVGMatrixTearOff::create(ctm); create 117 Source/core/svg/SVGGraphicsElement.cpp return SVGMatrixTearOff::create(getCTM()); create 122 Source/core/svg/SVGGraphicsElement.cpp return SVGMatrixTearOff::create(getScreenCTM()); create 253 Source/core/svg/SVGGraphicsElement.cpp return SVGRectTearOff::create(SVGRect::create(getBBox()), 0, PropertyIsNotAnimVal); create 33 Source/core/svg/SVGHKernElement.h static PassRefPtr<SVGHKernElement> create(Document&); create 38 Source/core/svg/SVGImageElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 39 Source/core/svg/SVGImageElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 40 Source/core/svg/SVGImageElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 41 Source/core/svg/SVGImageElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 42 Source/core/svg/SVGImageElement.cpp , m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create())) create 37 Source/core/svg/SVGImageElement.h static PassRefPtr<SVGImageElement> create(Document&); create 40 Source/core/svg/SVGImageLoader.cpp element()->dispatchEvent(Event::create(EventTypeNames::error)); create 46 Source/core/svg/SVGInteger.cpp return create(m_value); create 51 Source/core/svg/SVGInteger.cpp RefPtr<SVGInteger> svgInteger = create(); create 47 Source/core/svg/SVGInteger.h static PassRefPtr<SVGInteger> create(int value = 0) create 48 Source/core/svg/SVGIntegerOptionalInteger.cpp return SVGIntegerOptionalInteger::create(m_firstInteger->clone(), m_secondInteger->clone()); create 55 Source/core/svg/SVGIntegerOptionalInteger.cpp return SVGIntegerOptionalInteger::create(SVGInteger::create(0), SVGInteger::create(0)); create 61 Source/core/svg/SVGIntegerOptionalInteger.cpp return SVGIntegerOptionalInteger::create(SVGInteger::create(x), SVGInteger::create(y)); create 44 Source/core/svg/SVGIntegerOptionalInteger.h static PassRefPtr<SVGIntegerOptionalInteger> create(PassRefPtr<SVGInteger> firstInteger, PassRefPtr<SVGInteger> secondInteger) create 131 Source/core/svg/SVGLength.cpp RefPtr<SVGLength> length = create(); create 299 Source/core/svg/SVGLength.cpp return SVGLength::create(); create 301 Source/core/svg/SVGLength.cpp RefPtr<SVGLength> length = SVGLength::create(); create 346 Source/core/svg/SVGLength.cpp return CSSPrimitiveValue::create(length->valueInSpecifiedUnits(), cssType); create 400 Source/core/svg/SVGLength.cpp RefPtr<SVGLength> length = create(); create 426 Source/core/svg/SVGLength.cpp return create(); create 430 Source/core/svg/SVGLength.cpp return create(); create 47 Source/core/svg/SVGLength.h static PassRefPtr<SVGLength> create(SVGLengthMode mode = LengthModeOther) create 49 Source/core/svg/SVGLengthList.cpp RefPtr<SVGLengthList> ret = SVGLengthList::create(m_mode); create 56 Source/core/svg/SVGLengthList.cpp RefPtr<SVGLengthList> ret = SVGLengthList::create(m_mode); create 91 Source/core/svg/SVGLengthList.cpp RefPtr<SVGLength> length = SVGLength::create(m_mode); create 157 Source/core/svg/SVGLengthList.cpp append(SVGLength::create(m_mode)); create 46 Source/core/svg/SVGLengthList.h static PassRefPtr<SVGLengthList> create(SVGLengthMode mode = LengthModeOther) create 43 Source/core/svg/SVGLengthListTearOff.h static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 57 Source/core/svg/SVGLengthTearOff.h static PassRefPtr<SVGLengthTearOff> create(PassRefPtr<SVGLength> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 33 Source/core/svg/SVGLineElement.cpp , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 34 Source/core/svg/SVGLineElement.cpp , m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 35 Source/core/svg/SVGLineElement.cpp , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 36 Source/core/svg/SVGLineElement.cpp , m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 33 Source/core/svg/SVGLineElement.h static PassRefPtr<SVGLineElement> create(Document&); create 38 Source/core/svg/SVGLinearGradientElement.cpp , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 39 Source/core/svg/SVGLinearGradientElement.cpp , m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 40 Source/core/svg/SVGLinearGradientElement.cpp , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 41 Source/core/svg/SVGLinearGradientElement.cpp , m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 34 Source/core/svg/SVGLinearGradientElement.h static PassRefPtr<SVGLinearGradientElement> create(Document&); create 36 Source/core/svg/SVGMPathElement.h static PassRefPtr<SVGMPathElement> create(Document&); create 48 Source/core/svg/SVGMarkerElement.cpp , m_refX(SVGAnimatedLength::create(this, SVGNames::refXAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 49 Source/core/svg/SVGMarkerElement.cpp , m_refY(SVGAnimatedLength::create(this, SVGNames::refXAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 50 Source/core/svg/SVGMarkerElement.cpp , m_markerWidth(SVGAnimatedLength::create(this, SVGNames::markerWidthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 51 Source/core/svg/SVGMarkerElement.cpp , m_markerHeight(SVGAnimatedLength::create(this, SVGNames::markerHeightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 52 Source/core/svg/SVGMarkerElement.cpp , m_orientAngle(SVGAnimatedAngle::create(this)) create 53 Source/core/svg/SVGMarkerElement.cpp , m_markerUnits(SVGAnimatedEnumeration<SVGMarkerUnitsType>::create(this, SVGNames::markerUnitsAttr, SVGMarkerUnitsStrokeWidth)) create 57 Source/core/svg/SVGMarkerElement.h static PassRefPtr<SVGMarkerElement> create(Document&); create 36 Source/core/svg/SVGMaskElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 37 Source/core/svg/SVGMaskElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 38 Source/core/svg/SVGMaskElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 39 Source/core/svg/SVGMaskElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 40 Source/core/svg/SVGMaskElement.cpp , m_maskUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::maskUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) create 41 Source/core/svg/SVGMaskElement.cpp , m_maskContentUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::maskContentUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE)) create 36 Source/core/svg/SVGMaskElement.h static PassRefPtr<SVGMaskElement> create(Document&); create 99 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 106 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 113 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 120 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 127 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 134 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 141 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 148 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 155 Source/core/svg/SVGMatrixTearOff.cpp RefPtr<SVGMatrixTearOff> matrix = create(value()); create 166 Source/core/svg/SVGMatrixTearOff.cpp return create(transform); create 176 Source/core/svg/SVGMatrixTearOff.cpp return create(copy); create 48 Source/core/svg/SVGMatrixTearOff.h static PassRefPtr<SVGMatrixTearOff> create(const AffineTransform& value) create 53 Source/core/svg/SVGMatrixTearOff.h static PassRefPtr<SVGMatrixTearOff> create(SVGTransformTearOff* target) create 30 Source/core/svg/SVGMetadataElement.h static PassRefPtr<SVGMetadataElement> create(Document&); create 31 Source/core/svg/SVGMissingGlyphElement.h static PassRefPtr<SVGMissingGlyphElement> create(Document&); create 47 Source/core/svg/SVGNumber.cpp return create(m_value); create 52 Source/core/svg/SVGNumber.cpp RefPtr<SVGNumber> svgNumber = create(); create 125 Source/core/svg/SVGNumber.cpp return create(m_value); create 48 Source/core/svg/SVGNumber.h static PassRefPtr<SVGNumber> create(float value = 0.0f) create 90 Source/core/svg/SVGNumber.h static PassRefPtr<SVGNumberAcceptPercentage> create(float value = 0) create 48 Source/core/svg/SVGNumberList.cpp RefPtr<SVGNumberList> svgNumberList = SVGNumberList::create(); create 55 Source/core/svg/SVGNumberList.cpp RefPtr<SVGNumberList> svgNumberList = SVGNumberList::create(); create 88 Source/core/svg/SVGNumberList.cpp append(SVGNumber::create(number)); create 157 Source/core/svg/SVGNumberList.cpp append(SVGNumber::create()); create 46 Source/core/svg/SVGNumberList.h static PassRefPtr<SVGNumberList> create() create 43 Source/core/svg/SVGNumberListTearOff.h static PassRefPtr<SVGNumberListTearOff> create(PassRefPtr<SVGNumberList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 48 Source/core/svg/SVGNumberOptionalNumber.cpp return SVGNumberOptionalNumber::create(m_firstNumber->clone(), m_secondNumber->clone()); create 58 Source/core/svg/SVGNumberOptionalNumber.cpp return SVGNumberOptionalNumber::create(SVGNumber::create(x), SVGNumber::create(y)); create 44 Source/core/svg/SVGNumberOptionalNumber.h static PassRefPtr<SVGNumberOptionalNumber> create(PassRefPtr<SVGNumber> firstNumber, PassRefPtr<SVGNumber> secondNumber) create 44 Source/core/svg/SVGNumberTearOff.h static PassRefPtr<SVGNumberTearOff> create(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 116 Source/core/svg/SVGPaint.h static PassRefPtrWillBeRawPtr<SVGPaint> create(const SVGPaintType& type, const String& uri, const Color& color) create 38 Source/core/svg/SVGPathByteStream.h static PassOwnPtr<SVGPathByteStream> create() create 55 Source/core/svg/SVGPathElement.cpp , m_pathLength(SVGAnimatedNumber::create(this, SVGNames::pathLengthAttr, SVGNumber::create())) create 56 Source/core/svg/SVGPathElement.cpp , m_pathSegList(SVGAnimatedPath::create(this, SVGNames::dAttr)) create 80 Source/core/svg/SVGPathElement.cpp return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal); create 92 Source/core/svg/SVGPathElement.cpp return SVGPathSegClosePath::create(0, PathSegUndefinedRole); create 97 Source/core/svg/SVGPathElement.cpp return SVGPathSegMovetoAbs::create(0, PathSegUndefinedRole, x, y); create 102 Source/core/svg/SVGPathElement.cpp return SVGPathSegMovetoRel::create(0, PathSegUndefinedRole, x, y); create 107 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoAbs::create(0, PathSegUndefinedRole, x, y); create 112 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoRel::create(0, PathSegUndefinedRole, x, y); create 117 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicAbs::create(0, PathSegUndefinedRole, x, y, x1, y1, x2, y2); create 122 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicRel::create(0, PathSegUndefinedRole, x, y, x1, y1, x2, y2); create 127 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticAbs::create(0, PathSegUndefinedRole, x, y, x1, y1); create 132 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticRel::create(0, PathSegUndefinedRole, x, y, x1, y1); create 137 Source/core/svg/SVGPathElement.cpp return SVGPathSegArcAbs::create(0, PathSegUndefinedRole, x, y, r1, r2, angle, largeArcFlag, sweepFlag); create 142 Source/core/svg/SVGPathElement.cpp return SVGPathSegArcRel::create(0, PathSegUndefinedRole, x, y, r1, r2, angle, largeArcFlag, sweepFlag); create 147 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoHorizontalAbs::create(0, PathSegUndefinedRole, x); create 152 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoHorizontalRel::create(0, PathSegUndefinedRole, x); create 157 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoVerticalAbs::create(0, PathSegUndefinedRole, y); create 162 Source/core/svg/SVGPathElement.cpp return SVGPathSegLinetoVerticalRel::create(0, PathSegUndefinedRole, y); create 167 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicSmoothAbs::create(0, PathSegUndefinedRole, x, y, x2, y2); create 172 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoCubicSmoothRel::create(0, PathSegUndefinedRole, x, y, x2, y2); create 177 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticSmoothAbs::create(0, PathSegUndefinedRole, x, y); create 182 Source/core/svg/SVGPathElement.cpp return SVGPathSegCurvetoQuadraticSmoothRel::create(0, PathSegUndefinedRole, x, y); create 56 Source/core/svg/SVGPathElement.h static PassRefPtr<SVGPathElement> create(Document&); create 31 Source/core/svg/SVGPathSegArcAbs.h static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) create 31 Source/core/svg/SVGPathSegArcRel.h static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) create 30 Source/core/svg/SVGPathSegClosePath.h static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role) create 31 Source/core/svg/SVGPathSegCurvetoCubicAbs.h static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) create 31 Source/core/svg/SVGPathSegCurvetoCubicRel.h static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) create 31 Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) create 31 Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) create 31 Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) create 31 Source/core/svg/SVGPathSegCurvetoQuadraticRel.h static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) create 31 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 31 Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 31 Source/core/svg/SVGPathSegLinetoAbs.h static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 31 Source/core/svg/SVGPathSegLinetoHorizontalAbs.h static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x) create 31 Source/core/svg/SVGPathSegLinetoHorizontalRel.h static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x) create 31 Source/core/svg/SVGPathSegLinetoRel.h static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 31 Source/core/svg/SVGPathSegLinetoVerticalAbs.h static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y) create 31 Source/core/svg/SVGPathSegLinetoVerticalRel.h static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y) create 70 Source/core/svg/SVGPathSegList.cpp RefPtr<SVGPathSegList> svgPathSegList = SVGPathSegList::create(m_contextElement); create 78 Source/core/svg/SVGPathSegList.cpp m_byteStream = SVGPathByteStream::create(); create 157 Source/core/svg/SVGPathSegList.cpp m_byteStream = SVGPathByteStream::create(); create 212 Source/core/svg/SVGPathSegList.cpp m_byteStream = SVGPathByteStream::create(); create 52 Source/core/svg/SVGPathSegList.h static PassRefPtr<SVGPathSegList> create(SVGPathElement* contextElement, SVGPathSegRole role = PathSegUndefinedRole) create 64 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 66 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 74 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 76 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 84 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalAbs::create(m_pathElement, m_pathSegRole, x)); create 86 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalRel::create(m_pathElement, m_pathSegRole, x)); create 94 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoVerticalAbs::create(m_pathElement, m_pathSegRole, y)); create 96 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoVerticalRel::create(m_pathElement, m_pathSegRole, y)); create 104 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y())); create 106 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y())); create 114 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicSmoothAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point2.x(), point2.y())); create 116 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicSmoothRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point2.x(), point2.y())); create 124 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y())); create 126 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), point1.x(), point1.y())); create 134 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticSmoothAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 136 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoQuadraticSmoothRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y())); create 144 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag)); create 146 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag)); create 153 Source/core/svg/SVGPathSegListBuilder.cpp m_pathSegList->appendWithoutByteStreamSync(SVGPathSegClosePath::create(m_pathElement, m_pathSegRole)); create 63 Source/core/svg/SVGPathSegListTearOff.h static PassRefPtr<SVGPathSegListTearOff> create(PassRefPtr<SVGPathSegList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 31 Source/core/svg/SVGPathSegMovetoAbs.h static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 31 Source/core/svg/SVGPathSegMovetoRel.h static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) create 32 Source/core/svg/SVGPathStringSource.h static PassOwnPtr<SVGPathStringSource> create(const String& string) create 105 Source/core/svg/SVGPathUtilities.cpp OwnPtr<SVGPathStringSource> source = SVGPathStringSource::create(d); create 155 Source/core/svg/SVGPathUtilities.cpp OwnPtr<SVGPathStringSource> source = SVGPathStringSource::create(d); create 40 Source/core/svg/SVGPatternElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 41 Source/core/svg/SVGPatternElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 42 Source/core/svg/SVGPatternElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 43 Source/core/svg/SVGPatternElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 44 Source/core/svg/SVGPatternElement.cpp , m_patternTransform(SVGAnimatedTransformList::create(this, SVGNames::patternTransformAttr, SVGTransformList::create())) create 45 Source/core/svg/SVGPatternElement.cpp , m_patternUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::patternUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)) create 46 Source/core/svg/SVGPatternElement.cpp , m_patternContentUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::patternContentUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE)) create 44 Source/core/svg/SVGPatternElement.h static PassRefPtr<SVGPatternElement> create(Document&); create 58 Source/core/svg/SVGPoint.cpp return SVGPoint::create(m_value); create 63 Source/core/svg/SVGPoint.cpp RefPtr<SVGPoint> point = SVGPoint::create(); create 46 Source/core/svg/SVGPoint.h static PassRefPtr<SVGPoint> create() create 51 Source/core/svg/SVGPoint.h static PassRefPtr<SVGPoint> create(const FloatPoint& point) create 49 Source/core/svg/SVGPointList.cpp RefPtr<SVGPointList> svgPointList = SVGPointList::create(); create 56 Source/core/svg/SVGPointList.cpp RefPtr<SVGPointList> svgPointList = SVGPointList::create(); create 96 Source/core/svg/SVGPointList.cpp append(SVGPoint::create(FloatPoint(x, y))); create 173 Source/core/svg/SVGPointList.cpp append(SVGPoint::create()); create 46 Source/core/svg/SVGPointList.h static PassRefPtr<SVGPointList> create() create 43 Source/core/svg/SVGPointListTearOff.h static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 72 Source/core/svg/SVGPointTearOff.cpp return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal); create 44 Source/core/svg/SVGPointTearOff.h static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 35 Source/core/svg/SVGPolyElement.cpp , m_points(SVGAnimatedPointList::create(this, SVGNames::pointsAttr, SVGPointList::create())) create 31 Source/core/svg/SVGPolygonElement.h static PassRefPtr<SVGPolygonElement> create(Document&); create 31 Source/core/svg/SVGPolylineElement.h static PassRefPtr<SVGPolylineElement> create(Document&); create 50 Source/core/svg/SVGPreserveAspectRatio.cpp RefPtr<SVGPreserveAspectRatio> preserveAspectRatio = create(); create 60 Source/core/svg/SVGPreserveAspectRatio.cpp RefPtr<SVGPreserveAspectRatio> preserveAspectRatio = create(); create 56 Source/core/svg/SVGPreserveAspectRatio.h static PassRefPtr<SVGPreserveAspectRatio> create() create 62 Source/core/svg/SVGPreserveAspectRatioTearOff.h static PassRefPtr<SVGPreserveAspectRatioTearOff> create(PassRefPtr<SVGPreserveAspectRatio> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 37 Source/core/svg/SVGRadialGradientElement.cpp , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 38 Source/core/svg/SVGRadialGradientElement.cpp , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 39 Source/core/svg/SVGRadialGradientElement.cpp , m_r(SVGAnimatedLength::create(this, SVGNames::rAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths)) create 40 Source/core/svg/SVGRadialGradientElement.cpp , m_fx(SVGAnimatedLength::create(this, SVGNames::fxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 41 Source/core/svg/SVGRadialGradientElement.cpp , m_fy(SVGAnimatedLength::create(this, SVGNames::fyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 42 Source/core/svg/SVGRadialGradientElement.cpp , m_fr(SVGAnimatedLength::create(this, SVGNames::frAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths)) create 34 Source/core/svg/SVGRadialGradientElement.h static PassRefPtr<SVGRadialGradientElement> create(Document&); create 56 Source/core/svg/SVGRect.cpp return SVGRect::create(m_value); create 61 Source/core/svg/SVGRect.cpp RefPtr<SVGRect> rect = SVGRect::create(); create 36 Source/core/svg/SVGRect.h static PassRefPtr<SVGRect> create() create 41 Source/core/svg/SVGRect.h static PassRefPtr<SVGRect> create(InvalidSVGRectTag) create 46 Source/core/svg/SVGRect.h static PassRefPtr<SVGRect> create(const FloatRect& rect) create 34 Source/core/svg/SVGRectElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 35 Source/core/svg/SVGRectElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 36 Source/core/svg/SVGRectElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 37 Source/core/svg/SVGRectElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 38 Source/core/svg/SVGRectElement.cpp , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 39 Source/core/svg/SVGRectElement.cpp , m_ry(SVGAnimatedLength::create(this, SVGNames::ryAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 33 Source/core/svg/SVGRectElement.h static PassRefPtr<SVGRectElement> create(Document&); create 42 Source/core/svg/SVGRectTearOff.h static PassRefPtr<SVGRectTearOff> create(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 56 Source/core/svg/SVGRemoteFontFaceSource.cpp return SimpleFontData::create( create 57 Source/core/svg/SVGRemoteFontFaceSource.cpp SVGFontData::create(fontFaceElement), create 68 Source/core/svg/SVGSVGElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 69 Source/core/svg/SVGSVGElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 70 Source/core/svg/SVGSVGElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 71 Source/core/svg/SVGSVGElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 73 Source/core/svg/SVGSVGElement.cpp , m_timeContainer(SMILTimeContainer::create(*this)) create 74 Source/core/svg/SVGSVGElement.cpp , m_translation(SVGPoint::create()) create 134 Source/core/svg/SVGSVGElement.cpp return SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal); create 160 Source/core/svg/SVGSVGElement.cpp m_viewSpec = SVGViewSpec::create(this); create 223 Source/core/svg/SVGSVGElement.cpp return SVGCurrentTranslateTearOff::create(this); create 437 Source/core/svg/SVGSVGElement.cpp return SVGNumberTearOff::create(SVGNumber::create(0.0f), 0, PropertyIsNotAnimVal); create 442 Source/core/svg/SVGSVGElement.cpp return SVGLengthTearOff::create(SVGLength::create(), 0, PropertyIsNotAnimVal); create 447 Source/core/svg/SVGSVGElement.cpp return SVGAngleTearOff::create(SVGAngle::create(), 0, PropertyIsNotAnimVal); create 452 Source/core/svg/SVGSVGElement.cpp return SVGPointTearOff::create(SVGPoint::create(), 0, PropertyIsNotAnimVal); create 457 Source/core/svg/SVGSVGElement.cpp return SVGMatrixTearOff::create(AffineTransform()); create 462 Source/core/svg/SVGSVGElement.cpp return SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal); create 467 Source/core/svg/SVGSVGElement.cpp return SVGTransformTearOff::create(SVGTransform::create(SVG_TRANSFORM_MATRIX), 0, PropertyIsNotAnimVal); create 472 Source/core/svg/SVGSVGElement.cpp return SVGTransformTearOff::create(SVGTransform::create(matrix->value()), 0, PropertyIsNotAnimVal); create 47 Source/core/svg/SVGSVGElement.h static PassRefPtr<SVGSVGElement> create(Document&); create 39 Source/core/svg/SVGScriptElement.cpp , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted)) create 191 Source/core/svg/SVGScriptElement.cpp dispatchEvent(Event::create(EventTypeNames::load)); create 40 Source/core/svg/SVGScriptElement.h static PassRefPtr<SVGScriptElement> create(Document&, bool wasInsertedByParser); create 31 Source/core/svg/SVGSetElement.h static PassRefPtr<SVGSetElement> create(Document&); create 38 Source/core/svg/SVGStaticStringList.cpp , m_value(SVGStringList::create()) create 81 Source/core/svg/SVGStaticStringList.cpp m_tearOff = SVGStringListTearOff::create(m_value, contextElement(), PropertyIsNotAnimVal, attributeName()); create 45 Source/core/svg/SVGStaticStringList.h static PassRefPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName) create 33 Source/core/svg/SVGStopElement.cpp , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAcceptPercentage::create())) create 32 Source/core/svg/SVGStopElement.h static PassRefPtr<SVGStopElement> create(Document&); create 44 Source/core/svg/SVGString.h static PassRefPtr<SVGString> create() create 49 Source/core/svg/SVGString.h static PassRefPtr<SVGString> create(const String& value) create 54 Source/core/svg/SVGString.h PassRefPtr<SVGString> clone() const { return create(m_value); } create 57 Source/core/svg/SVGString.h return create(value); create 106 Source/core/svg/SVGStringList.cpp RefPtr<SVGStringList> svgStringList = create(); create 130 Source/core/svg/SVGStringList.cpp RefPtr<SVGStringList> svgStringList = create(); create 57 Source/core/svg/SVGStringList.h static PassRefPtr<SVGStringList> create() create 41 Source/core/svg/SVGStringListTearOff.h static PassRefPtr<SVGStringListTearOff> create(PassRefPtr<SVGStringList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 33 Source/core/svg/SVGStyleElement.h static PassRefPtr<SVGStyleElement> create(Document&, bool createdByParser); create 31 Source/core/svg/SVGSwitchElement.h static PassRefPtr<SVGSwitchElement> create(Document&); create 33 Source/core/svg/SVGSymbolElement.h static PassRefPtr<SVGSymbolElement> create(Document&); create 30 Source/core/svg/SVGTSpanElement.h static PassRefPtr<SVGTSpanElement> create(Document&); create 33 Source/core/svg/SVGTests.cpp : m_requiredFeatures(SVGStaticStringList::create(contextElement, SVGNames::requiredFeaturesAttr)) create 34 Source/core/svg/SVGTests.cpp , m_requiredExtensions(SVGStaticStringList::create(contextElement, SVGNames::requiredExtensionsAttr)) create 35 Source/core/svg/SVGTests.cpp , m_systemLanguage(SVGStaticStringList::create(contextElement, SVGNames::systemLanguageAttr)) create 71 Source/core/svg/SVGTextContentElement.cpp : SVGAnimatedLength(contextElement, SVGNames::textLengthAttr, SVGLength::create(LengthModeOther), ForbidNegativeLengths) create 79 Source/core/svg/SVGTextContentElement.cpp , m_textLength(SVGAnimatedTextLength::create(this)) create 81 Source/core/svg/SVGTextContentElement.cpp , m_lengthAdjust(SVGAnimatedEnumeration<SVGLengthAdjustType>::create(this, SVGNames::lengthAdjustAttr, SVGLengthAdjustSpacing)) create 127 Source/core/svg/SVGTextContentElement.cpp return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal); create 140 Source/core/svg/SVGTextContentElement.cpp return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal); create 153 Source/core/svg/SVGTextContentElement.cpp return SVGRectTearOff::create(SVGRect::create(rect), 0, PropertyIsNotAnimVal); create 31 Source/core/svg/SVGTextElement.h static PassRefPtr<SVGTextElement> create(Document&); create 57 Source/core/svg/SVGTextPathElement.cpp , m_startOffset(SVGAnimatedLength::create(this, SVGNames::startOffsetAttr, SVGLength::create(LengthModeOther), AllowNegativeLengths)) create 58 Source/core/svg/SVGTextPathElement.cpp , m_method(SVGAnimatedEnumeration<SVGTextPathMethodType>::create(this, SVGNames::methodAttr, SVGTextPathMethodAlign)) create 59 Source/core/svg/SVGTextPathElement.cpp , m_spacing(SVGAnimatedEnumeration<SVGTextPathSpacingType>::create(this, SVGNames::spacingAttr, SVGTextPathSpacingExact)) create 57 Source/core/svg/SVGTextPathElement.h static PassRefPtr<SVGTextPathElement> create(Document&); create 36 Source/core/svg/SVGTextPositioningElement.cpp , m_x(SVGAnimatedLengthList::create(this, SVGNames::xAttr, SVGLengthList::create(LengthModeWidth))) create 37 Source/core/svg/SVGTextPositioningElement.cpp , m_y(SVGAnimatedLengthList::create(this, SVGNames::yAttr, SVGLengthList::create(LengthModeHeight))) create 38 Source/core/svg/SVGTextPositioningElement.cpp , m_dx(SVGAnimatedLengthList::create(this, SVGNames::dxAttr, SVGLengthList::create(LengthModeWidth))) create 39 Source/core/svg/SVGTextPositioningElement.cpp , m_dy(SVGAnimatedLengthList::create(this, SVGNames::dyAttr, SVGLengthList::create(LengthModeHeight))) create 40 Source/core/svg/SVGTextPositioningElement.cpp , m_rotate(SVGAnimatedNumberList::create(this, SVGNames::rotateAttr, SVGNumberList::create())) create 30 Source/core/svg/SVGTitleElement.h static PassRefPtr<SVGTitleElement> create(Document&); create 53 Source/core/svg/SVGTransform.h static PassRefPtr<SVGTransform> create() create 58 Source/core/svg/SVGTransform.h static PassRefPtr<SVGTransform> create(SVGTransformType type, ConstructionMode mode = ConstructIdentityTransform) create 63 Source/core/svg/SVGTransform.h static PassRefPtr<SVGTransform> create(const AffineTransform& affineTransform) create 120 Source/core/svg/SVGTransformDistance.cpp RefPtr<SVGTransform> transform = SVGTransform::create(); create 166 Source/core/svg/SVGTransformDistance.cpp return SVGTransform::create(); create 57 Source/core/svg/SVGTransformList.cpp return SVGTransform::create(); create 59 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransform> transform = SVGTransform::create(matrix); create 79 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransformList> svgTransformList = SVGTransformList::create(); create 133 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransform> transform = SVGTransform::create(); create 279 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransformList> svgTransformList = SVGTransformList::create(); create 327 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransform> effectiveFrom = fromListSize ? fromList->at(0) : SVGTransform::create(toTransform->transformType(), SVGTransform::ConstructZeroTransform); create 330 Source/core/svg/SVGTransformList.cpp RefPtr<SVGTransform> effectiveToAtEnd = !toAtEndOfDurationList->isEmpty() ? toAtEndOfDurationList->at(0) : SVGTransform::create(toTransform->transformType(), SVGTransform::ConstructZeroTransform); create 46 Source/core/svg/SVGTransformList.h static PassRefPtr<SVGTransformList> create() create 51 Source/core/svg/SVGTransformList.h static PassRefPtr<SVGTransformList> create(SVGTransformType, const String&); create 44 Source/core/svg/SVGTransformListTearOff.h static PassRefPtr<SVGTransformListTearOff> create(PassRefPtr<SVGTransformList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 52 Source/core/svg/SVGTransformTearOff.cpp m_matrixTearoff = SVGMatrixTearOff::create(this); create 55 Source/core/svg/SVGTransformTearOff.h static PassRefPtr<SVGTransformTearOff> create(PassRefPtr<SVGTransform> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) create 31 Source/core/svg/SVGURIReference.cpp : m_href(SVGAnimatedString::create(element, XLinkNames::hrefAttr, SVGString::create())) create 46 Source/core/svg/SVGUnknownElement.h static PassRefPtr<SVGUnknownElement> create(const QualifiedName& tagName, Document& document) create 57 Source/core/svg/SVGUseElement.cpp , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths)) create 58 Source/core/svg/SVGUseElement.cpp , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths)) create 59 Source/core/svg/SVGUseElement.cpp , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) create 60 Source/core/svg/SVGUseElement.cpp , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) create 427 Source/core/svg/SVGUseElement.cpp m_targetElementInstance = SVGElementInstance::create(this, this, target); create 496 Source/core/svg/SVGUseElement.cpp RefPtr<XMLSerializer> serializer = XMLSerializer::create(); create 590 Source/core/svg/SVGUseElement.cpp RefPtr<SVGElementInstance> instance = SVGElementInstance::create(this, 0, element); create 603 Source/core/svg/SVGUseElement.cpp RefPtr<SVGElementInstance> newInstance = SVGElementInstance::create(this, toSVGUseElement(target), newTarget); create 694 Source/core/svg/SVGUseElement.cpp RefPtr<SVGGElement> cloneParent = SVGGElement::create(*referencedDocument()); create 743 Source/core/svg/SVGUseElement.cpp RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(*referencedDocument()); create 925 Source/core/svg/SVGUseElement.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 40 Source/core/svg/SVGUseElement.h static PassRefPtr<SVGUseElement> create(Document&, bool wasInsertedByParser); create 32 Source/core/svg/SVGVKernElement.h static PassRefPtr<SVGVKernElement> create(Document&); create 30 Source/core/svg/SVGViewElement.cpp , m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr)) create 37 Source/core/svg/SVGViewElement.h static PassRefPtr<SVGViewElement> create(Document&); create 38 Source/core/svg/SVGViewSpec.cpp , m_transform(SVGAnimatedTransformList::create(contextElement, SVGNames::transformAttr, SVGTransformList::create())) create 36 Source/core/svg/SVGViewSpec.h static PassRefPtr<SVGViewSpec> create(SVGSVGElement* contextElement) create 39 Source/core/svg/SVGZoomEvent.cpp RefPtr<SVGRectTearOff> rectTearOff = SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal); create 56 Source/core/svg/SVGZoomEvent.cpp RefPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_previousTranslate), 0, PropertyIsNotAnimVal); create 73 Source/core/svg/SVGZoomEvent.cpp RefPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_newTranslate), 0, PropertyIsNotAnimVal); create 33 Source/core/svg/SVGZoomEvent.h static PassRefPtrWillBeRawPtr<SVGZoomEvent> create() create 48 Source/core/svg/animation/SMILTimeContainer.h static PassRefPtr<SMILTimeContainer> create(SVGSVGElement& owner) { return adoptRef(new SMILTimeContainer(owner)); } create 635 Source/core/svg/animation/SVGSMILElement.cpp condition.m_eventListener = ConditionEventListener::create(this, &condition); create 1327 Source/core/svg/animation/SVGSMILElement.cpp dispatchEvent(RepeatEvent::create(eventType, repeatEventCount)); create 1329 Source/core/svg/animation/SVGSMILElement.cpp dispatchEvent(Event::create(eventType)); create 204 Source/core/svg/graphics/SVGImage.cpp OwnPtr<ImageBuffer> buffer = ImageBuffer::create(size()); create 232 Source/core/svg/graphics/SVGImage.cpp OwnPtr<ImageBuffer> buffer = ImageBuffer::create(expandedIntSize(imageBufferSize.size())); create 406 Source/core/svg/graphics/SVGImage.cpp RefPtr<LocalFrame> frame = LocalFrame::create(dummyFrameLoaderClient, &page->frameHost(), 0); create 407 Source/core/svg/graphics/SVGImage.cpp frame->setView(FrameView::create(frame.get())); create 44 Source/core/svg/graphics/SVGImage.h static PassRefPtr<SVGImage> create(ImageObserver* observer) create 61 Source/core/svg/graphics/SVGImageCache.cpp m_imageForContainerMap.set(client, SVGImageForContainer::create(m_svgImage, containerSizeWithoutZoom, containerZoom)); create 44 Source/core/svg/graphics/SVGImageCache.h static PassOwnPtr<SVGImageCache> create(SVGImage* image) create 38 Source/core/svg/graphics/SVGImageForContainer.h static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatSize& containerSize, float zoom) create 37 Source/core/svg/graphics/filters/SVGFilter.h static PassRefPtr<SVGFilter> create(const AffineTransform&, const IntRect&, const FloatRect&, const FloatRect&, bool); create 39 Source/core/svg/graphics/filters/SVGFilterBuilder.h static PassRefPtr<SVGFilterBuilder> create(PassRefPtr<FilterEffect> sourceGraphic, PassRefPtr<FilterEffect> sourceAlpha) { return adoptRef(new SVGFilterBuilder(sourceGraphic, sourceAlpha)); } create 183 Source/core/svg/properties/SVGAnimatedProperty.h static PassRefPtr<SVGAnimatedProperty<Property> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue) create 247 Source/core/svg/properties/SVGAnimatedProperty.h static PassRefPtr<SVGAnimatedProperty<Property> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue) create 278 Source/core/svg/properties/SVGAnimatedProperty.h m_baseValTearOff = TearOffType::create(this->baseValue(), this->contextElement(), PropertyIsNotAnimVal, this->attributeName()); create 289 Source/core/svg/properties/SVGAnimatedProperty.h m_animValTearOff = TearOffType::create(this->currentValue(), this->contextElement(), PropertyIsAnimVal, this->attributeName()); create 69 Source/core/svg/properties/SVGListPropertyTearOffHelper.h return ItemTearOffType::create(value, contextElement, propertyIsAnimVal, attributeName); create 57 Source/core/testing/DummyPageHolder.cpp m_frame = LocalFrame::create(&m_frameLoaderClient, &m_page->frameHost(), 0); create 58 Source/core/testing/DummyPageHolder.cpp m_frame->setView(FrameView::create(m_frame.get(), initialViewSize)); create 62 Source/core/testing/DummyPageHolder.h static PassOwnPtr<DummyPageHolder> create(const IntSize& initialViewSize = IntSize()); create 44 Source/core/testing/GCObservation.h static PassRefPtrWillBeRawPtr<GCObservation> create(v8::Handle<v8::Value> observedValue) create 119 Source/core/testing/InspectorFrontendClientLocal.cpp m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); create 43 Source/core/testing/InternalProfilers.h static PassRefPtrWillBeRawPtr<InternalProfilers> create() create 117 Source/core/testing/InternalSettings.cpp : m_internalSettings(InternalSettings::create(page)) { } create 76 Source/core/testing/InternalSettings.h static PassRefPtrWillBeRawPtr<InternalSettings> create(Page& page) create 226 Source/core/testing/Internals.cpp , m_runtimeFlags(InternalRuntimeFlags::create()) create 261 Source/core/testing/Internals.cpp m_profilers = InternalProfilers::create(); create 287 Source/core/testing/Internals.cpp return GCObservation::create(observedValue); create 613 Source/core/testing/Internals.cpp return CSSComputedStyleDeclaration::create(node, allowVisitedStyle); create 759 Source/core/testing/Internals.cpp s_pagePopupDriver = MockPagePopupDriver::create(page->mainFrame()).leakPtr(); create 773 Source/core/testing/Internals.cpp return ClientRect::create(); create 776 Source/core/testing/Internals.cpp return ClientRect::create(document->view()->visibleContentRect()); create 784 Source/core/testing/Internals.cpp return ClientRect::create(); create 787 Source/core/testing/Internals.cpp return ClientRect::create(document->frame()->selection().absoluteCaretBounds()); create 794 Source/core/testing/Internals.cpp return ClientRect::create(); create 800 Source/core/testing/Internals.cpp return ClientRect::create(); create 801 Source/core/testing/Internals.cpp return ClientRect::create(renderer->absoluteBoundingBoxRectIgnoringTransforms()); create 808 Source/core/testing/Internals.cpp return ClientRectList::create(); create 813 Source/core/testing/Internals.cpp return ClientRectList::create(highlight.quads); create 876 Source/core/testing/Internals.cpp return Range::create(node->document(), node, marker->startOffset(), node, marker->endOffset()); create 1104 Source/core/testing/Internals.cpp return PlainTextRange::create(*scope, *range).start(); create 1117 Source/core/testing/Internals.cpp return PlainTextRange::create(*scope, *range).length(); create 1147 Source/core/testing/Internals.cpp return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); create 1187 Source/core/testing/Internals.cpp return DOMPoint::create(adjustedPoint.x(), adjustedPoint.y()); create 1189 Source/core/testing/Internals.cpp return DOMPoint::create(x, y); create 1226 Source/core/testing/Internals.cpp return ClientRect::create(zoomableArea); create 1401 Source/core/testing/Internals.cpp rects->append(node, layerType, ClientRect::create(layerRects[i])); create 1426 Source/core/testing/Internals.cpp RefPtrWillBeRawPtr<LayerRectList> rects = LayerRectList::create(); create 1880 Source/core/testing/Internals.cpp return ClientRectList::create(quads); create 2080 Source/core/testing/Internals.cpp return MallocStatistics::create(); create 2085 Source/core/testing/Internals.cpp return TypeConversions::create(); create 2151 Source/core/testing/Internals.cpp return ClientRectList::create(); create 2163 Source/core/testing/Internals.cpp return ClientRectList::create(quads); create 2278 Source/core/testing/Internals.cpp return ClientRect::create(document->frame()->selection().bounds()); create 2408 Source/core/testing/Internals.cpp return ScriptPromiseResolver::create(context)->promise(); create 2413 Source/core/testing/Internals.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(context); create 2421 Source/core/testing/Internals.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(context); create 2429 Source/core/testing/Internals.cpp return promise.then(AddOneFunction::create(context)); create 74 Source/core/testing/Internals.h static PassRefPtrWillBeRawPtr<Internals> create(Document*); create 48 Source/core/testing/LayerRect.h static PassRefPtrWillBeRawPtr<LayerRect> create(PassRefPtr<Node> node, const String& layerType, PassRefPtr<ClientRect> rect) create 61 Source/core/testing/LayerRectList.cpp m_list.append(LayerRect::create(layerRootNode, layerType, layerRelativeRect)); create 50 Source/core/testing/LayerRectList.h static PassRefPtrWillBeRawPtr<LayerRectList> create() create 38 Source/core/testing/MallocStatistics.h static PassRefPtrWillBeRawPtr<MallocStatistics> create() create 44 Source/core/testing/MockPagePopupDriver.cpp static PassRefPtr<MockPagePopup> create(PagePopupClient*, const IntRect& originBoundsInRootView, LocalFrame*); create 63 Source/core/testing/MockPagePopupDriver.cpp m_iframe = HTMLIFrameElement::create(*document); create 72 Source/core/testing/MockPagePopupDriver.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(scriptToSetUpPagePopupController, sizeof(scriptToSetUpPagePopupController)); create 124 Source/core/testing/MockPagePopupDriver.cpp m_pagePopupController = PagePopupController::create(client); create 125 Source/core/testing/MockPagePopupDriver.cpp m_mockPagePopup = MockPagePopup::create(client, originBoundsInRootView, m_mainFrame); create 44 Source/core/testing/MockPagePopupDriver.h static PassOwnPtr<MockPagePopupDriver> create(LocalFrame* mainFrame); create 37 Source/core/testing/TypeConversions.h static PassRefPtrWillBeRawPtr<TypeConversions> create() create 48 Source/core/testing/v8/WebCoreTestSupport.cpp context->Global()->Set(v8::String::NewFromUtf8(context->GetIsolate(), Internals::internalsId), toV8(Internals::create(toDocument(scriptContext)), v8::Handle<v8::Object>(), context->GetIsolate())); create 46 Source/core/timing/MemoryInfo.h static PassRefPtrWillBeRawPtr<MemoryInfo> create(LocalFrame* frame) create 75 Source/core/timing/Performance.cpp return MemoryInfo::create(m_frame); create 81 Source/core/timing/Performance.cpp m_navigation = PerformanceNavigation::create(m_frame); create 89 Source/core/timing/Performance.cpp m_timing = PerformanceTiming::create(m_frame); create 157 Source/core/timing/Performance.cpp dispatchEvent(Event::create(EventTypeNames::webkitresourcetimingbufferfull)); create 164 Source/core/timing/Performance.cpp RefPtr<SecurityOrigin> resourceOrigin = SecurityOrigin::create(response.url()); create 209 Source/core/timing/Performance.cpp RefPtrWillBeRawPtr<PerformanceEntry> entry = PerformanceResourceTiming::create(info, initiatorDocument, startTime, allowTimingDetails); create 228 Source/core/timing/Performance.cpp RefPtrWillBeRawPtr<PerformanceEntry> entry = PerformanceResourceTiming::create(info, initiatorDocument, startTime, lastRedirectEndTime, allowTimingDetails, allowRedirectDetails); create 237 Source/core/timing/Performance.cpp dispatchEvent(Event::create(EventTypeNames::webkitresourcetimingbufferfull)); create 248 Source/core/timing/Performance.cpp m_userTiming = UserTiming::create(this); create 255 Source/core/timing/Performance.cpp m_userTiming = UserTiming::create(this); create 262 Source/core/timing/Performance.cpp m_userTiming = UserTiming::create(this); create 269 Source/core/timing/Performance.cpp m_userTiming = UserTiming::create(this); create 62 Source/core/timing/Performance.h static PassRefPtrWillBeRawPtr<Performance> create(LocalFrame* frame) create 38 Source/core/timing/PerformanceMark.h static PassRefPtrWillBeRawPtr<PerformanceMark> create(const String& name, double startTime) create 38 Source/core/timing/PerformanceMeasure.h static PassRefPtrWillBeRawPtr<PerformanceMeasure> create(const String& name, double startTime, double endTime) create 46 Source/core/timing/PerformanceNavigation.h static PassRefPtrWillBeRawPtr<PerformanceNavigation> create(LocalFrame* frame) create 51 Source/core/timing/PerformanceResourceTiming.h static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails) create 56 Source/core/timing/PerformanceResourceTiming.h static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, bool m_allowTimingDetails) create 50 Source/core/timing/PerformanceTiming.h static PassRefPtrWillBeRawPtr<PerformanceTiming> create(LocalFrame* frame) create 109 Source/core/timing/PerformanceUserTiming.cpp insertPerformanceEntry(m_marksMap, PerformanceMark::create(markName, startTime)); create 157 Source/core/timing/PerformanceUserTiming.cpp insertPerformanceEntry(m_measuresMap, PerformanceMeasure::create(measureName, startTime, endTime)); create 49 Source/core/timing/PerformanceUserTiming.h static PassRefPtrWillBeRawPtr<UserTiming> create(Performance* performance) create 42 Source/core/timing/ResourceTimingInfo.h static PassRefPtr<ResourceTimingInfo> create(const AtomicString& type, const double time) create 47 Source/core/workers/DedicatedWorkerGlobalScope.h static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>, double timeOrigin); create 59 Source/core/workers/DedicatedWorkerThread.cpp return DedicatedWorkerGlobalScope::create(this, startupData, m_timeOrigin); create 43 Source/core/workers/DedicatedWorkerThread.h static PassRefPtr<DedicatedWorkerThread> create(WorkerLoaderProxy&, WorkerObjectProxy&, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); create 66 Source/core/workers/SharedWorker.cpp RefPtr<MessageChannel> channel = MessageChannel::create(context); create 46 Source/core/workers/SharedWorker.h static PassRefPtrWillBeRawPtr<SharedWorker> create(ExecutionContext*, const String& url, const String& name, ExceptionState&); create 47 Source/core/workers/SharedWorkerGlobalScope.cpp RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create(adoptPtr(new MessagePortArray(1, port)), String(), String(), port); create 47 Source/core/workers/SharedWorkerGlobalScope.h static PassRefPtrWillBeRawPtr<SharedWorkerGlobalScope> create(const String& name, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); create 57 Source/core/workers/SharedWorkerThread.cpp return SharedWorkerGlobalScope::create(m_name, this, startupData); create 42 Source/core/workers/SharedWorkerThread.h static PassRefPtr<SharedWorkerThread> create(const String& name, WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); create 76 Source/core/workers/Worker.cpp worker->m_scriptLoader = WorkerScriptLoader::create(); create 51 Source/core/workers/Worker.h static PassRefPtrWillBeRawPtr<Worker> create(ExecutionContext*, const String& url, ExceptionState&); create 45 Source/core/workers/WorkerClients.h static PassOwnPtr<WorkerClients> create() create 49 Source/core/workers/WorkerConsole.h static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope) create 108 Source/core/workers/WorkerEventQueue.cpp OwnPtr<EventDispatcherTask> task = EventDispatcherTask::create(event, this); create 46 Source/core/workers/WorkerEventQueue.h static PassOwnPtr<WorkerEventQueue> create(ExecutionContext*); create 84 Source/core/workers/WorkerGlobalScope.cpp , m_eventQueue(WorkerEventQueue::create(this)) create 90 Source/core/workers/WorkerGlobalScope.cpp setSecurityOrigin(SecurityOrigin::create(url)); create 103 Source/core/workers/WorkerGlobalScope.cpp setContentSecurityPolicy(ContentSecurityPolicy::create(this)); create 150 Source/core/workers/WorkerGlobalScope.cpp m_location = WorkerLocation::create(m_url); create 163 Source/core/workers/WorkerGlobalScope.cpp postTask(CloseWorkerGlobalScopeTask::create()); create 169 Source/core/workers/WorkerGlobalScope.cpp m_console = WorkerConsole::create(this); create 176 Source/core/workers/WorkerGlobalScope.cpp m_navigator = WorkerNavigator::create(m_userAgent); create 227 Source/core/workers/WorkerGlobalScope.cpp RefPtr<WorkerScriptLoader> scriptLoader(WorkerScriptLoader::create()); create 266 Source/core/workers/WorkerGlobalScope.cpp postTask(AddConsoleMessageTask::create(source, level, message)); create 43 Source/core/workers/WorkerLocation.h static PassRefPtrWillBeRawPtr<WorkerLocation> create(const KURL& url) create 76 Source/core/workers/WorkerMessagingProxy.cpp context->dispatchEvent(MessageEvent::create(ports.release(), m_message)); create 87 Source/core/workers/WorkerMessagingProxy.cpp , m_workerObjectProxy(WorkerObjectProxy::create(m_executionContext.get(), this)) create 114 Source/core/workers/WorkerMessagingProxy.cpp OwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode, startMode, document->contentSecurityPolicy()->deprecatedHeader(), document->contentSecurityPolicy()->deprecatedHeaderType(), m_workerClients.release()); create 117 Source/core/workers/WorkerMessagingProxy.cpp RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(*this, *m_workerObjectProxy.get(), originTime, startupData.release()); create 129 Source/core/workers/WorkerMessagingProxy.cpp m_workerObject->dispatchEvent(MessageEvent::create(ports.release(), message)); create 139 Source/core/workers/WorkerMessagingProxy.cpp m_workerThread->runLoop().postTask(MessageWorkerGlobalScopeTask::create(message, channels)); create 141 Source/core/workers/WorkerMessagingProxy.cpp m_queuedEarlyTasks.append(MessageWorkerGlobalScopeTask::create(message, channels)); create 169 Source/core/workers/WorkerMessagingProxy.cpp RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, lineNumber, columnNumber, 0); create 42 Source/core/workers/WorkerNavigator.h static PassRefPtrWillBeRawPtr<WorkerNavigator> create(const String& userAgent) create 52 Source/core/workers/WorkerObjectProxy.h static PassOwnPtr<WorkerObjectProxy> create(ExecutionContext*, WorkerMessagingProxy*); create 262 Source/core/workers/WorkerRunLoop.cpp return m_messageQueue.append(WorkerRunLoopTask::create(*this, task)); create 268 Source/core/workers/WorkerRunLoop.cpp m_messageQueue.appendAndKill(WorkerRunLoopTask::create(*this, task)); create 273 Source/core/workers/WorkerRunLoop.cpp bool posted = m_debuggerMessageQueue.append(WorkerRunLoopTask::create(*this, task)); create 275 Source/core/workers/WorkerRunLoop.cpp postTask(TickleDebuggerQueueTask::create(this)); create 91 Source/core/workers/WorkerScriptLoader.cpp m_threadableLoader = ThreadableLoader::create(executionContext, this, *request, options); create 127 Source/core/workers/WorkerScriptLoader.cpp m_decoder = TextResourceDecoder::create("text/javascript", m_responseEncoding); create 129 Source/core/workers/WorkerScriptLoader.cpp m_decoder = TextResourceDecoder::create("text/javascript", "UTF-8"); create 51 Source/core/workers/WorkerScriptLoader.h static PassRefPtr<WorkerScriptLoader> create() create 212 Source/core/workers/WorkerThread.cpp workerGlobalScope->postTask(WorkerThreadShutdownFinishTask::create()); create 234 Source/core/workers/WorkerThread.cpp m_runLoop.postTaskAndTerminate(WorkerThreadShutdownStartTask::create()); create 50 Source/core/workers/WorkerThreadStartupData.h static PassOwnPtrWillBeRawPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicyHeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients> workerClients) create 35 Source/core/xml/DOMParser.h static PassRefPtrWillBeRawPtr<DOMParser> create() create 59 Source/core/xml/DocumentXPathEvaluator.cpp suplement.m_xpathEvaluator = XPathEvaluator::create(); create 67 Source/core/xml/DocumentXPathEvaluator.cpp suplement.m_xpathEvaluator = XPathEvaluator::create(); create 77 Source/core/xml/DocumentXPathEvaluator.cpp suplement.m_xpathEvaluator = XPathEvaluator::create(); create 38 Source/core/xml/NativeXPathNSResolver.h static PassRefPtrWillBeRawPtr<NativeXPathNSResolver> create(PassRefPtr<Node> node) create 257 Source/core/xml/XMLHttpRequest.cpp m_responseDocument = HTMLDocument::create(init); create 259 Source/core/xml/XMLHttpRequest.cpp m_responseDocument = XMLDocument::create(init); create 286 Source/core/xml/XMLHttpRequest.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 289 Source/core/xml/XMLHttpRequest.cpp RefPtr<RawData> rawData = RawData::create(); create 296 Source/core/xml/XMLHttpRequest.cpp m_responseBlob = Blob::create(BlobDataHandle::create(blobData.release(), size)); create 314 Source/core/xml/XMLHttpRequest.cpp m_responseArrayBuffer = ArrayBuffer::create(static_cast<void*>(0), 0); create 402 Source/core/xml/XMLHttpRequest.cpp m_upload = XMLHttpRequestUpload::create(this); create 448 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchReadyStateChangeEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::readystatechange), flushAction); create 649 Source/core/xml/XMLHttpRequest.cpp m_requestEntityBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables)); create 673 Source/core/xml/XMLHttpRequest.cpp m_requestEntityBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables)); create 700 Source/core/xml/XMLHttpRequest.cpp m_requestEntityBody = FormData::create(); create 756 Source/core/xml/XMLHttpRequest.cpp m_requestEntityBody = FormData::create(data, length); create 784 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadstart)); create 787 Source/core/xml/XMLHttpRequest.cpp m_upload->dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadstart)); create 837 Source/core/xml/XMLHttpRequest.cpp m_loader = ThreadableLoader::create(executionContext(), this, request, options); create 989 Source/core/xml/XMLHttpRequest.cpp m_progressEventThrottle.dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total)); create 1306 Source/core/xml/XMLHttpRequest.cpp m_decoder = TextResourceDecoder::create("application/json", "UTF-8"); create 1308 Source/core/xml/XMLHttpRequest.cpp m_decoder = TextResourceDecoder::create("text/plain", m_responseEncoding); create 1311 Source/core/xml/XMLHttpRequest.cpp m_decoder = TextResourceDecoder::create("application/xml"); create 1315 Source/core/xml/XMLHttpRequest.cpp m_decoder = TextResourceDecoder::create("text/html", "UTF-8"); create 1317 Source/core/xml/XMLHttpRequest.cpp m_decoder = TextResourceDecoder::create("text/plain", "UTF-8"); create 1331 Source/core/xml/XMLHttpRequest.cpp m_binaryResponseBuilder = SharedBuffer::create(); create 1335 Source/core/xml/XMLHttpRequest.cpp m_responseStream = Stream::create(executionContext(), responseMIMEType()); create 60 Source/core/xml/XMLHttpRequest.h static PassRefPtrWillBeRawPtr<XMLHttpRequest> create(ExecutionContext*, PassRefPtr<SecurityOrigin> = nullptr); create 36 Source/core/xml/XMLHttpRequestProgressEvent.h static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create() create 40 Source/core/xml/XMLHttpRequestProgressEvent.h static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0) create 55 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp m_deferredProgressEvent = XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, loaded, total); create 67 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, loaded, total)); create 105 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total)); create 106 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total)); create 125 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp RefPtrWillBeRawPtr<Event> event = XMLHttpRequestProgressEvent::create(EventTypeNames::progress, m_lengthComputable, m_loaded, m_total); create 168 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, m_lengthComputable, m_loaded, m_total)); create 195 Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp m_deferredProgressEvent = XMLHttpRequestProgressEvent::create(EventTypeNames::progress, m_lengthComputable, m_loaded, m_total); create 58 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, totalBytesToBeSent)); create 64 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total)); create 65 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total)); create 71 Source/core/xml/XMLHttpRequestUpload.cpp dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent)); create 48 Source/core/xml/XMLHttpRequestUpload.h static PassOwnPtr<XMLHttpRequestUpload> create(XMLHttpRequest* xmlHttpRequest) create 36 Source/core/xml/XMLSerializer.h static PassRefPtrWillBeRawPtr<XMLSerializer> create() create 49 Source/core/xml/XPathEvaluator.cpp return NativeXPathNSResolver::create(nodeResolver); create 46 Source/core/xml/XPathEvaluator.h static PassRefPtrWillBeRawPtr<XPathEvaluator> create() create 45 Source/core/xml/XPathExpression.cpp RefPtrWillBeRawPtr<XPathExpression> expr = XPathExpression::create(); create 77 Source/core/xml/XPathExpression.cpp RefPtrWillBeRawPtr<XPathResult> result = XPathResult::create(&contextNode->document(), m_topExpression->evaluate()); create 49 Source/core/xml/XPathExpression.h static PassRefPtrWillBeRawPtr<XPathExpression> create() create 50 Source/core/xml/XPathFunctions.cpp #define DEFINE_FUNCTION_CREATOR(Class) static Function* create##Class() { return new Class; } create 57 Source/core/xml/XPathResult.h static PassRefPtrWillBeRawPtr<XPathResult> create(Document* document, const XPath::Value& value) create 62 Source/core/xml/XPathValue.cpp m_data = ValueData::create(); create 39 Source/core/xml/XPathValue.h static PassRefPtr<ValueData> create() { return adoptRef(new ValueData); } create 40 Source/core/xml/XPathValue.h static PassRefPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRef(new ValueData(nodeSet)); } create 41 Source/core/xml/XPathValue.h static PassRefPtr<ValueData> create(const String& string) { return adoptRef(new ValueData(string)); } create 61 Source/core/xml/XPathValue.h Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} create 62 Source/core/xml/XPathValue.h Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} create 63 Source/core/xml/XPathValue.h Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {} create 64 Source/core/xml/XPathValue.h Value(Node* value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { m_data->m_nodeSet.append(value); } create 70 Source/core/xml/XPathValue.h Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { value.swap(m_data->m_nodeSet); } create 55 Source/core/xml/XSLImportRule.cpp m_styleSheet = XSLStyleSheet::create(this, href, baseURL); create 39 Source/core/xml/XSLImportRule.h static PassOwnPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) create 41 Source/core/xml/XSLStyleSheet.h static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL) create 46 Source/core/xml/XSLStyleSheet.h static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL) create 219 Source/core/xml/XSLStyleSheetLibxslt.cpp OwnPtr<XSLImportRule> childRule = XSLImportRule::create(this, href); create 44 Source/core/xml/XSLTProcessor.h static PassRefPtrWillBeRawPtr<XSLTProcessor> create() create 53 Source/core/xml/parser/SharedBufferReaderTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(); create 62 Source/core/xml/parser/SharedBufferReaderTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(testData, sizeof(testData)); create 88 Source/core/xml/parser/SharedBufferReaderTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(&testData[0], testData.size()); create 107 Source/core/xml/parser/SharedBufferReaderTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(&testData[0], testData.size()); create 374 Source/core/xml/parser/XMLDocumentParser.cpp m_leafTextNode = Text::create(m_currentNode->document(), ""); create 504 Source/core/xml/parser/XMLDocumentParser.cpp RefPtr<XMLDocumentParser> parser = XMLDocumentParser::create(fragment, contextElement, parserContentPolicy); create 1144 Source/core/xml/parser/XMLDocumentParser.cpp RefPtr<CDATASection> newNode = CDATASection::create(m_currentNode->document(), text); create 1160 Source/core/xml/parser/XMLDocumentParser.cpp RefPtr<Comment> newNode = Comment::create(m_currentNode->document(), text); create 1204 Source/core/xml/parser/XMLDocumentParser.cpp document()->parserAppendChild(DocumentType::create(document(), name, externalID, systemID)); create 69 Source/core/xml/parser/XMLDocumentParser.h static PassRefPtr<XMLDocumentParser> create(Document* document, FrameView* view) create 73 Source/core/xml/parser/XMLDocumentParser.h static PassRefPtr<XMLDocumentParser> create(DocumentFragment* fragment, Element* element, ParserContentPolicy parserContentPolicy) create 22 Source/modules/battery/BatteryManager.h static PassRefPtrWillBeRawPtr<BatteryManager> create(ExecutionContext*); create 15 Source/modules/battery/BatteryStatus.h static PassOwnPtr<BatteryStatus> create(); create 16 Source/modules/battery/BatteryStatus.h static PassOwnPtr<BatteryStatus> create(bool charging, double chargingTime, double dischargingTime, double level); create 29 Source/modules/battery/NavigatorBattery.cpp m_batteryManager = BatteryManager::create(navigator.frame()->document()); create 45 Source/modules/crypto/AesKeyAlgorithm.h static PassRefPtrWillBeRawPtr<AesKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); create 81 Source/modules/crypto/Crypto.cpp m_subtleCrypto = SubtleCrypto::create(); create 45 Source/modules/crypto/Crypto.h static PassRefPtrWillBeRawPtr<Crypto> create() { return adoptRefWillBeNoop(new Crypto()); } create 104 Source/modules/crypto/CryptoResultImpl.cpp m_promiseResolver->resolve(Key::create(key)); create 116 Source/modules/crypto/CryptoResultImpl.cpp m_promiseResolver->resolve(KeyPair::create(publicKey, privateKey)); create 124 Source/modules/crypto/CryptoResultImpl.cpp , m_promiseResolver(ScriptPromiseResolver::create(context)) create 55 Source/modules/crypto/CryptoResultImpl.h static PassRefPtr<CryptoResultImpl> create(); create 71 Source/modules/crypto/DOMWindowCrypto.cpp m_crypto = Crypto::create(); create 40 Source/modules/crypto/HmacKeyAlgorithm.h static PassRefPtrWillBeRawPtr<HmacKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); create 149 Source/modules/crypto/Key.cpp m_algorithm = KeyAlgorithm::create(m_key.algorithm()); create 50 Source/modules/crypto/Key.h static PassRefPtrWillBeRawPtr<Key> create(const blink::WebCryptoKey& key) create 53 Source/modules/crypto/KeyAlgorithm.cpp return AesKeyAlgorithm::create(algorithm); create 55 Source/modules/crypto/KeyAlgorithm.cpp return HmacKeyAlgorithm::create(algorithm); create 57 Source/modules/crypto/KeyAlgorithm.cpp return RsaKeyAlgorithm::create(algorithm); create 59 Source/modules/crypto/KeyAlgorithm.cpp return RsaHashedKeyAlgorithm::create(algorithm); create 47 Source/modules/crypto/KeyAlgorithm.h static PassRefPtrWillBeRawPtr<KeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); create 43 Source/modules/crypto/KeyPair.cpp return adoptRefWillBeNoop(new KeyPair(Key::create(publicKey), Key::create(privateKey))); create 48 Source/modules/crypto/KeyPair.h static PassRefPtrWillBeRawPtr<KeyPair> create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey); create 40 Source/modules/crypto/RsaHashedKeyAlgorithm.h static PassRefPtrWillBeRawPtr<RsaHashedKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); create 59 Source/modules/crypto/RsaKeyAlgorithm.cpp m_publicExponent = Uint8Array::create(exponent.data(), exponent.size()); create 42 Source/modules/crypto/RsaKeyAlgorithm.h static PassRefPtrWillBeRawPtr<RsaKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); create 76 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 147 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 169 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 197 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 225 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 260 Source/modules/crypto/SubtleCrypto.cpp RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(); create 49 Source/modules/crypto/SubtleCrypto.h static PassRefPtrWillBeRawPtr<SubtleCrypto> create() create 66 Source/modules/crypto/WorkerGlobalScopeCrypto.cpp m_crypto = Crypto::create(); create 38 Source/modules/device_orientation/DeviceAcceleration.h static PassRefPtrWillBeRawPtr<DeviceAcceleration> create(PassRefPtrWillBeRawPtr<DeviceMotionData::Acceleration> acceleration) create 52 Source/modules/device_orientation/DeviceMotionController.cpp dispatchDeviceEvent(DeviceMotionEvent::create(EventTypeNames::devicemotion, deviceMotionData)); create 77 Source/modules/device_orientation/DeviceMotionController.cpp return DeviceMotionEvent::create(EventTypeNames::devicemotion, DeviceMotionDispatcher::instance().latestDeviceMotionData()); create 82 Source/modules/device_orientation/DeviceMotionData.cpp return DeviceMotionData::create( create 83 Source/modules/device_orientation/DeviceMotionData.cpp DeviceMotionData::Acceleration::create( create 87 Source/modules/device_orientation/DeviceMotionData.cpp DeviceMotionData::Acceleration::create( create 91 Source/modules/device_orientation/DeviceMotionData.cpp DeviceMotionData::RotationRate::create( create 45 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<Acceleration> create(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z); create 70 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<RotationRate> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma); create 93 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<DeviceMotionData> create(); create 94 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<DeviceMotionData> create( create 100 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<DeviceMotionData> create(const blink::WebDeviceMotionData&); create 78 Source/modules/device_orientation/DeviceMotionDispatcher.cpp m_lastDeviceMotionData = DeviceMotionData::create(motion); create 40 Source/modules/device_orientation/DeviceMotionEvent.cpp : m_deviceMotionData(DeviceMotionData::create()) create 71 Source/modules/device_orientation/DeviceMotionEvent.cpp m_acceleration = DeviceAcceleration::create(m_deviceMotionData->acceleration()); create 82 Source/modules/device_orientation/DeviceMotionEvent.cpp m_accelerationIncludingGravity = DeviceAcceleration::create(m_deviceMotionData->accelerationIncludingGravity()); create 93 Source/modules/device_orientation/DeviceMotionEvent.cpp m_rotationRate = DeviceRotationRate::create(m_deviceMotionData->rotationRate()); create 41 Source/modules/device_orientation/DeviceMotionEvent.h static PassRefPtrWillBeRawPtr<DeviceMotionEvent> create() create 45 Source/modules/device_orientation/DeviceMotionEvent.h static PassRefPtrWillBeRawPtr<DeviceMotionEvent> create(const AtomicString& eventType, DeviceMotionData* deviceMotionData) create 54 Source/modules/device_orientation/DeviceOrientationController.cpp dispatchDeviceEvent(DeviceOrientationEvent::create(EventTypeNames::deviceorientation, deviceOrientationData)); create 84 Source/modules/device_orientation/DeviceOrientationController.cpp return DeviceOrientationEvent::create(EventTypeNames::deviceorientation, lastData()); create 44 Source/modules/device_orientation/DeviceOrientationData.cpp return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute); create 41 Source/modules/device_orientation/DeviceOrientationData.h static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(); create 42 Source/modules/device_orientation/DeviceOrientationData.h static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false); create 43 Source/modules/device_orientation/DeviceOrientationData.h static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(const blink::WebDeviceOrientationData&); create 78 Source/modules/device_orientation/DeviceOrientationDispatcher.cpp m_lastDeviceOrientationData = DeviceOrientationData::create(motion); create 38 Source/modules/device_orientation/DeviceOrientationEvent.cpp : m_orientation(DeviceOrientationData::create()) create 39 Source/modules/device_orientation/DeviceOrientationEvent.h static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create() create 43 Source/modules/device_orientation/DeviceOrientationEvent.h static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) create 54 Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp controller().setOverride(DeviceOrientationData::create(true, alpha, true, beta, true, gamma).get()); create 75 Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp controller().setOverride(DeviceOrientationData::create(true, alpha, true, beta, true, gamma).get()); create 38 Source/modules/device_orientation/DeviceRotationRate.h static PassRefPtrWillBeRawPtr<DeviceRotationRate> create(PassRefPtrWillBeRawPtr<DeviceMotionData::RotationRate> rotationRate) create 48 Source/modules/encoding/TextDecoder.h static PassRefPtrWillBeRawPtr<TextDecoder> create(const String& label, const Dictionary&, ExceptionState&); create 95 Source/modules/encoding/TextEncoder.cpp return Uint8Array::create(unsignedBuffer, result.length()); create 49 Source/modules/encoding/TextEncoder.h static PassRefPtrWillBeRawPtr<TextEncoder> create(const String& utfLabel, ExceptionState&); create 119 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp initializer.initData = Uint8Array::create(initData, initDataLength); create 123 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp return MediaKeyNeededEvent::create(EventTypeNames::needkey, initializer); create 132 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp webkitInitializer.initData = Uint8Array::create(initData, initDataLength); create 136 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp return MediaKeyEvent::create(EventTypeNames::webkitneedkey, webkitInitializer); create 174 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp webkitGenerateKeyRequest(mediaElement, keySystem, Uint8Array::create(0), exceptionState); create 222 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp webkitAddKey(mediaElement, keySystem, key, Uint8Array::create(0), String(), exceptionState); create 261 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp RefPtrWillBeRawPtr<Event> event = MediaKeyEvent::create(EventTypeNames::webkitkeyadded, initializer); create 295 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp initializer.errorCode = MediaKeyError::create(mediaKeyErrorCode); create 300 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp RefPtrWillBeRawPtr<Event> event = MediaKeyEvent::create(EventTypeNames::webkitkeyerror, initializer); create 312 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp initializer.message = Uint8Array::create(message, messageLength); create 317 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp RefPtrWillBeRawPtr<Event> event = MediaKeyEvent::create(EventTypeNames::webkitkeymessage, initializer); create 46 Source/modules/encryptedmedia/MediaKeyMessageEvent.h static PassRefPtrWillBeRawPtr<MediaKeyMessageEvent> create() create 51 Source/modules/encryptedmedia/MediaKeyMessageEvent.h static PassRefPtrWillBeRawPtr<MediaKeyMessageEvent> create(const AtomicString& type, const MediaKeyMessageEventInit& initializer) create 45 Source/modules/encryptedmedia/MediaKeyNeededEvent.h static PassRefPtrWillBeRawPtr<MediaKeyNeededEvent> create() create 50 Source/modules/encryptedmedia/MediaKeyNeededEvent.h static PassRefPtrWillBeRawPtr<MediaKeyNeededEvent> create(const AtomicString& type, const MediaKeyNeededEventInit& initializer) create 74 Source/modules/encryptedmedia/MediaKeySession.cpp , m_asyncEventQueue(GenericEventQueue::create(this)) create 185 Source/modules/encryptedmedia/MediaKeySession.cpp init.message = Uint8Array::create(message, messageLength); create 188 Source/modules/encryptedmedia/MediaKeySession.cpp RefPtrWillBeRawPtr<MediaKeyMessageEvent> event = MediaKeyMessageEvent::create(EventTypeNames::message, init); create 197 Source/modules/encryptedmedia/MediaKeySession.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::ready); create 206 Source/modules/encryptedmedia/MediaKeySession.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::close); create 234 Source/modules/encryptedmedia/MediaKeySession.cpp m_error = MediaKeyError::create(mediaKeyErrorCode, systemCode); create 237 Source/modules/encryptedmedia/MediaKeySession.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::error); create 71 Source/modules/encryptedmedia/MediaKeySession.h static PassRefPtrWillBeRawPtr<MediaKeySession> create(ExecutionContext*, blink::WebContentDecryptionModule*, WeakPtr<MediaKeys>); create 131 Source/modules/encryptedmedia/MediaKeys.cpp RefPtrWillBeRawPtr<MediaKeySession> session = MediaKeySession::create(context, m_cdm.get(), m_weakFactory.createWeakPtr()); create 57 Source/modules/encryptedmedia/MediaKeys.h static PassRefPtrWillBeRawPtr<MediaKeys> create(ExecutionContext*, const String& keySystem, ExceptionState&); create 85 Source/modules/filesystem/DOMFileSystem.cpp return DOMFileSystem::create(context, filesystemName.toString(), FileSystemTypeIsolated, KURL(ParsedURLString, rootURL.toString())); create 98 Source/modules/filesystem/DOMFileSystem.cpp return DirectoryEntry::create(this, DOMFilePath::root); create 150 Source/modules/filesystem/DOMFileSystem.cpp RefPtrWillBeRawPtr<FileWriter> fileWriter = FileWriter::create(executionContext()); create 151 Source/modules/filesystem/DOMFileSystem.cpp OwnPtr<FileWriterBaseCallback> conversionCallback = ConvertToFileWriterCallback::create(successCallback); create 152 Source/modules/filesystem/DOMFileSystem.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks = FileWriterBaseCallbacks::create(fileWriter, conversionCallback.release(), errorCallback); create 211 Source/modules/filesystem/DOMFileSystem.cpp fileSystem()->createSnapshotFileAndReadMetadata(fileSystemURL, SnapshotFileCallback::create(this, fileEntry->name(), fileSystemURL, successCallback, errorCallback)); create 52 Source/modules/filesystem/DOMFileSystem.h static PassRefPtrWillBeRawPtr<DOMFileSystem> create(ExecutionContext*, const String& name, FileSystemType, const KURL& rootURL); create 190 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(MetadataCallbacks::create(successCallback, errorCallback, this)); create 228 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 232 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory())); create 242 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 246 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory())); create 257 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 261 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(VoidCallbacks::create(successCallback, errorCallback, this)); create 272 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 276 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(VoidCallbacks::create(successCallback, errorCallback, this)); create 286 Source/modules/filesystem/DOMFileSystemBase.cpp fileSystem()->directoryExists(createFileSystemURL(path), EntryCallbacks::create(successCallback, errorCallback, this, path, true)); create 293 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 297 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, this, absolutePath, false)); create 300 Source/modules/filesystem/DOMFileSystemBase.cpp if (flags.create) create 310 Source/modules/filesystem/DOMFileSystemBase.cpp reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 314 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, this, absolutePath, true)); create 317 Source/modules/filesystem/DOMFileSystemBase.cpp if (flags.create) create 327 Source/modules/filesystem/DOMFileSystemBase.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks(EntriesCallbacks::create(successCallback, errorCallback, reader, path)); create 75 Source/modules/filesystem/DOMFileSystemSync.cpp return DirectoryEntrySync::create(this, DOMFilePath::root); create 111 Source/modules/filesystem/DOMFileSystemSync.cpp static PassOwnPtr<AsyncFileSystemCallbacks> create(PassRefPtrWillBeRawPtr<CreateFileResult> result, const String& name, const KURL& url, FileSystemType type) create 174 Source/modules/filesystem/DOMFileSystemSync.cpp RefPtrWillBeRawPtr<CreateFileHelper::CreateFileResult> result(CreateFileHelper::CreateFileResult::create()); create 175 Source/modules/filesystem/DOMFileSystemSync.cpp fileSystem()->createSnapshotFileAndReadMetadata(fileSystemURL, CreateFileHelper::create(result, fileEntry->name(), fileSystemURL, type())); create 230 Source/modules/filesystem/DOMFileSystemSync.cpp RefPtrWillBeRawPtr<FileWriterSync> fileWriter = FileWriterSync::create(); create 231 Source/modules/filesystem/DOMFileSystemSync.cpp OwnPtr<ReceiveFileWriterCallback> successCallback = ReceiveFileWriterCallback::create(); create 233 Source/modules/filesystem/DOMFileSystemSync.cpp OwnPtr<LocalErrorCallback> errorCallback = LocalErrorCallback::create(errorCode); create 235 Source/modules/filesystem/DOMFileSystemSync.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks = FileWriterBaseCallbacks::create(fileWriter, successCallback.release(), errorCallback.release()); create 48 Source/modules/filesystem/DOMFileSystemSync.h static PassRefPtrWillBeRawPtr<DOMFileSystemSync> create(ExecutionContext* context, const String& name, FileSystemType type, const KURL& rootURL) create 53 Source/modules/filesystem/DOMFileSystemSync.h static PassRefPtrWillBeRawPtr<DOMFileSystemSync> create(DOMFileSystemBase*); create 61 Source/modules/filesystem/DOMWindowFileSystem.cpp DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR)); create 67 Source/modules/filesystem/DOMWindowFileSystem.cpp DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 71 Source/modules/filesystem/DOMWindowFileSystem.cpp LocalFileSystem::from(*document)->requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document, fileSystemType)); create 86 Source/modules/filesystem/DOMWindowFileSystem.cpp DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::SECURITY_ERR)); create 91 Source/modules/filesystem/DOMWindowFileSystem.cpp DOMFileSystem::scheduleCallback(document, errorCallback, FileError::create(FileError::ENCODING_ERR)); create 95 Source/modules/filesystem/DOMWindowFileSystem.cpp LocalFileSystem::from(*document)->resolveURL(document, completedURL, ResolveURICallbacks::create(successCallback, errorCallback, document)); create 81 Source/modules/filesystem/DataTransferItemFileSystem.cpp return DirectoryEntry::create(domFileSystem, virtualPath); create 82 Source/modules/filesystem/DataTransferItemFileSystem.cpp return FileEntry::create(domFileSystem, virtualPath); create 50 Source/modules/filesystem/DirectoryEntry.cpp return DirectoryReader::create(m_fileSystem, m_fullPath); create 51 Source/modules/filesystem/DirectoryEntry.h static PassRefPtrWillBeRawPtr<DirectoryEntry> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 51 Source/modules/filesystem/DirectoryEntrySync.cpp return DirectoryReaderSync::create(m_fileSystem, m_fullPath); create 57 Source/modules/filesystem/DirectoryEntrySync.cpp RefPtr<EntrySyncCallbackHelper> helper = EntrySyncCallbackHelper::create(); create 65 Source/modules/filesystem/DirectoryEntrySync.cpp RefPtr<EntrySyncCallbackHelper> helper = EntrySyncCallbackHelper::create(); create 72 Source/modules/filesystem/DirectoryEntrySync.cpp RefPtr<VoidSyncCallbackHelper> helper = VoidSyncCallbackHelper::create(); create 48 Source/modules/filesystem/DirectoryEntrySync.h static PassRefPtrWillBeRawPtr<DirectoryEntrySync> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 99 Source/modules/filesystem/DirectoryReader.cpp filesystem()->scheduleCallback(errorCallback, FileError::create(FileError::INVALID_STATE_ERR)); create 50 Source/modules/filesystem/DirectoryReader.h static PassRefPtrWillBeRawPtr<DirectoryReader> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 57 Source/modules/filesystem/DirectoryReaderSync.cpp syncEntries.uncheckedAppend(EntrySync::create(entries[i].get())); create 52 Source/modules/filesystem/DirectoryReaderSync.h static PassRefPtrWillBeRawPtr<DirectoryReaderSync> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 48 Source/modules/filesystem/DraggedIsolatedFileSystem.h static PassOwnPtrWillBeRawPtr<DraggedIsolatedFileSystem> create(const String& filesystemId) create 49 Source/modules/filesystem/EntrySync.cpp return FileEntrySync::create(entry->m_fileSystem, entry->m_fullPath); create 50 Source/modules/filesystem/EntrySync.cpp return DirectoryEntrySync::create(entry->m_fileSystem, entry->m_fullPath); create 55 Source/modules/filesystem/EntrySync.cpp RefPtr<MetadataSyncCallbackHelper> helper = MetadataSyncCallbackHelper::create(); create 62 Source/modules/filesystem/EntrySync.cpp RefPtr<EntrySyncCallbackHelper> helper = EntrySyncCallbackHelper::create(); create 69 Source/modules/filesystem/EntrySync.cpp RefPtr<EntrySyncCallbackHelper> helper = EntrySyncCallbackHelper::create(); create 76 Source/modules/filesystem/EntrySync.cpp RefPtr<VoidSyncCallbackHelper> helper = VoidSyncCallbackHelper::create(); create 85 Source/modules/filesystem/EntrySync.cpp return DirectoryEntrySync::create(m_fileSystem, parentPath); create 50 Source/modules/filesystem/EntrySync.h static PassRefPtrWillBeRawPtr<EntrySync> create(EntryBase*); create 45 Source/modules/filesystem/FileEntry.h static PassRefPtrWillBeRawPtr<FileEntry> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 48 Source/modules/filesystem/FileEntrySync.h static PassRefPtrWillBeRawPtr<FileEntrySync> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) create 72 Source/modules/filesystem/FileSystemCallbacks.cpp m_errorCallback->handleEvent(FileError::create(static_cast<FileError::ErrorCode>(code)).get()); create 96 Source/modules/filesystem/FileSystemCallbacks.cpp m_successCallback->handleEvent(DirectoryEntry::create(m_fileSystem, m_expectedPath).get()); create 98 Source/modules/filesystem/FileSystemCallbacks.cpp m_successCallback->handleEvent(FileEntry::create(m_fileSystem, m_expectedPath).get()); create 122 Source/modules/filesystem/FileSystemCallbacks.cpp m_entries.append(DirectoryEntry::create(m_directoryReader->filesystem(), DOMFilePath::append(m_basePath, name))); create 124 Source/modules/filesystem/FileSystemCallbacks.cpp m_entries.append(FileEntry::create(m_directoryReader->filesystem(), DOMFilePath::append(m_basePath, name))); create 154 Source/modules/filesystem/FileSystemCallbacks.cpp RefPtrWillBeRawPtr<DOMFileSystem> fileSystem = DOMFileSystem::create(m_executionContext.get(), name, m_type, rootURL); create 177 Source/modules/filesystem/FileSystemCallbacks.cpp RefPtrWillBeRawPtr<DOMFileSystem> filesystem = DOMFileSystem::create(m_executionContext.get(), name, type, rootURL); create 182 Source/modules/filesystem/FileSystemCallbacks.cpp m_errorCallback->handleEvent(FileError::create(FileError::INVALID_MODIFICATION_ERR).get()); create 188 Source/modules/filesystem/FileSystemCallbacks.cpp m_successCallback->handleEvent(DirectoryEntry::create(filesystem, absolutePath).get()); create 190 Source/modules/filesystem/FileSystemCallbacks.cpp m_successCallback->handleEvent(FileEntry::create(filesystem, absolutePath).get()); create 210 Source/modules/filesystem/FileSystemCallbacks.cpp m_successCallback->handleEvent(Metadata::create(metadata).get()); create 75 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<EntryCallback>, PassOwnPtr<ErrorCallback>, PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& expectedPath, bool isDirectory); create 87 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<EntriesCallback>, PassOwnPtr<ErrorCallback>, PassRefPtrWillBeRawPtr<DirectoryReaderBase>, const String& basePath); create 101 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<FileSystemCallback>, PassOwnPtr<ErrorCallback>, ExecutionContext*, FileSystemType); create 113 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<EntryCallback>, PassOwnPtr<ErrorCallback>, ExecutionContext*); create 124 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<MetadataCallback>, PassOwnPtr<ErrorCallback>, PassRefPtrWillBeRawPtr<DOMFileSystemBase>); create 134 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassRefPtrWillBeRawPtr<FileWriterBase>, PassOwnPtr<FileWriterBaseCallback>, PassOwnPtr<ErrorCallback>); create 145 Source/modules/filesystem/FileSystemCallbacks.h static PassOwnPtr<AsyncFileSystemCallbacks> create(PassOwnPtr<VoidCallback>, PassOwnPtr<ErrorCallback>, PassRefPtrWillBeRawPtr<DOMFileSystemBase>); create 40 Source/modules/filesystem/FileSystemFlags.h : create(false) create 43 Source/modules/filesystem/FileSystemFlags.h options.get("create", create); create 47 Source/modules/filesystem/FileSystemFlags.h bool create; create 297 Source/modules/filesystem/FileWriter.cpp m_error = FileError::create(code); create 310 Source/modules/filesystem/FileWriter.cpp dispatchEvent(ProgressEvent::create(type, true, m_bytesWritten, m_bytesToWrite)); create 319 Source/modules/filesystem/FileWriter.cpp m_error = FileError::create(errorCode); create 54 Source/modules/filesystem/FileWriter.h static PassRefPtrWillBeRawPtr<FileWriter> create(ExecutionContext*); create 48 Source/modules/filesystem/FileWriterSync.h static PassRefPtrWillBeRawPtr<FileWriterSync> create() create 72 Source/modules/filesystem/HTMLInputElementFileSystem.cpp entries.append(DirectoryEntry::create(filesystem, virtualPath)); create 74 Source/modules/filesystem/HTMLInputElementFileSystem.cpp entries.append(FileEntry::create(filesystem, virtualPath)); create 112 Source/modules/filesystem/InspectorFileSystemAgent.cpp return CallbackDispatcher<BaseCallback, Handler, Argument>::create(PassRefPtr<Handler>(handler), handlingMethod); create 152 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &FileSystemRootRequest::didHitError); create 156 Source/modules/filesystem/InspectorFileSystemAgent.cpp errorCallback->handleEvent(FileError::create(FileError::SYNTAX_ERR).get()); create 162 Source/modules/filesystem/InspectorFileSystemAgent.cpp errorCallback->handleEvent(FileError::create(FileError::SYNTAX_ERR).get()); create 166 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &FileSystemRootRequest::didGetEntry); create 167 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext); create 173 Source/modules/filesystem/InspectorFileSystemAgent.cpp RefPtr<TypeBuilder::FileSystem::Entry> result = TypeBuilder::FileSystem::Entry::create() create 227 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &DirectoryContentRequest::didHitError); create 228 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &DirectoryContentRequest::didGetEntry); create 230 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext); create 243 Source/modules/filesystem/InspectorFileSystemAgent.cpp m_entries = Array<TypeBuilder::FileSystem::Entry>::create(); create 255 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntriesCallback> successCallback = CallbackDispatcherFactory<EntriesCallback>::create(this, &DirectoryContentRequest::didReadDirectoryEntries); create 256 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &DirectoryContentRequest::didHitError); create 269 Source/modules/filesystem/InspectorFileSystemAgent.cpp RefPtr<TypeBuilder::FileSystem::Entry> entryForFrontend = TypeBuilder::FileSystem::Entry::create() create 345 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &MetadataRequest::didHitError); create 346 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &MetadataRequest::didGetEntry); create 347 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext); create 358 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<MetadataCallback> successCallback = CallbackDispatcherFactory<MetadataCallback>::create(this, &MetadataRequest::didGetMetadata); create 359 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &MetadataRequest::didHitError); create 368 Source/modules/filesystem/InspectorFileSystemAgent.cpp RefPtr<Metadata> result = Metadata::create() create 443 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &FileContentRequest::didHitError); create 444 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &FileContentRequest::didGetEntry); create 446 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext); create 462 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<FileCallback> successCallback = CallbackDispatcherFactory<FileCallback>::create(this, &FileContentRequest::didGetFile); create 463 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &FileContentRequest::didHitError); create 466 Source/modules/filesystem/InspectorFileSystemAgent.cpp m_reader = FileReader::create(entry->filesystem()->executionContext()); create 492 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create(m_mimeType, m_charset, true); create 557 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &DeleteEntryRequest::didHitError); create 562 Source/modules/filesystem/InspectorFileSystemAgent.cpp errorCallback->handleEvent(FileError::create(FileError::SYNTAX_ERR).get()); create 568 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = VoidCallbacks::create(successCallback.release(), errorCallback.release(), nullptr); create 571 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<EntryCallback> successCallback = CallbackDispatcherFactory<EntryCallback>::create(this, &DeleteEntryRequest::didGetEntry); create 572 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<AsyncFileSystemCallbacks> fileSystemCallbacks = ResolveURICallbacks::create(successCallback.release(), errorCallback.release(), executionContext); create 580 Source/modules/filesystem/InspectorFileSystemAgent.cpp OwnPtr<ErrorCallback> errorCallback = CallbackDispatcherFactory<ErrorCallback>::create(this, &DeleteEntryRequest::didHitError); create 633 Source/modules/filesystem/InspectorFileSystemAgent.cpp FileSystemRootRequest::create(requestCallback, type)->start(executionContext); create 645 Source/modules/filesystem/InspectorFileSystemAgent.cpp DirectoryContentRequest::create(requestCallback, url)->start(executionContext); create 657 Source/modules/filesystem/InspectorFileSystemAgent.cpp MetadataRequest::create(requestCallback, url)->start(executionContext); create 671 Source/modules/filesystem/InspectorFileSystemAgent.cpp FileContentRequest::create(requestCallback, url, readAsText, startPosition, endPosition, charset ? *charset : "")->start(executionContext); create 681 Source/modules/filesystem/InspectorFileSystemAgent.cpp ExecutionContext* executionContext = assertExecutionContextForOrigin(error, SecurityOrigin::create(url).get()); create 685 Source/modules/filesystem/InspectorFileSystemAgent.cpp DeleteEntryRequest::create(requestCallback, url)->start(executionContext); create 46 Source/modules/filesystem/InspectorFileSystemAgent.h static PassOwnPtr<InspectorFileSystemAgent> create(Page*); create 20 Source/modules/filesystem/InspectorFrontendHostFileSystem.cpp return DOMFileSystem::create(context, fileSystemName, FileSystemTypeIsolated, KURL(ParsedURLString, rootURL)); create 25 Source/modules/filesystem/InspectorFrontendHostFileSystem.cpp RefPtr<JSONObject> message = JSONObject::create(); create 28 Source/modules/filesystem/InspectorFrontendHostFileSystem.cpp RefPtr<JSONArray> params = JSONArray::create(); create 120 Source/modules/filesystem/LocalFileSystem.cpp page.provideSupplement(LocalFileSystem::supplementName(), LocalFileSystem::create(client)); create 121 Source/modules/filesystem/LocalFileSystem.cpp page.inspectorController().registerModuleAgent(InspectorFileSystemAgent::create(&page)); create 126 Source/modules/filesystem/LocalFileSystem.cpp clients->provideSupplement(LocalFileSystem::supplementName(), LocalFileSystem::create(client)); create 48 Source/modules/filesystem/LocalFileSystem.h static PassOwnPtr<LocalFileSystem> create(PassOwnPtr<FileSystemClient>); create 43 Source/modules/filesystem/Metadata.h static PassRefPtrWillBeRawPtr<Metadata> create(const FileMetadata& platformMetadata) create 48 Source/modules/filesystem/Metadata.h static PassRefPtrWillBeRawPtr<Metadata> create(Metadata* metadata) create 61 Source/modules/filesystem/SyncCallbackHelper.h return ResultType::create(argument); create 74 Source/modules/filesystem/SyncCallbackHelper.h static PassRefPtr<HelperType> create() create 87 Source/modules/filesystem/SyncCallbackHelper.h PassOwnPtr<SuccessCallback> successCallback() { return SuccessCallbackImpl::create(this); } create 88 Source/modules/filesystem/SyncCallbackHelper.h PassOwnPtr<ErrorCallback> errorCallback() { return ErrorCallbackImpl::create(this); } create 99 Source/modules/filesystem/SyncCallbackHelper.h static PassOwnPtr<SuccessCallbackImpl> create(PassRefPtr<HelperType> helper) create 124 Source/modules/filesystem/SyncCallbackHelper.h static PassOwnPtr<ErrorCallbackImpl> create(PassRefPtr<HelperType> helper) create 161 Source/modules/filesystem/SyncCallbackHelper.h static PassRefPtrWillBeRawPtr<EmptyType> create(EmptyType*) create 52 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp DOMFileSystem::scheduleCallback(&worker, errorCallback, FileError::create(FileError::SECURITY_ERR)); create 58 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp DOMFileSystem::scheduleCallback(&worker, errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); create 62 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp LocalFileSystem::from(worker)->requestFileSystem(&worker, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, &worker, fileSystemType)); create 79 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp RefPtr<FileSystemSyncCallbackHelper> helper = FileSystemSyncCallbackHelper::create(); create 80 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks = FileSystemCallbacks::create(helper->successCallback(), helper->errorCallback(), &worker, fileSystemType); create 92 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp DOMFileSystem::scheduleCallback(&worker, errorCallback, FileError::create(FileError::SECURITY_ERR)); create 97 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp DOMFileSystem::scheduleCallback(&worker, errorCallback, FileError::create(FileError::ENCODING_ERR)); create 101 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp LocalFileSystem::from(worker)->resolveURL(&worker, completedURL, ResolveURICallbacks::create(successCallback, errorCallback, &worker)); create 118 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp RefPtr<EntrySyncCallbackHelper> resolveURLHelper = EntrySyncCallbackHelper::create(); create 119 Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp OwnPtr<AsyncFileSystemCallbacks> callbacks = ResolveURICallbacks::create(resolveURLHelper->successCallback(), resolveURLHelper->errorCallback(), &worker); create 45 Source/modules/gamepad/Gamepad.cpp m_buttons[i] = GamepadButton::create(); create 40 Source/modules/gamepad/Gamepad.h static PassRefPtrWillBeRawPtr<Gamepad> create() create 17 Source/modules/gamepad/GamepadButton.h static PassRefPtrWillBeRawPtr<GamepadButton> create(); create 21 Source/modules/gamepad/GamepadEvent.h static PassRefPtrWillBeRawPtr<GamepadEvent> create() create 25 Source/modules/gamepad/GamepadEvent.h static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Gamepad> gamepad) create 29 Source/modules/gamepad/GamepadEvent.h static PassRefPtrWillBeRawPtr<GamepadEvent> create(const AtomicString& type, const GamepadEventInit& initializer) create 41 Source/modules/gamepad/GamepadList.h static PassRefPtrWillBeRawPtr<GamepadList> create() create 66 Source/modules/gamepad/NavigatorGamepad.cpp gamepad = GamepadType::create(); create 107 Source/modules/gamepad/NavigatorGamepad.cpp m_webkitGamepads = WebKitGamepadList::create(); create 116 Source/modules/gamepad/NavigatorGamepad.cpp m_gamepads = GamepadList::create(); create 143 Source/modules/gamepad/NavigatorGamepad.cpp m_gamepads = GamepadList::create(); create 147 Source/modules/gamepad/NavigatorGamepad.cpp gamepad = Gamepad::create(); create 152 Source/modules/gamepad/NavigatorGamepad.cpp RefPtrWillBeRawPtr<GamepadEvent> event = GamepadEvent::create(eventName, false, true, gamepad.get()); create 18 Source/modules/gamepad/WebKitGamepad.h static PassRefPtrWillBeRawPtr<WebKitGamepad> create() create 20 Source/modules/gamepad/WebKitGamepadList.h static PassRefPtrWillBeRawPtr<WebKitGamepadList> create() create 38 Source/modules/geolocation/Coordinates.h static PassRefPtrWillBeRawPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) create 50 Source/modules/geolocation/Geolocation.cpp RefPtrWillBeRawPtr<Coordinates> coordinates = Coordinates::create( create 62 Source/modules/geolocation/Geolocation.cpp return Geoposition::create(coordinates.release(), convertSecondsToDOMTimeStamp(position->timestamp())); create 77 Source/modules/geolocation/Geolocation.cpp return PositionError::create(code, error->message()); create 180 Source/modules/geolocation/Geolocation.cpp RefPtrWillBeRawPtr<PositionError> error = PositionError::create(PositionError::TIMEOUT, "Timeout expired"); create 323 Source/modules/geolocation/Geolocation.cpp RefPtrWillBeRawPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options); create 334 Source/modules/geolocation/Geolocation.cpp RefPtrWillBeRawPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options); create 350 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); create 362 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartServiceErrorMessage)); create 380 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); create 414 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartServiceErrorMessage)); create 476 Source/modules/geolocation/Geolocation.cpp RefPtrWillBeRawPtr<PositionError> error = PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage); create 539 Source/modules/geolocation/Geolocation.cpp (*it)->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, framelessDocumentErrorMessage)); create 703 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartServiceErrorMessage)); create 705 Source/modules/geolocation/Geolocation.cpp notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); create 53 Source/modules/geolocation/Geolocation.h static PassRefPtrWillBeRawPtr<Geolocation> create(ExecutionContext*); create 99 Source/modules/geolocation/Geolocation.h static PassRefPtrWillBeRawPtr<GeoNotifier> create(Geolocation* geolocation, PassOwnPtr<PositionCallback> positionCallback, PassOwnPtr<PositionErrorCallback> positionErrorCallback, PassRefPtrWillBeRawPtr<PositionOptions> options) create 45 Source/modules/geolocation/GeolocationController.cpp OwnPtr<GeolocationInspectorAgent> geolocationAgent(GeolocationInspectorAgent::create(this)); create 128 Source/modules/geolocation/GeolocationController.cpp errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable").get()); create 181 Source/modules/geolocation/GeolocationController.cpp Supplement<Page>::provideTo(page, GeolocationController::supplementName(), GeolocationController::create(page, client)); create 50 Source/modules/geolocation/GeolocationController.h static PassOwnPtr<GeolocationController> create(Page&, GeolocationClient*); create 43 Source/modules/geolocation/GeolocationError.h static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); } create 62 Source/modules/geolocation/GeolocationInspectorAgent.cpp m_geolocationPosition = GeolocationPosition::create(currentTime(), *latitude, *longitude, *accuracy); create 49 Source/modules/geolocation/GeolocationInspectorAgent.h static PassOwnPtr<GeolocationInspectorAgent> create(GeolocationController*); create 37 Source/modules/geolocation/GeolocationPosition.h static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); } create 39 Source/modules/geolocation/GeolocationPosition.h static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } create 40 Source/modules/geolocation/Geoposition.h static PassRefPtrWillBeRawPtr<Geoposition> create(PassRefPtrWillBeRawPtr<Coordinates> coordinates, DOMTimeStamp timestamp) create 65 Source/modules/geolocation/NavigatorGeolocation.cpp m_geolocation = Geolocation::create(frame()->document()); create 45 Source/modules/geolocation/PositionError.h static PassRefPtrWillBeRawPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRefWillBeNoop(new PositionError(code, message)); } create 37 Source/modules/geolocation/PositionOptions.h static PassRefPtrWillBeRawPtr<PositionOptions> create() { return adoptRefWillBeNoop(new PositionOptions()); } create 172 Source/modules/geolocation/testing/GeolocationClientMock.cpp m_controller->errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, m_errorMessage).get()); create 59 Source/modules/geolocation/testing/InternalsGeolocation.cpp client->setPosition(GeolocationPosition::create(currentTime(), latitude, longitude, accuracy)); create 68 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(context); create 114 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), ImageBitmap::create(image, IntRect(sx, sy, sw, sh))); create 157 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), ImageBitmap::create(video, IntRect(sx, sy, sw, sh))); create 194 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), canvas->buffer() ? ImageBitmap::create(canvas, IntRect(sx, sy, sw, sh)) : nullptr); create 203 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(eventTarget.executionContext()); create 205 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<ImageBitmapLoader> loader = ImageBitmapFactories::ImageBitmapLoader::create(from(eventTarget), resolver, IntRect()); create 221 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(eventTarget.executionContext()); create 223 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<ImageBitmapLoader> loader = ImageBitmapFactories::ImageBitmapLoader::create(from(eventTarget), resolver, IntRect(sx, sy, sw, sh)); create 245 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), ImageBitmap::create(data, IntRect(sx, sy, sw, sh))); create 264 Source/modules/imagebitmap/ImageBitmapFactories.cpp return fulfillImageBitmap(eventTarget.executionContext(), ImageBitmap::create(bitmap, IntRect(sx, sy, sw, sh))); create 330 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create((char*)m_loader.arrayBufferResult()->data(), m_loader.arrayBufferResult()->byteLength()); create 340 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtr<Image> image = BitmapImage::create(imageSkia); create 350 Source/modules/imagebitmap/ImageBitmapFactories.cpp RefPtrWillBeRawPtr<ImageBitmap> imageBitmap = ImageBitmap::create(image.get(), m_cropRect); create 86 Source/modules/imagebitmap/ImageBitmapFactories.h static PassRefPtr<ImageBitmapLoader> create(ImageBitmapFactories& factory, PassRefPtr<ScriptPromiseResolver> resolver, const IntRect& cropRect) create 92 Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp m_idbFactory = IDBFactory::create(IDBFactoryBackendInterface::create().get()); create 55 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(T* idbObject) create 60 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(const T& idbObject) create 65 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(PassRefPtr<T> idbObject) create 69 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(int64_t value) create 73 Source/modules/indexeddb/IDBAny.h static PassRefPtr<IDBAny> create(PassRefPtr<SharedBuffer> value, PassRefPtr<IDBKey> key, const IDBKeyPath& keyPath) create 140 Source/modules/indexeddb/IDBCursor.cpp return objectStore->put(WebIDBDatabase::CursorUpdate, IDBAny::create(this), state, value, m_primaryKey, exceptionState); create 170 Source/modules/indexeddb/IDBCursor.cpp m_backend->advance(count, WebIDBCallbacksImpl::create(m_request).leakPtr()); create 245 Source/modules/indexeddb/IDBCursor.cpp m_backend->continueFunction(key, primaryKey, WebIDBCallbacksImpl::create(m_request).leakPtr()); create 280 Source/modules/indexeddb/IDBCursor.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 281 Source/modules/indexeddb/IDBCursor.cpp m_transaction->backendDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(), keyRange.release(), WebIDBCallbacksImpl::create(request).leakPtr()); create 335 Source/modules/indexeddb/IDBCursor.cpp value = IDBAny::create(m_value, m_primaryKey, metadata.keyPath); create 340 Source/modules/indexeddb/IDBCursor.cpp value = IDBAny::create(m_value); create 58 Source/modules/indexeddb/IDBCursor.h static PassRefPtr<IDBCursor> create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); create 42 Source/modules/indexeddb/IDBCursorWithValue.h static PassRefPtr<IDBCursorWithValue> create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); create 158 Source/modules/indexeddb/IDBDatabase.cpp RefPtr<DOMStringList> objectStoreNames = DOMStringList::create(); create 172 Source/modules/indexeddb/IDBDatabase.cpp return idbAnyToScriptValue(&requestState, IDBAny::create(intVersion)); create 229 Source/modules/indexeddb/IDBDatabase.cpp RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(metadata, m_versionChangeTransaction.get()); create 299 Source/modules/indexeddb/IDBDatabase.cpp m_backend->createTransaction(transactionId, WebIDBDatabaseCallbacksImpl::create(m_databaseCallbacks).leakPtr(), objectStoreIds, mode); create 301 Source/modules/indexeddb/IDBDatabase.cpp RefPtr<IDBTransaction> transaction = IDBTransaction::create(context, transactionId, scope, mode, this); create 307 Source/modules/indexeddb/IDBDatabase.cpp RefPtr<DOMStringList> storeNames = DOMStringList::create(); create 317 Source/modules/indexeddb/IDBDatabase.cpp enqueueEvent(Event::create(EventTypeNames::close)); create 366 Source/modules/indexeddb/IDBDatabase.cpp enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::versionchange, oldVersion, newVersionNullable)); create 58 Source/modules/indexeddb/IDBDatabase.h static PassRefPtr<IDBDatabase> create(ExecutionContext*, PassOwnPtr<blink::WebIDBDatabase>, PassRefPtr<IDBDatabaseCallbacks>); create 40 Source/modules/indexeddb/IDBDatabaseCallbacks.h static PassRefPtr<IDBDatabaseCallbacks> create(); create 85 Source/modules/indexeddb/IDBFactory.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::createNull(), 0); create 88 Source/modules/indexeddb/IDBFactory.cpp request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); create 92 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); create 121 Source/modules/indexeddb/IDBFactory.cpp RefPtr<IDBDatabaseCallbacks> databaseCallbacks = IDBDatabaseCallbacks::create(); create 123 Source/modules/indexeddb/IDBFactory.cpp RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(context, databaseCallbacks, transactionId, version); create 126 Source/modules/indexeddb/IDBFactory.cpp request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); create 130 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); create 155 Source/modules/indexeddb/IDBFactory.cpp RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(context, nullptr, 0, IDBDatabaseMetadata::DefaultIntVersion); create 158 Source/modules/indexeddb/IDBFactory.cpp request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); create 162 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->deleteDatabase(name, WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); create 48 Source/modules/indexeddb/IDBFactory.h static PassRefPtr<IDBFactory> create(IDBFactoryBackendInterface* factory) create 42 Source/modules/indexeddb/IDBFactoryBackendInterface.h static PassRefPtr<IDBFactoryBackendInterface> create(); create 66 Source/modules/indexeddb/IDBIndex.cpp return idbAnyToScriptValue(&requestState, IDBAny::create(m_metadata.keyPath)); create 97 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 99 Source/modules/indexeddb/IDBIndex.cpp backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, false, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr()); create 123 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 124 Source/modules/indexeddb/IDBIndex.cpp backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), WebIDBCallbacksImpl::create(request).leakPtr()); create 151 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 153 Source/modules/indexeddb/IDBIndex.cpp backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), direction, true, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr()); create 192 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 193 Source/modules/indexeddb/IDBIndex.cpp backendDB()->get(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), keyOnly, WebIDBCallbacksImpl::create(request).leakPtr()); create 47 Source/modules/indexeddb/IDBIndex.h static PassRefPtr<IDBIndex> create(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction) create 85 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); create 97 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); create 109 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(bound, nullptr, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen); create 121 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(nullptr, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed); create 143 Source/modules/indexeddb/IDBKeyRange.cpp return IDBKeyRange::create(lower, upper, lowerOpen ? LowerBoundOpen : LowerBoundClosed, upperOpen ? UpperBoundOpen : UpperBoundClosed); create 50 Source/modules/indexeddb/IDBKeyRange.h static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundType lowerType, UpperBoundType upperType) create 67 Source/modules/indexeddb/IDBObjectStore.cpp return idbAnyToScriptValue(&requestState, IDBAny::create(m_metadata.keyPath)); create 73 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<DOMStringList> indexNames = DOMStringList::create(); create 103 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 104 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), false, WebIDBCallbacksImpl::create(request).leakPtr()); create 134 Source/modules/indexeddb/IDBObjectStore.cpp return put(WebIDBDatabase::AddOnly, IDBAny::create(this), state, value, key, exceptionState); create 140 Source/modules/indexeddb/IDBObjectStore.cpp return put(WebIDBDatabase::AddOrUpdate, IDBAny::create(this), state, value, key, exceptionState); create 171 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValue::create(value, exceptionState, state); create 229 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, source, m_transaction.get()); create 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); create 265 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 266 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->deleteRange(m_transaction->id(), id(), keyRange.release(), WebIDBCallbacksImpl::create(request).leakPtr()); create 290 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 291 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->clear(m_transaction->id(), id(), WebIDBCallbacksImpl::create(request).leakPtr()); create 419 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBIndex> index = IDBIndex::create(metadata, this, m_transaction.get()); create 432 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IndexPopulator> indexPopulator = IndexPopulator::create(transaction()->db(), m_transaction->id(), id(), metadata); create 470 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBIndex> index = IDBIndex::create(*indexMetadata, this, m_transaction.get()); create 540 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 543 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, false, taskType, WebIDBCallbacksImpl::create(request).leakPtr()); create 571 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 574 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), direction, true, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr()); create 598 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> request = IDBRequest::create(context, IDBAny::create(this), m_transaction.get()); create 599 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->count(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), WebIDBCallbacksImpl::create(request).leakPtr()); create 54 Source/modules/indexeddb/IDBObjectStore.h static PassRefPtr<IDBObjectStore> create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction) create 74 Source/modules/indexeddb/IDBOpenDBRequest.cpp enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::blocked, oldVersion, newVersionNullable)); create 91 Source/modules/indexeddb/IDBOpenDBRequest.cpp RefPtr<IDBDatabase> idbDatabase = IDBDatabase::create(executionContext(), backend, m_databaseCallbacks.release()); create 101 Source/modules/indexeddb/IDBOpenDBRequest.cpp m_transaction = IDBTransaction::create(executionContext(), m_transactionId, idbDatabase.get(), this, oldMetadata); create 102 Source/modules/indexeddb/IDBOpenDBRequest.cpp setResult(IDBAny::create(idbDatabase.release())); create 106 Source/modules/indexeddb/IDBOpenDBRequest.cpp enqueueEvent(IDBVersionChangeEvent::create(EventTypeNames::upgradeneeded, oldVersion, m_version, dataLoss, dataLossMessage)); create 131 Source/modules/indexeddb/IDBOpenDBRequest.cpp idbDatabase = IDBDatabase::create(executionContext(), backend, m_databaseCallbacks.release()); create 132 Source/modules/indexeddb/IDBOpenDBRequest.cpp setResult(IDBAny::create(idbDatabase.get())); create 135 Source/modules/indexeddb/IDBOpenDBRequest.cpp enqueueEvent(Event::create(EventTypeNames::success)); create 155 Source/modules/indexeddb/IDBOpenDBRequest.cpp onError(DOMError::create(AbortError, "The connection was closed.")); create 38 Source/modules/indexeddb/IDBOpenDBRequest.h static PassRefPtr<IDBOpenDBRequest> create(ExecutionContext*, PassRefPtr<IDBDatabaseCallbacks>, int64_t transactionId, int64_t version); create 144 Source/modules/indexeddb/IDBRequest.cpp onError(DOMError::create(AbortError, "The transaction was aborted, so the request cannot be fulfilled.")); create 190 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(cursor)); create 236 Source/modules/indexeddb/IDBRequest.cpp RefPtr<DOMStringList> domStringList = DOMStringList::create(); create 239 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(domStringList.release())); create 252 Source/modules/indexeddb/IDBRequest.cpp cursor = IDBCursor::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get()); create 255 Source/modules/indexeddb/IDBRequest.cpp cursor = IDBCursorWithValue::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get()); create 270 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(idbKey)); create 288 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(valueBuffer)); create 321 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(valueBuffer, primaryKey, keyPath)); create 329 Source/modules/indexeddb/IDBRequest.cpp onSuccessInternal(IDBAny::create(value)); create 345 Source/modules/indexeddb/IDBRequest.cpp enqueueEvent(Event::create(EventTypeNames::success)); create 483 Source/modules/indexeddb/IDBRequest.cpp m_transaction->setError(DOMError::create(AbortError, "Uncaught exception in event handler.")); create 67 Source/modules/indexeddb/IDBRequest.h static PassRefPtr<IDBRequest> create(ExecutionContext*, PassRefPtr<IDBAny> source, IDBTransaction*); create 75 Source/modules/indexeddb/IDBRequestTest.cpp : m_scope(V8ExecutionScope::create(v8::Isolate::GetCurrent())) create 93 Source/modules/indexeddb/IDBRequestTest.cpp RefPtr<IDBRequest> request = IDBRequest::create(executionContext(), IDBAny::createUndefined(), transaction); create 98 Source/modules/indexeddb/IDBRequestTest.cpp request->onError(DOMError::create(AbortError, "Description goes here.")); create 112 Source/modules/indexeddb/IDBRequestTest.cpp RefPtr<IDBRequest> request = IDBRequest::create(executionContext(), IDBAny::createUndefined(), transaction); create 120 Source/modules/indexeddb/IDBRequestTest.cpp request->onError(DOMError::create(AbortError, "Description goes here.")); create 155 Source/modules/indexeddb/IDBRequestTest.cpp RefPtr<IDBDatabaseCallbacks> callbacks = IDBDatabaseCallbacks::create(); create 158 Source/modules/indexeddb/IDBRequestTest.cpp OwnPtr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create(); create 159 Source/modules/indexeddb/IDBRequestTest.cpp RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(executionContext(), callbacks, transactionId, version); create 167 Source/modules/indexeddb/IDBRequestTest.cpp OwnPtr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create(); create 168 Source/modules/indexeddb/IDBRequestTest.cpp RefPtr<IDBOpenDBRequest> request = IDBOpenDBRequest::create(executionContext(), callbacks, transactionId, version); create 152 Source/modules/indexeddb/IDBTransaction.cpp RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(metadata.objectStores.get(objectStoreId), this); create 284 Source/modules/indexeddb/IDBTransaction.cpp enqueueEvent(Event::create(EventTypeNames::complete)); create 56 Source/modules/indexeddb/IDBTransaction.h static PassRefPtr<IDBTransaction> create(ExecutionContext*, int64_t, const Vector<String>& objectStoreNames, blink::WebIDBDatabase::TransactionMode, IDBDatabase*); create 57 Source/modules/indexeddb/IDBTransaction.h static PassRefPtr<IDBTransaction> create(ExecutionContext*, int64_t, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata& previousMetadata); create 53 Source/modules/indexeddb/IDBTransactionTest.cpp : m_scope(V8ExecutionScope::create(v8::Isolate::GetCurrent())) create 54 Source/modules/indexeddb/IDBTransactionTest.cpp , m_document(Document::create()) create 93 Source/modules/indexeddb/IDBTransactionTest.cpp OwnPtr<FakeWebIDBDatabase> backend = FakeWebIDBDatabase::create(); create 94 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<FakeIDBDatabaseCallbacks> connection = FakeIDBDatabaseCallbacks::create(); create 95 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBDatabase> db = IDBDatabase::create(executionContext(), backend.release(), connection); create 99 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get()); create 104 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBRequest> request = IDBRequest::create(executionContext(), IDBAny::createUndefined(), transaction.get()); create 113 Source/modules/indexeddb/IDBTransactionTest.cpp transaction->onAbort(DOMError::create(AbortError, "Aborted")); create 120 Source/modules/indexeddb/IDBTransactionTest.cpp OwnPtr<FakeWebIDBDatabase> backend = FakeWebIDBDatabase::create(); create 121 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<FakeIDBDatabaseCallbacks> connection = FakeIDBDatabaseCallbacks::create(); create 122 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBDatabase> db = IDBDatabase::create(executionContext(), backend.release(), connection); create 126 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get()); create 147 Source/modules/indexeddb/IDBTransactionTest.cpp db->onAbort(transactionId, DOMError::create(AbortError, "Aborted")); create 50 Source/modules/indexeddb/IDBVersionChangeEvent.h static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create() create 54 Source/modules/indexeddb/IDBVersionChangeEvent.h static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, blink::WebIDBDataLoss dataLoss = blink::WebIDBDataLossNone, const String& dataLossMessage = String()) create 58 Source/modules/indexeddb/IDBVersionChangeEvent.h static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create(const AtomicString& eventType, const IDBVersionChangeEventInit& initializer) create 121 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<TypeBuilder::Array<String> > databaseNames = TypeBuilder::Array<String>::create(); create 192 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<OpenDatabaseCallback> callback = OpenDatabaseCallback::create(this); create 234 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp keyPath = KeyPath::create().setType(KeyPath::Type::Null); create 237 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp keyPath = KeyPath::create().setType(KeyPath::Type::String); create 241 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp keyPath = KeyPath::create().setType(KeyPath::Type::Array); create 242 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<TypeBuilder::Array<String> > array = TypeBuilder::Array<String>::create(); create 273 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStore> > objectStores = TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStore>::create(); create 278 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStoreIndex> > indexes = TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStoreIndex>::create(); create 283 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<ObjectStoreIndex> objectStoreIndex = ObjectStoreIndex::create() create 291 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<ObjectStore> objectStore = ObjectStore::create() create 298 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<DatabaseWithObjectStores> result = DatabaseWithObjectStores::create() create 383 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<IDBKeyRange> idbKeyRange = IDBKeyRange::create(idbLower, idbUpper, lowerBoundType, upperBoundType); create 450 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<DataEntry> dataEntry = DataEntry::create() create 472 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp m_result = Array<DataEntry>::create(); create 505 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<OpenCursorCallback> openCursorCallback = OpenCursorCallback::create(m_requestCallback, m_skipCount, m_pageSize); create 638 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp idbRequest->addEventListener(EventTypeNames::success, GetDatabaseNamesCallback::create(requestCallback, document->securityOrigin()->toRawString()), false); create 658 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<DatabaseLoader> databaseLoader = DatabaseLoader::create(document, requestCallback); create 685 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<DataLoader> dataLoader = DataLoader::create(document, requestCallback, objectStoreName, indexName, idbKeyRange, skipCount, pageSize); create 764 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp idbTransaction->addEventListener(EventTypeNames::complete, ClearObjectStoreListener::create(m_requestCallback), false); create 790 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp RefPtr<ClearObjectStore> clearObjectStore = ClearObjectStore::create(document, objectStoreName, requestCallback); create 53 Source/modules/indexeddb/WebIDBCallbacksImpl.h static PassOwnPtr<WebIDBCallbacksImpl> create(PassRefPtr<IDBRequest>); create 41 Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h static PassOwnPtr<WebIDBDatabaseCallbacksImpl> create(PassRefPtr<IDBDatabaseCallbacks>); create 69 Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp m_factoryBackend = IDBFactoryBackendInterface::create(); create 71 Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp m_idbFactory = IDBFactory::create(m_factoryBackend.get()); create 55 Source/modules/mediasource/HTMLVideoElementMediaSource.cpp return VideoPlaybackQuality::create(videoElement.document(), total, dropped, corrupted); create 63 Source/modules/mediasource/MediaSource.cpp m_sourceBuffers = SourceBufferList::create(executionContext(), asyncEventQueue()); create 64 Source/modules/mediasource/MediaSource.cpp m_activeSourceBuffers = SourceBufferList::create(executionContext(), asyncEventQueue()); create 111 Source/modules/mediasource/MediaSource.cpp RefPtrWillBeRawPtr<SourceBuffer> buffer = SourceBuffer::create(webSourceBuffer.release(), this, asyncEventQueue()); create 46 Source/modules/mediasource/MediaSource.h static PassRefPtrWillBeRawPtr<MediaSource> create(ExecutionContext*); create 76 Source/modules/mediasource/MediaSourceBase.cpp , m_asyncEventQueue(GenericEventQueue::create(this)) create 136 Source/modules/mediasource/MediaSourceBase.cpp return TimeRanges::create(); create 149 Source/modules/mediasource/MediaSourceBase.cpp return TimeRanges::create(); create 152 Source/modules/mediasource/MediaSourceBase.cpp RefPtr<TimeRanges> intersectionRanges = TimeRanges::create(0, highestEndTime); create 349 Source/modules/mediasource/MediaSourceBase.cpp RefPtrWillBeRawPtr<Event> event = Event::create(eventName); create 168 Source/modules/mediasource/SourceBuffer.cpp return TimeRanges::create(m_webSourceBuffer->buffered()); create 484 Source/modules/mediasource/SourceBuffer.cpp RefPtrWillBeRawPtr<Event> event = Event::create(eventName); create 63 Source/modules/mediasource/SourceBuffer.h static PassRefPtrWillBeRawPtr<SourceBuffer> create(PassOwnPtr<blink::WebSourceBuffer>, MediaSource*, GenericEventQueue*); create 77 Source/modules/mediasource/SourceBufferList.cpp RefPtrWillBeRawPtr<Event> event = Event::create(eventName); create 48 Source/modules/mediasource/SourceBufferList.h static PassRefPtrWillBeRawPtr<SourceBufferList> create(ExecutionContext* context, GenericEventQueue* asyncEventQueue) create 44 Source/modules/mediasource/VideoPlaybackQuality.h static PassRefPtrWillBeRawPtr<VideoPlaybackQuality> create(const Document&, unsigned totalVideoFrames, unsigned droppedVideoFrames, unsigned corruptedVideoFrames); create 60 Source/modules/mediasource/WebKitMediaSource.cpp m_sourceBuffers = WebKitSourceBufferList::create(executionContext(), asyncEventQueue()); create 61 Source/modules/mediasource/WebKitMediaSource.cpp m_activeSourceBuffers = WebKitSourceBufferList::create(executionContext(), asyncEventQueue()); create 106 Source/modules/mediasource/WebKitMediaSource.cpp RefPtrWillBeRawPtr<WebKitSourceBuffer> buffer = WebKitSourceBuffer::create(webSourceBuffer.release(), this); create 46 Source/modules/mediasource/WebKitMediaSource.h static PassRefPtrWillBeRawPtr<WebKitMediaSource> create(ExecutionContext*); create 83 Source/modules/mediasource/WebKitSourceBuffer.cpp return TimeRanges::create(m_webSourceBuffer->buffered()); create 52 Source/modules/mediasource/WebKitSourceBuffer.h static PassRefPtrWillBeRawPtr<WebKitSourceBuffer> create(PassOwnPtr<blink::WebSourceBuffer>, PassRefPtrWillBeRawPtr<WebKitMediaSource>); create 89 Source/modules/mediasource/WebKitSourceBufferList.cpp RefPtrWillBeRawPtr<Event> event = Event::create(eventName); create 48 Source/modules/mediasource/WebKitSourceBufferList.h static PassRefPtrWillBeRawPtr<WebKitSourceBufferList> create(ExecutionContext* context, GenericEventQueue* asyncEventQueue) create 43 Source/modules/mediastream/MediaConstraintsImpl.h blink::WebMediaConstraints create(); create 44 Source/modules/mediastream/MediaConstraintsImpl.h blink::WebMediaConstraints create(const Dictionary&, ExceptionState&); create 38 Source/modules/mediastream/MediaDeviceInfo.h static PassRefPtr<MediaDeviceInfo> create(const blink::WebMediaDeviceInfo&); create 45 Source/modules/mediastream/MediaDevicesRequest.h static PassRefPtr<MediaDevicesRequest> create(ExecutionContext*, UserMediaController*, PassOwnPtr<MediaDeviceInfoCallback>, ExceptionState&); create 110 Source/modules/mediastream/MediaStream.cpp RefPtr<MediaStreamTrack> newTrack = MediaStreamTrack::create(context, m_descriptor->audioComponent(i)); create 118 Source/modules/mediastream/MediaStream.cpp RefPtr<MediaStreamTrack> newTrack = MediaStreamTrack::create(context, m_descriptor->videoComponent(i)); create 144 Source/modules/mediastream/MediaStream.cpp m_descriptor = MediaStreamDescriptor::create(audioComponents, videoComponents); create 260 Source/modules/mediastream/MediaStream.cpp RefPtr<MediaStream> clonedStream = MediaStream::create(context, tracks); create 295 Source/modules/mediastream/MediaStream.cpp scheduleDispatchEvent(Event::create(EventTypeNames::ended)); create 320 Source/modules/mediastream/MediaStream.cpp RefPtr<MediaStreamTrack> track = MediaStreamTrack::create(executionContext(), component); create 332 Source/modules/mediastream/MediaStream.cpp scheduleDispatchEvent(MediaStreamTrackEvent::create(EventTypeNames::addtrack, false, false, track)); create 365 Source/modules/mediastream/MediaStream.cpp scheduleDispatchEvent(MediaStreamTrackEvent::create(EventTypeNames::removetrack, false, false, track)); create 46 Source/modules/mediastream/MediaStream.h static PassRefPtr<MediaStream> create(ExecutionContext*); create 47 Source/modules/mediastream/MediaStream.h static PassRefPtr<MediaStream> create(ExecutionContext*, PassRefPtr<MediaStream>); create 48 Source/modules/mediastream/MediaStream.h static PassRefPtr<MediaStream> create(ExecutionContext*, const MediaStreamTrackVector&); create 49 Source/modules/mediastream/MediaStream.h static PassRefPtr<MediaStream> create(ExecutionContext*, PassRefPtr<MediaStreamDescriptor>); create 44 Source/modules/mediastream/MediaStreamEvent.h static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(); create 45 Source/modules/mediastream/MediaStreamEvent.h static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream>); create 46 Source/modules/mediastream/MediaStreamEvent.h static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, const MediaStreamEventInit& initializer); create 126 Source/modules/mediastream/MediaStreamTrack.cpp RefPtr<MediaStreamTrackSourcesRequest> request = MediaStreamTrackSourcesRequestImpl::create(context->securityOrigin()->toString(), callback); create 138 Source/modules/mediastream/MediaStreamTrack.cpp dispatchEvent(Event::create(EventTypeNames::ended)); create 144 Source/modules/mediastream/MediaStreamTrack.cpp RefPtr<MediaStreamComponent> clonedComponent = MediaStreamComponent::create(component()->source()); create 145 Source/modules/mediastream/MediaStreamTrack.cpp RefPtr<MediaStreamTrack> clonedTrack = MediaStreamTrack::create(context, clonedComponent.get()); create 163 Source/modules/mediastream/MediaStreamTrack.cpp dispatchEvent(Event::create(EventTypeNames::unmute)); create 166 Source/modules/mediastream/MediaStreamTrack.cpp dispatchEvent(Event::create(EventTypeNames::mute)); create 169 Source/modules/mediastream/MediaStreamTrack.cpp dispatchEvent(Event::create(EventTypeNames::ended)); create 57 Source/modules/mediastream/MediaStreamTrack.h static PassRefPtr<MediaStreamTrack> create(ExecutionContext*, MediaStreamComponent*); create 39 Source/modules/mediastream/MediaStreamTrackEvent.h static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(); create 40 Source/modules/mediastream/MediaStreamTrackEvent.h static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack>); create 58 Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.cpp m_sourceInfos.append(SourceInfo::create(webSourceInfos[i])); create 46 Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.h static PassRefPtr<MediaStreamTrackSourcesRequestImpl> create(const String&, PassOwnPtr<MediaStreamTrackSourcesCallback>); create 61 Source/modules/mediastream/NavigatorMediaStream.cpp RefPtr<UserMediaRequest> request = UserMediaRequest::create(navigator.frame()->document(), userMedia, options, successCallback, errorCallback, exceptionState); create 78 Source/modules/mediastream/NavigatorMediaStream.cpp RefPtr<MediaDevicesRequest> request = MediaDevicesRequest::create(navigator.frame()->document(), userMedia, callback, exceptionState); create 42 Source/modules/mediastream/NavigatorUserMediaError.h static PassRefPtr<NavigatorUserMediaError> create(Name, const String& message, const String& constraintName); create 44 Source/modules/mediastream/NavigatorUserMediaError.h static PassRefPtr<NavigatorUserMediaError> create(const String& name, const String& message, const String& constraintName) create 129 Source/modules/mediastream/RTCDTMFSender.cpp scheduleDispatchEvent(RTCDTMFToneChangeEvent::create(tone)); create 49 Source/modules/mediastream/RTCDTMFSender.h static PassRefPtr<RTCDTMFSender> create(ExecutionContext*, blink::WebRTCPeerConnectionHandler*, PassRefPtr<MediaStreamTrack>, ExceptionState&); create 42 Source/modules/mediastream/RTCDTMFToneChangeEvent.h static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(); create 43 Source/modules/mediastream/RTCDTMFToneChangeEvent.h static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const String& tone); create 44 Source/modules/mediastream/RTCDTMFToneChangeEvent.h static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const AtomicString& type, const RTCDTMFToneChangeEventInit& initializer); create 233 Source/modules/mediastream/RTCDataChannel.cpp scheduleDispatchEvent(Event::create(EventTypeNames::open)); create 236 Source/modules/mediastream/RTCDataChannel.cpp scheduleDispatchEvent(Event::create(EventTypeNames::close)); create 248 Source/modules/mediastream/RTCDataChannel.cpp scheduleDispatchEvent(MessageEvent::create(text)); create 261 Source/modules/mediastream/RTCDataChannel.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(data, dataLength); create 262 Source/modules/mediastream/RTCDataChannel.cpp scheduleDispatchEvent(MessageEvent::create(buffer.release())); create 273 Source/modules/mediastream/RTCDataChannel.cpp scheduleDispatchEvent(Event::create(EventTypeNames::error)); create 50 Source/modules/mediastream/RTCDataChannel.h static PassRefPtr<RTCDataChannel> create(ExecutionContext*, PassOwnPtr<blink::WebRTCDataChannelHandler>); create 51 Source/modules/mediastream/RTCDataChannel.h static PassRefPtr<RTCDataChannel> create(ExecutionContext*, blink::WebRTCPeerConnectionHandler*, const String& label, const blink::WebRTCDataChannelInit&, ExceptionState&); create 38 Source/modules/mediastream/RTCDataChannelEvent.h static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(); create 39 Source/modules/mediastream/RTCDataChannelEvent.h static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel>); create 48 Source/modules/mediastream/RTCIceCandidate.h static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&); create 49 Source/modules/mediastream/RTCIceCandidate.h static PassRefPtr<RTCIceCandidate> create(blink::WebRTCICECandidate); create 38 Source/modules/mediastream/RTCIceCandidateEvent.h static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(); create 39 Source/modules/mediastream/RTCIceCandidateEvent.h static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>); create 106 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCConfiguration> rtcConfiguration = RTCConfiguration::create(); create 154 Source/modules/mediastream/RTCPeerConnection.cpp rtcConfiguration->appendServer(RTCIceServer::create(url, username, credential)); create 167 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); create 221 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); create 225 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCSessionDescriptionRequest> request = RTCSessionDescriptionRequestImpl::create(executionContext(), successCallback, errorCallback); create 236 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); create 240 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCSessionDescriptionRequest> request = RTCSessionDescriptionRequestImpl::create(executionContext(), successCallback, errorCallback); create 255 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCVoidRequest> request = RTCVoidRequestImpl::create(executionContext(), successCallback, errorCallback); create 265 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCSessionDescription> sessionDescription = RTCSessionDescription::create(webSessionDescription); create 280 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCVoidRequest> request = RTCVoidRequestImpl::create(executionContext(), successCallback, errorCallback); create 290 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCSessionDescription> desc = RTCSessionDescription::create(webSessionDescription); create 303 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); create 339 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCVoidRequest> request = RTCVoidRequestImpl::create(executionContext(), successCallback, errorCallback); create 419 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); create 478 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCStatsRequest> statsRequest = RTCStatsRequestImpl::create(executionContext(), successCallback, selector); create 504 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCDataChannel> channel = RTCDataChannel::create(executionContext(), m_peerHandler.get(), label, init, exceptionState); create 537 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCDTMFSender> dtmfSender = RTCDTMFSender::create(executionContext(), m_peerHandler.get(), track.release(), exceptionState); create 557 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(Event::create(EventTypeNames::negotiationneeded)); create 564 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(RTCIceCandidateEvent::create(false, false, nullptr)); create 566 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCIceCandidate> iceCandidate = RTCIceCandidate::create(webCandidate); create 567 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(RTCIceCandidateEvent::create(false, false, iceCandidate.release())); create 596 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<MediaStream> stream = MediaStream::create(executionContext(), remoteStream); create 599 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(MediaStreamEvent::create(EventTypeNames::addstream, false, false, stream.release())); create 619 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(MediaStreamEvent::create(EventTypeNames::removestream, false, false, stream.release())); create 629 Source/modules/mediastream/RTCPeerConnection.cpp RefPtr<RTCDataChannel> channel = RTCDataChannel::create(executionContext(), adoptPtr(handler)); create 632 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(RTCDataChannelEvent::create(EventTypeNames::datachannel, false, false, channel.release())); create 675 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(Event::create(EventTypeNames::signalingstatechange)); create 688 Source/modules/mediastream/RTCPeerConnection.cpp scheduleDispatchEvent(Event::create(EventTypeNames::iceconnectionstatechange)); create 62 Source/modules/mediastream/RTCPeerConnection.h static PassRefPtr<RTCPeerConnection> create(ExecutionContext*, const Dictionary& rtcConfiguration, const Dictionary& mediaConstraints, ExceptionState&); create 47 Source/modules/mediastream/RTCSessionDescription.h static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&); create 48 Source/modules/mediastream/RTCSessionDescription.h static PassRefPtr<RTCSessionDescription> create(blink::WebRTCSessionDescription); create 65 Source/modules/mediastream/RTCSessionDescriptionRequestImpl.cpp RefPtr<RTCSessionDescription> sessionDescription = RTCSessionDescription::create(webSessionDescription); create 51 Source/modules/mediastream/RTCSessionDescriptionRequestImpl.h static PassRefPtr<RTCSessionDescriptionRequestImpl> create(ExecutionContext*, PassOwnPtr<RTCSessionDescriptionCallback>, PassOwnPtr<RTCErrorCallback>); create 40 Source/modules/mediastream/RTCStatsReport.h static PassRefPtr<RTCStatsReport> create(const String& id, const String& type, double timestamp); create 54 Source/modules/mediastream/RTCStatsRequestImpl.cpp return RTCStatsResponse::create(); create 42 Source/modules/mediastream/RTCStatsRequestImpl.h static PassRefPtr<RTCStatsRequestImpl> create(ExecutionContext*, PassOwnPtr<RTCStatsCallback>, PassRefPtr<MediaStreamTrack>); create 50 Source/modules/mediastream/RTCStatsResponse.cpp m_result.append(RTCStatsReport::create(id, type, timestamp)); create 39 Source/modules/mediastream/RTCStatsResponse.h static PassRefPtr<RTCStatsResponse> create(); create 44 Source/modules/mediastream/RTCVoidRequestImpl.h static PassRefPtr<RTCVoidRequestImpl> create(ExecutionContext*, PassOwnPtr<VoidCallback>, PassOwnPtr<RTCErrorCallback>); create 39 Source/modules/mediastream/SourceInfo.h static PassRefPtr<SourceInfo> create(const blink::WebSourceInfo&); create 51 Source/modules/mediastream/UserMediaController.cpp UserMediaController::provideTo(page, UserMediaController::supplementName(), UserMediaController::create(client)); create 49 Source/modules/mediastream/UserMediaController.h static PassOwnPtr<UserMediaController> create(UserMediaClient*); create 57 Source/modules/mediastream/UserMediaRequest.cpp constraints = MediaConstraintsImpl::create(constraintsDictionary, exceptionState); create 62 Source/modules/mediastream/UserMediaRequest.cpp constraints = MediaConstraintsImpl::create(); create 140 Source/modules/mediastream/UserMediaRequest.cpp RefPtr<MediaStream> stream = MediaStream::create(executionContext(), streamDescriptor); create 160 Source/modules/mediastream/UserMediaRequest.cpp RefPtr<NavigatorUserMediaError> error = NavigatorUserMediaError::create(NavigatorUserMediaError::NamePermissionDenied, message, String()); create 170 Source/modules/mediastream/UserMediaRequest.cpp RefPtr<NavigatorUserMediaError> error = NavigatorUserMediaError::create(NavigatorUserMediaError::NameConstraintNotSatisfied, message, constraintName); create 180 Source/modules/mediastream/UserMediaRequest.cpp RefPtr<NavigatorUserMediaError> error = NavigatorUserMediaError::create(name, message, constraintName); create 53 Source/modules/mediastream/UserMediaRequest.h static PassRefPtr<UserMediaRequest> create(ExecutionContext*, UserMediaController*, const Dictionary& options, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>, ExceptionState&); create 221 Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp RefCountedSupplement<Page, NavigatorContentUtils>::provideTo(page, NavigatorContentUtils::supplementName(), NavigatorContentUtils::create(client)); create 53 Source/modules/navigatorcontentutils/NavigatorContentUtils.h static PassRefPtr<NavigatorContentUtils> create(PassOwnPtr<NavigatorContentUtilsClient>); create 115 Source/modules/notifications/Notification.cpp dispatchEvent(Event::create(EventTypeNames::show)); create 122 Source/modules/notifications/Notification.cpp dispatchEvent(Event::create(EventTypeNames::click)); create 127 Source/modules/notifications/Notification.cpp dispatchEvent(Event::create(EventTypeNames::error)); create 132 Source/modules/notifications/Notification.cpp dispatchEvent(Event::create(EventTypeNames::close)); create 56 Source/modules/notifications/Notification.h static PassRefPtrWillBeRawPtr<Notification> create(ExecutionContext*, const String& title, const Dictionary& options); create 62 Source/modules/notifications/NotificationController.cpp NotificationController::provideTo(page, NotificationController::supplementName(), NotificationController::create(client)); create 42 Source/modules/notifications/NotificationController.h static PassOwnPtr<NotificationController> create(NotificationClient*); create 67 Source/modules/performance/WorkerGlobalScopePerformance.cpp m_performance = WorkerPerformance::create(); create 47 Source/modules/performance/WorkerPerformance.h static PassRefPtrWillBeRawPtr<WorkerPerformance> create() { return adoptRefWillBeNoop(new WorkerPerformance()); } create 45 Source/modules/push_messaging/NavigatorPushManager.cpp m_pushManager = PushManager::create(); create 41 Source/modules/push_messaging/PushController.cpp PushController::provideTo(page, PushController::supplementName(), PushController::create(client)); create 26 Source/modules/push_messaging/PushController.h static PassOwnPtr<PushController> create(blink::WebPushClient*); create 23 Source/modules/push_messaging/PushError.h RefPtrWillBeRawPtr<DOMError> error = DOMError::create(errorString(webError->errorType), webError->message); create 31 Source/modules/push_messaging/PushManager.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(context); create 20 Source/modules/push_messaging/PushManager.h static PassRefPtrWillBeRawPtr<PushManager> create() create 76 Source/modules/quota/DOMWindowQuota.cpp m_storageInfo = DeprecatedStorageInfo::create(); create 60 Source/modules/quota/DeprecatedStorageInfo.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 72 Source/modules/quota/DeprecatedStorageInfo.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 83 Source/modules/quota/DeprecatedStorageInfo.cpp m_temporaryStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Temporary); create 87 Source/modules/quota/DeprecatedStorageInfo.cpp m_persistentStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Persistent); create 56 Source/modules/quota/DeprecatedStorageInfo.h static PassRefPtrWillBeRawPtr<DeprecatedStorageInfo> create() create 62 Source/modules/quota/DeprecatedStorageQuota.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 68 Source/modules/quota/DeprecatedStorageQuota.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 73 Source/modules/quota/DeprecatedStorageQuota.cpp OwnPtr<StorageQuotaCallbacks> callbacks = DeprecatedStorageQuotaCallbacksImpl::create(successCallback, errorCallback); create 84 Source/modules/quota/DeprecatedStorageQuota.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 90 Source/modules/quota/DeprecatedStorageQuota.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 54 Source/modules/quota/DeprecatedStorageQuota.h static PassRefPtrWillBeRawPtr<DeprecatedStorageQuota> create(Type type) create 70 Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp m_errorCallback->handleEvent(DOMError::create(static_cast<ExceptionCode>(error)).get()); create 46 Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h static PassOwnPtr<DeprecatedStorageQuotaCallbacksImpl> create(PassOwnPtr<StorageUsageCallback> success, PassOwnPtr<StorageErrorCallback> error) create 51 Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h static PassOwnPtr<DeprecatedStorageQuotaCallbacksImpl> create(PassOwnPtr<StorageQuotaCallback> success, PassOwnPtr<StorageErrorCallback> error) create 82 Source/modules/quota/NavigatorStorageQuota.cpp m_storageQuota = StorageQuota::create(); create 89 Source/modules/quota/NavigatorStorageQuota.cpp m_temporaryStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Temporary); create 96 Source/modules/quota/NavigatorStorageQuota.cpp m_persistentStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Persistent); create 49 Source/modules/quota/StorageErrorCallback.cpp m_callback->handleEvent(DOMError::create(m_ec).get()); create 52 Source/modules/quota/StorageErrorCallback.h static PassOwnPtr<CallbackTask> create(PassOwnPtr<StorageErrorCallback> callback, ExceptionCode ec) create 44 Source/modules/quota/StorageInfo.h static PassRefPtrWillBeRawPtr<StorageInfo> create(unsigned long long usage, unsigned long long quota) create 90 Source/modules/quota/StorageQuota.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 95 Source/modules/quota/StorageQuota.cpp resolver->reject(DOMError::create(NotSupportedError)); create 100 Source/modules/quota/StorageQuota.cpp OwnPtr<StorageQuotaCallbacks> callbacks = StorageQuotaCallbacksImpl::create(resolver, executionContext); create 111 Source/modules/quota/StorageQuota.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 112 Source/modules/quota/StorageQuota.cpp resolver->reject(DOMError::create(NotSupportedError)); create 47 Source/modules/quota/StorageQuota.h static PassRefPtrWillBeRawPtr<StorageQuota> create() create 53 Source/modules/quota/StorageQuotaCallbacksImpl.cpp m_resolver->resolve(StorageInfo::create(usageInBytes, quotaInBytes)); create 59 Source/modules/quota/StorageQuotaCallbacksImpl.cpp m_resolver->resolve(StorageInfo::create(usageInBytes, grantedQuotaInBytes)); create 65 Source/modules/quota/StorageQuotaCallbacksImpl.cpp m_resolver->reject(DOMError::create(static_cast<ExceptionCode>(error)).get()); create 46 Source/modules/quota/StorageQuotaCallbacksImpl.h static PassOwnPtr<StorageQuotaCallbacksImpl> create(PassRefPtr<ScriptPromiseResolver> resolver, ExecutionContext* context) create 70 Source/modules/quota/WorkerNavigatorStorageQuota.cpp m_temporaryStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Temporary); create 77 Source/modules/quota/WorkerNavigatorStorageQuota.cpp m_persistentStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Persistent); create 44 Source/modules/screen_orientation/ScreenOrientationController.cpp m_document.domWindow()->screen().dispatchEvent(Event::create(EventTypeNames::orientationchange)); create 30 Source/modules/serviceworkers/Cache.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 35 Source/modules/serviceworkers/Cache.cpp resolver->reject(DOMError::create(NotSupportedError)); create 41 Source/modules/serviceworkers/Cache.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 46 Source/modules/serviceworkers/Cache.cpp resolver->reject(DOMError::create(NotSupportedError)); create 21 Source/modules/serviceworkers/Cache.h static PassRefPtr<Cache> create(const Vector<String>& urlStrings); create 21 Source/modules/serviceworkers/FetchEvent.h static PassRefPtrWillBeRawPtr<FetchEvent> create(); create 22 Source/modules/serviceworkers/FetchEvent.h static PassRefPtrWillBeRawPtr<FetchEvent> create(PassRefPtr<RespondWithObserver>); create 63 Source/modules/serviceworkers/InstallEvent.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(context); create 44 Source/modules/serviceworkers/InstallEvent.h static PassRefPtrWillBeRawPtr<InstallEvent> create(); create 45 Source/modules/serviceworkers/InstallEvent.h static PassRefPtrWillBeRawPtr<InstallEvent> create(const AtomicString& type, const EventInit&, PassRefPtr<WaitUntilObserver>); create 43 Source/modules/serviceworkers/InstallPhaseEvent.h static PassRefPtrWillBeRawPtr<InstallPhaseEvent> create(); create 44 Source/modules/serviceworkers/InstallPhaseEvent.h static PassRefPtrWillBeRawPtr<InstallPhaseEvent> create(const AtomicString& type, const EventInit&, PassRefPtr<WaitUntilObserver>); create 53 Source/modules/serviceworkers/NavigatorServiceWorker.cpp m_serviceWorker = ServiceWorkerContainer::create(frame()->domWindow()->executionContext()); create 86 Source/modules/serviceworkers/RespondWithObserver.cpp ThenFunction::create(this, ThenFunction::Fulfilled), create 87 Source/modules/serviceworkers/RespondWithObserver.cpp ThenFunction::create(this, ThenFunction::Rejected)); create 22 Source/modules/serviceworkers/RespondWithObserver.h static PassRefPtr<RespondWithObserver> create(ExecutionContext*, int eventID); create 17 Source/modules/serviceworkers/Response.cpp return create(Dictionary()); create 21 Source/modules/serviceworkers/Response.h static PassRefPtr<Response> create(); create 22 Source/modules/serviceworkers/Response.h static PassRefPtr<Response> create(const Dictionary& responseInit); create 49 Source/modules/serviceworkers/ServiceWorker.h static PassRefPtr<ServiceWorker> create(PassOwnPtr<blink::WebServiceWorker> worker) create 58 Source/modules/serviceworkers/ServiceWorker.h return create(adoptPtr(worker)); create 70 Source/modules/serviceworkers/ServiceWorkerContainer.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 74 Source/modules/serviceworkers/ServiceWorkerContainer.cpp resolver->reject(DOMError::create(InvalidStateError, "No associated provider is available")); create 81 Source/modules/serviceworkers/ServiceWorkerContainer.cpp resolver->reject(DOMError::create(SecurityError, "Can only register for patterns in the document's origin.")); create 87 Source/modules/serviceworkers/ServiceWorkerContainer.cpp resolver->reject(DOMError::create(SecurityError, "Script must be in document's origin.")); create 98 Source/modules/serviceworkers/ServiceWorkerContainer.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 102 Source/modules/serviceworkers/ServiceWorkerContainer.cpp resolver->reject(DOMError::create(InvalidStateError, "No associated provider is available")); create 109 Source/modules/serviceworkers/ServiceWorkerContainer.cpp resolver->reject(DOMError::create(SecurityError, "Can only unregister for patterns in the document's origin.")); create 55 Source/modules/serviceworkers/ServiceWorkerContainer.h static PassRefPtr<ServiceWorkerContainer> create(ExecutionContext*); create 43 Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp document->provideSupplement(ServiceWorkerContainerClient::supplementName(), ServiceWorkerContainerClient::create(document->frame()->loader().client()->createServiceWorkerProvider())); create 58 Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp clients->provideSupplement(ServiceWorkerContainerClient::supplementName(), ServiceWorkerContainerClient::create(provider)); create 27 Source/modules/serviceworkers/ServiceWorkerContainerClient.h static PassOwnPtr<ServiceWorkerContainerClient> create(PassOwnPtr<blink::WebServiceWorkerProvider>); create 48 Source/modules/serviceworkers/ServiceWorkerError.h RefPtrWillBeRawPtr<DOMError> error = DOMError::create(errorString(webError->errorType), webError->message); create 46 Source/modules/serviceworkers/ServiceWorkerGlobalScope.h static PassRefPtrWillBeRawPtr<ServiceWorkerGlobalScope> create(ServiceWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); create 56 Source/modules/serviceworkers/ServiceWorkerThread.cpp return ServiceWorkerGlobalScope::create(this, startupData); create 42 Source/modules/serviceworkers/ServiceWorkerThread.h static PassRefPtr<ServiceWorkerThread> create(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); create 80 Source/modules/serviceworkers/WaitUntilObserver.cpp ThenFunction::create(this, ThenFunction::Fulfilled), create 81 Source/modules/serviceworkers/WaitUntilObserver.cpp ThenFunction::create(this, ThenFunction::Rejected)); create 28 Source/modules/serviceworkers/WaitUntilObserver.h static PassRefPtr<WaitUntilObserver> create(ExecutionContext*, EventType, int eventID); create 74 Source/modules/speech/DOMWindowSpeechSynthesis.cpp m_speechSynthesis = SpeechSynthesis::create(frame()->domWindow()->executionContext()); create 41 Source/modules/speech/SpeechGrammar.h static PassRefPtrWillBeRawPtr<SpeechGrammar> create(); // FIXME: The spec is not clear on what the constructor should look like. create 42 Source/modules/speech/SpeechGrammar.h static PassRefPtrWillBeRawPtr<SpeechGrammar> create(const KURL& src, double weight); create 50 Source/modules/speech/SpeechGrammarList.cpp m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight)); create 56 Source/modules/speech/SpeechGrammarList.cpp m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight)); create 41 Source/modules/speech/SpeechGrammarList.h static PassRefPtrWillBeRawPtr<SpeechGrammarList> create(); create 80 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::audiostart)); create 85 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::soundstart)); create 90 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::speechstart)); create 95 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::speechend)); create 100 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::soundend)); create 105 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::audioend)); create 135 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::start)); create 143 Source/modules/speech/SpeechRecognition.cpp dispatchEvent(Event::create(EventTypeNames::end)); create 170 Source/modules/speech/SpeechRecognition.cpp , m_grammars(SpeechGrammarList::create()) // FIXME: The spec is not clear on the default value for the grammars attribute. create 50 Source/modules/speech/SpeechRecognition.h static PassRefPtrWillBeRawPtr<SpeechRecognition> create(ExecutionContext*); create 40 Source/modules/speech/SpeechRecognitionAlternative.h static PassRefPtrWillBeRawPtr<SpeechRecognitionAlternative> create(const String&, double); create 53 Source/modules/speech/SpeechRecognitionController.cpp SpeechRecognitionController::provideTo(page, SpeechRecognitionController::supplementName(), SpeechRecognitionController::create(client)); create 47 Source/modules/speech/SpeechRecognitionController.h static PassOwnPtr<SpeechRecognitionController> create(PassOwnPtr<SpeechRecognitionClient>); create 58 Source/modules/speech/SpeechRecognitionError.h static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(ErrorCode, const String&); create 59 Source/modules/speech/SpeechRecognitionError.h static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(); create 60 Source/modules/speech/SpeechRecognitionError.h static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&); create 49 Source/modules/speech/SpeechRecognitionEvent.cpp return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::result, resultIndex, SpeechRecognitionResultList::create(results))); create 57 Source/modules/speech/SpeechRecognitionEvent.cpp return adoptRefWillBeNoop(new SpeechRecognitionEvent(EventTypeNames::nomatch, 0, SpeechRecognitionResultList::create(results))); create 49 Source/modules/speech/SpeechRecognitionEvent.h static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); create 50 Source/modules/speech/SpeechRecognitionEvent.h static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicString&, const SpeechRecognitionEventInit&); create 43 Source/modules/speech/SpeechRecognitionResult.h static PassRefPtrWillBeRawPtr<SpeechRecognitionResult> create(const WillBeHeapVector<RefPtrWillBeMember<SpeechRecognitionAlternative> >&, bool final); create 39 Source/modules/speech/SpeechRecognitionResultList.h static PassRefPtrWillBeRawPtr<SpeechRecognitionResultList> create(const WillBeHeapVector<RefPtrWillBeMember<SpeechRecognitionResult> >&); create 44 Source/modules/speech/SpeechSynthesis.cpp , m_platformSpeechSynthesizer(PlatformSpeechSynthesizer::create(this)) create 64 Source/modules/speech/SpeechSynthesis.cpp dispatchEvent(Event::create(EventTypeNames::voiceschanged)); create 76 Source/modules/speech/SpeechSynthesis.cpp m_voiceList.append(SpeechSynthesisVoice::create(platformVoices[k])); create 149 Source/modules/speech/SpeechSynthesis.cpp utterance->dispatchEvent(SpeechSynthesisEvent::create(type, charIndex, (currentTime() - utterance->startTime()), name)); create 50 Source/modules/speech/SpeechSynthesis.h static PassRefPtrWillBeRawPtr<SpeechSynthesis> create(ExecutionContext*); create 36 Source/modules/speech/SpeechSynthesisEvent.h static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(); create 37 Source/modules/speech/SpeechSynthesisEvent.h static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name); create 38 Source/modules/speech/SpeechSynthesisUtterance.cpp , m_platformUtterance(PlatformSpeechSynthesisUtterance::create(this)) create 43 Source/modules/speech/SpeechSynthesisUtterance.h static PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> create(ExecutionContext*, const String&); create 40 Source/modules/speech/SpeechSynthesisVoice.h static PassRefPtrWillBeRawPtr<SpeechSynthesisVoice> create(PassRefPtr<PlatformSpeechSynthesisVoice>); create 50 Source/modules/speech/testing/InternalsSpeechSynthesis.cpp synthesis->setPlatformSynthesizer(PlatformSpeechSynthesizerMock::create(synthesis)); create 72 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp m_voiceList.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.bruce"), String("bruce"), String("en-US"), true, true)); create 73 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp m_voiceList.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.clark"), String("clark"), String("en-US"), true, false)); create 74 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp m_voiceList.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.logan"), String("logan"), String("fr-CA"), true, true)); create 37 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h static PassOwnPtr<PlatformSpeechSynthesizerMock> create(PlatformSpeechSynthesizerClient*); create 38 Source/modules/webaudio/AnalyserNode.h static PassRefPtr<AnalyserNode> create(AudioContext* context, float sampleRate) create 93 Source/modules/webaudio/AudioBuffer.cpp RefPtr<Float32Array> channelDataArray = Float32Array::create(m_length); create 115 Source/modules/webaudio/AudioBuffer.cpp RefPtr<Float32Array> channelDataArray = Float32Array::create(m_length); create 135 Source/modules/webaudio/AudioBuffer.cpp return Float32Array::create(channelData->buffer(), channelData->byteOffset(), channelData->length()); create 46 Source/modules/webaudio/AudioBuffer.h static PassRefPtr<AudioBuffer> create(unsigned numberOfChannels, size_t numberOfFrames, float sampleRate); create 74 Source/modules/webaudio/AudioBufferSourceNode.cpp m_gain = AudioParam::create(context, "gain", 1.0, 0.0, 1.0); create 75 Source/modules/webaudio/AudioBufferSourceNode.cpp m_playbackRate = AudioParam::create(context, "playbackRate", 1.0, 0.0, MaxRate); create 47 Source/modules/webaudio/AudioBufferSourceNode.h static PassRefPtr<AudioBufferSourceNode> create(AudioContext*, float sampleRate); create 110 Source/modules/webaudio/AudioContext.cpp return OfflineAudioContext::create(&document, numberOfChannels, numberOfFrames, sampleRate, exceptionState); create 131 Source/modules/webaudio/AudioContext.cpp m_destinationNode = DefaultAudioDestinationNode::create(this); create 152 Source/modules/webaudio/AudioContext.cpp m_renderTarget = AudioBuffer::create(numberOfChannels, numberOfFrames, sampleRate); create 154 Source/modules/webaudio/AudioContext.cpp m_destinationNode = OfflineAudioDestinationNode::create(this, m_renderTarget.get()); create 163 Source/modules/webaudio/AudioContext.cpp m_listener = AudioListener::create(); create 286 Source/modules/webaudio/AudioContext.cpp RefPtr<AudioBuffer> audioBuffer = AudioBuffer::create(numberOfChannels, numberOfFrames, sampleRate); create 351 Source/modules/webaudio/AudioContext.cpp RefPtr<AudioBufferSourceNode> node = AudioBufferSourceNode::create(this, m_destinationNode->sampleRate()); create 378 Source/modules/webaudio/AudioContext.cpp RefPtr<MediaElementAudioSourceNode> node = MediaElementAudioSourceNode::create(this, mediaElement); create 407 Source/modules/webaudio/AudioContext.cpp RefPtr<MediaStreamAudioSourceNode> node = MediaStreamAudioSourceNode::create(this, mediaStream, audioTrack.get(), provider.release()); create 419 Source/modules/webaudio/AudioContext.cpp return MediaStreamAudioDestinationNode::create(this, 2); create 443 Source/modules/webaudio/AudioContext.cpp RefPtr<ScriptProcessorNode> node = ScriptProcessorNode::create(this, m_destinationNode->sampleRate(), bufferSize, numberOfInputChannels, numberOfOutputChannels); create 478 Source/modules/webaudio/AudioContext.cpp return BiquadFilterNode::create(this, m_destinationNode->sampleRate()); create 484 Source/modules/webaudio/AudioContext.cpp return WaveShaperNode::create(this); create 490 Source/modules/webaudio/AudioContext.cpp return PannerNode::create(this, m_destinationNode->sampleRate()); create 496 Source/modules/webaudio/AudioContext.cpp return ConvolverNode::create(this, m_destinationNode->sampleRate()); create 502 Source/modules/webaudio/AudioContext.cpp return DynamicsCompressorNode::create(this, m_destinationNode->sampleRate()); create 508 Source/modules/webaudio/AudioContext.cpp return AnalyserNode::create(this, m_destinationNode->sampleRate()); create 514 Source/modules/webaudio/AudioContext.cpp return GainNode::create(this, m_destinationNode->sampleRate()); create 526 Source/modules/webaudio/AudioContext.cpp RefPtr<DelayNode> node = DelayNode::create(this, m_destinationNode->sampleRate(), maxDelayTime, exceptionState); create 541 Source/modules/webaudio/AudioContext.cpp RefPtr<ChannelSplitterNode> node = ChannelSplitterNode::create(this, m_destinationNode->sampleRate(), numberOfOutputs); create 564 Source/modules/webaudio/AudioContext.cpp RefPtr<ChannelMergerNode> node = ChannelMergerNode::create(this, m_destinationNode->sampleRate(), numberOfInputs); create 581 Source/modules/webaudio/AudioContext.cpp RefPtr<OscillatorNode> node = OscillatorNode::create(this, m_destinationNode->sampleRate()); create 633 Source/modules/webaudio/AudioContext.cpp return PeriodicWave::create(sampleRate(), real, imag); create 1012 Source/modules/webaudio/AudioContext.cpp dispatchEvent(OfflineAudioCompletionEvent::create(renderedBuffer)); create 80 Source/modules/webaudio/AudioContext.h static PassRefPtr<AudioContext> create(Document&, ExceptionState&); create 83 Source/modules/webaudio/AudioContext.h static PassRefPtr<AudioContext> create(Document&, unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState&); create 64 Source/modules/webaudio/AudioDestinationNode.h : m_sourceBus(AudioBus::create(2, AudioNode::ProcessingSizeInFrames)) // FIXME: handle non-stereo local input. create 43 Source/modules/webaudio/AudioListener.h static PassRefPtr<AudioListener> create() create 44 Source/modules/webaudio/AudioNodeInput.cpp m_internalSummingBus = AudioBus::create(1, AudioNode::ProcessingSizeInFrames); create 146 Source/modules/webaudio/AudioNodeInput.cpp m_internalSummingBus = AudioBus::create(numberOfInputChannels, AudioNode::ProcessingSizeInFrames); create 48 Source/modules/webaudio/AudioNodeOutput.cpp m_internalBus = AudioBus::create(numberOfChannels, AudioNode::ProcessingSizeInFrames); create 72 Source/modules/webaudio/AudioNodeOutput.cpp m_internalBus = AudioBus::create(numberOfChannels(), AudioNode::ProcessingSizeInFrames); create 139 Source/modules/webaudio/AudioParam.cpp RefPtr<AudioBus> summingBus = AudioBus::create(1, numberOfValues, false); create 51 Source/modules/webaudio/AudioParam.h static PassRefPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) create 39 Source/modules/webaudio/AudioProcessingEvent.h static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(); create 40 Source/modules/webaudio/AudioProcessingEvent.h static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(PassRefPtr<AudioBuffer> inputBuffer, PassRefPtr<AudioBuffer> outputBuffer, double playbackTime); create 207 Source/modules/webaudio/AudioScheduledSourceNode.cpp RefPtrWillBeRawPtr<Event> event = Event::create(EventTypeNames::ended); create 49 Source/modules/webaudio/BiquadFilterNode.h static PassRefPtr<BiquadFilterNode> create(AudioContext* context, float sampleRate) create 48 Source/modules/webaudio/BiquadProcessor.cpp m_parameter1 = AudioParam::create(context, "frequency", 350.0, 10.0, nyquist); create 49 Source/modules/webaudio/BiquadProcessor.cpp m_parameter2 = AudioParam::create(context, "Q", 1, 0.0001, 1000.0); create 50 Source/modules/webaudio/BiquadProcessor.cpp m_parameter3 = AudioParam::create(context, "gain", 0.0, -40, 40); create 51 Source/modules/webaudio/BiquadProcessor.cpp m_parameter4 = AudioParam::create(context, "detune", 0.0, -4800, 4800); create 41 Source/modules/webaudio/ChannelMergerNode.h static PassRefPtr<ChannelMergerNode> create(AudioContext*, float sampleRate, unsigned numberOfInputs); create 37 Source/modules/webaudio/ChannelSplitterNode.h static PassRefPtr<ChannelSplitterNode> create(AudioContext*, float sampleRate, unsigned numberOfOutputs); create 138 Source/modules/webaudio/ConvolverNode.cpp RefPtr<AudioBus> bufferBus = AudioBus::create(numberOfChannels, bufferLength, false); create 41 Source/modules/webaudio/ConvolverNode.h static PassRefPtr<ConvolverNode> create(AudioContext* context, float sampleRate) create 81 Source/modules/webaudio/DefaultAudioDestinationNode.cpp m_destination = AudioDestination::create(*this, m_inputDeviceId, m_numberOfInputChannels, channelCount(), hardwareSampleRate); create 39 Source/modules/webaudio/DefaultAudioDestinationNode.h static PassRefPtr<DefaultAudioDestinationNode> create(AudioContext* context) create 39 Source/modules/webaudio/DelayNode.h static PassRefPtr<DelayNode> create(AudioContext* context, float sampleRate, double maxDelayTime, ExceptionState& exceptionState) create 39 Source/modules/webaudio/DelayProcessor.cpp m_delayTime = AudioParam::create(context, "delayTime", 0.0, 0.0, maxDelayTime); create 50 Source/modules/webaudio/DynamicsCompressorNode.cpp m_threshold = AudioParam::create(context, "threshold", -24, -100, 0); create 51 Source/modules/webaudio/DynamicsCompressorNode.cpp m_knee = AudioParam::create(context, "knee", 30, 0, 40); create 52 Source/modules/webaudio/DynamicsCompressorNode.cpp m_ratio = AudioParam::create(context, "ratio", 12, 1, 20); create 53 Source/modules/webaudio/DynamicsCompressorNode.cpp m_reduction = AudioParam::create(context, "reduction", 0, -20, 0); create 54 Source/modules/webaudio/DynamicsCompressorNode.cpp m_attack = AudioParam::create(context, "attack", 0.003, 0, 1); create 55 Source/modules/webaudio/DynamicsCompressorNode.cpp m_release = AudioParam::create(context, "release", 0.250, 0, 1); create 38 Source/modules/webaudio/DynamicsCompressorNode.h static PassRefPtr<DynamicsCompressorNode> create(AudioContext* context, float sampleRate) create 43 Source/modules/webaudio/GainNode.cpp m_gain = AudioParam::create(context, "gain", 1.0, 0.0, 1.0); create 42 Source/modules/webaudio/GainNode.h static PassRefPtr<GainNode> create(AudioContext* context, float sampleRate) create 44 Source/modules/webaudio/MediaElementAudioSourceNode.h static PassRefPtr<MediaElementAudioSourceNode> create(AudioContext*, HTMLMediaElement*); create 47 Source/modules/webaudio/MediaStreamAudioDestinationNode.cpp , m_mixBus(AudioBus::create(numberOfChannels, ProcessingSizeInFrames)) create 52 Source/modules/webaudio/MediaStreamAudioDestinationNode.cpp m_source = MediaStreamSource::create("WebAudio-" + createCanonicalUUIDString(), MediaStreamSource::TypeAudio, "MediaStreamAudioDestinationNode", MediaStreamSource::ReadyStateLive, true); create 56 Source/modules/webaudio/MediaStreamAudioDestinationNode.cpp m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(audioSources, videoSources)); create 42 Source/modules/webaudio/MediaStreamAudioDestinationNode.h static PassRefPtr<MediaStreamAudioDestinationNode> create(AudioContext*, size_t numberOfChannels); create 44 Source/modules/webaudio/MediaStreamAudioSourceNode.h static PassRefPtr<MediaStreamAudioSourceNode> create(AudioContext*, MediaStream*, MediaStreamTrack*, PassOwnPtr<AudioSourceProvider>); create 39 Source/modules/webaudio/OfflineAudioCompletionEvent.h static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(); create 40 Source/modules/webaudio/OfflineAudioCompletionEvent.h static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(PassRefPtr<AudioBuffer> renderedBuffer); create 36 Source/modules/webaudio/OfflineAudioContext.h static PassRefPtr<OfflineAudioContext> create(ExecutionContext*, unsigned numberOfChannels, size_t numberOfFrames, float sampleRate, ExceptionState&); create 50 Source/modules/webaudio/OfflineAudioDestinationNode.cpp m_renderBus = AudioBus::create(renderTarget->numberOfChannels(), renderQuantumSize); create 41 Source/modules/webaudio/OfflineAudioDestinationNode.h static PassRefPtr<OfflineAudioDestinationNode> create(AudioContext* context, AudioBuffer* renderTarget) create 63 Source/modules/webaudio/OscillatorNode.cpp m_frequency = AudioParam::create(context, "frequency", 440, 0, 100000); create 65 Source/modules/webaudio/OscillatorNode.cpp m_detune = AudioParam::create(context, "detune", 0, -4800, 4800); create 55 Source/modules/webaudio/OscillatorNode.h static PassRefPtr<OscillatorNode> create(AudioContext*, float sampleRate); create 79 Source/modules/webaudio/PannerNode.cpp m_distanceGain = AudioParam::create(context, "distanceGain", 1.0, 0.0, 1.0); create 80 Source/modules/webaudio/PannerNode.cpp m_coneGain = AudioParam::create(context, "coneGain", 1.0, 0.0, 1.0); create 82 Source/modules/webaudio/PannerNode.cpp m_cachedListener = AudioListener::create(); create 173 Source/modules/webaudio/PannerNode.cpp m_panner = Panner::create(m_panningModel, sampleRate(), m_hrtfDatabaseLoader.get()); create 224 Source/modules/webaudio/PannerNode.cpp OwnPtr<Panner> newPanner = Panner::create(model, sampleRate(), m_hrtfDatabaseLoader.get()); create 65 Source/modules/webaudio/PannerNode.h static PassRefPtr<PannerNode> create(AudioContext* context, float sampleRate) create 51 Source/modules/webaudio/PeriodicWave.h static PassRefPtr<PeriodicWave> create(float sampleRate, Float32Array* real, Float32Array* imag); create 98 Source/modules/webaudio/ScriptProcessorNode.cpp , m_internalInputBus(AudioBus::create(numberOfInputChannels, AudioNode::ProcessingSizeInFrames, false)) create 130 Source/modules/webaudio/ScriptProcessorNode.cpp RefPtr<AudioBuffer> inputBuffer = m_numberOfInputChannels ? AudioBuffer::create(m_numberOfInputChannels, bufferSize(), sampleRate) : nullptr; create 131 Source/modules/webaudio/ScriptProcessorNode.cpp RefPtr<AudioBuffer> outputBuffer = m_numberOfOutputChannels ? AudioBuffer::create(m_numberOfOutputChannels, bufferSize(), sampleRate) : nullptr; create 273 Source/modules/webaudio/ScriptProcessorNode.cpp dispatchEvent(AudioProcessingEvent::create(inputBuffer, outputBuffer, playbackTime)); create 53 Source/modules/webaudio/ScriptProcessorNode.h static PassRefPtr<ScriptProcessorNode> create(AudioContext*, float sampleRate, size_t bufferSize, unsigned numberOfInputChannels, unsigned numberOfOutputChannels); create 39 Source/modules/webaudio/WaveShaperNode.h static PassRefPtr<WaveShaperNode> create(AudioContext* context) create 54 Source/modules/webdatabase/ChangeVersionWrapper.cpp m_sqlError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "unable to read the current version", create 61 Source/modules/webdatabase/ChangeVersionWrapper.cpp m_sqlError = SQLErrorData::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match"); create 77 Source/modules/webdatabase/ChangeVersionWrapper.cpp m_sqlError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "unable to set new version in database", create 41 Source/modules/webdatabase/ChangeVersionWrapper.h static PassRefPtrWillBeRawPtr<ChangeVersionWrapper> create(const String& oldVersion, const String& newVersion) { return adoptRefWillBeNoop(new ChangeVersionWrapper(oldVersion, newVersion)); } create 113 Source/modules/webdatabase/Database.cpp databaseThread->scheduleTask(DatabaseCloseTask::create(this, 0)); create 135 Source/modules/webdatabase/Database.cpp RefPtrWillBeRawPtr<SQLError> error = SQLError::create(*errorData); create 148 Source/modules/webdatabase/Database.cpp RefPtrWillBeRawPtr<SQLTransaction> transaction = SQLTransaction::create(this, callback, successCallback, errorCallback, readOnly); create 154 Source/modules/webdatabase/Database.cpp OwnPtr<SQLErrorData> error = SQLErrorData::create(SQLError::UNKNOWN_ERR, "database has been closed"); create 185 Source/modules/webdatabase/Database.cpp executionContext()->postTask(DeliverPendingCallbackTask::create(transaction)); create 226 Source/modules/webdatabase/Database.cpp OwnPtr<DatabaseTableNamesTask> task = DatabaseTableNamesTask::create(this, &synchronizer, result); create 78 Source/modules/webdatabase/Database.h static PassRefPtrWillBeRawPtr<Database> create(ExecutionContext*, PassRefPtrWillBeRawPtr<DatabaseBackendBase>); create 52 Source/modules/webdatabase/DatabaseAuthorizer.h static PassRefPtrWillBeRawPtr<DatabaseAuthorizer> create(const String& databaseInfoTableName); create 64 Source/modules/webdatabase/DatabaseBackend.cpp OwnPtr<DatabaseOpenTask> task = DatabaseOpenTask::create(this, setVersionInNewDatabase, &synchronizer, error, errorMessage, success); create 117 Source/modules/webdatabase/DatabaseBackend.cpp wrapper = ChangeVersionWrapper::create(data->oldVersion(), data->newVersion()); create 119 Source/modules/webdatabase/DatabaseBackend.cpp RefPtrWillBeRawPtr<SQLTransactionBackend> transactionBackend = SQLTransactionBackend::create(this, transaction, wrapper.release(), readOnly); create 143 Source/modules/webdatabase/DatabaseBackend.cpp OwnPtr<DatabaseTransactionTask> task = DatabaseTransactionTask::create(transaction); create 156 Source/modules/webdatabase/DatabaseBackend.cpp OwnPtr<DatabaseTransactionTask> task = DatabaseTransactionTask::create(transaction); create 217 Source/modules/webdatabase/DatabaseBackendBase.cpp m_databaseAuthorizer = DatabaseAuthorizer::create(infoTableName); create 69 Source/modules/webdatabase/DatabaseClient.cpp OwnPtr<InspectorDatabaseAgent> inspectorAgent = InspectorDatabaseAgent::create(); create 165 Source/modules/webdatabase/DatabaseContext.cpp m_databaseThread = DatabaseThread::create(); create 50 Source/modules/webdatabase/DatabaseContext.h static PassRefPtrWillBeRawPtr<DatabaseContext> create(ExecutionContext*); create 120 Source/modules/webdatabase/DatabaseManager.cpp return DatabaseContext::create(context).get(); create 228 Source/modules/webdatabase/DatabaseManager.cpp RefPtrWillBeRawPtr<Database> database = Database::create(context, backend); create 235 Source/modules/webdatabase/DatabaseManager.cpp database->executionContext()->postTask(DatabaseCreationCallbackTask::create(database, creationCallback)); create 256 Source/modules/webdatabase/DatabaseManager.cpp RefPtrWillBeRawPtr<DatabaseSync> database = DatabaseSync::create(context, backend); create 87 Source/modules/webdatabase/DatabaseSync.cpp RefPtrWillBeRawPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, changeVersionCallback, false); create 164 Source/modules/webdatabase/DatabaseSync.cpp RefPtrWillBeRawPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, callback, readOnly); create 77 Source/modules/webdatabase/DatabaseSync.h static PassRefPtrWillBeRawPtr<DatabaseSync> create(ExecutionContext*, PassRefPtrWillBeRawPtr<DatabaseBackendBase>); create 80 Source/modules/webdatabase/DatabaseTask.h static PassOwnPtr<DatabaseOpenTask> create(DatabaseBackend* db, bool setVersionInNewDatabase, TaskSynchronizer* synchronizer, DatabaseError& error, String& errorMessage, bool& success) create 101 Source/modules/webdatabase/DatabaseTask.h static PassOwnPtr<DatabaseCloseTask> create(DatabaseBackend* db, TaskSynchronizer* synchronizer) create 120 Source/modules/webdatabase/DatabaseTask.h static PassOwnPtr<DatabaseTransactionTask> create(PassRefPtrWillBeRawPtr<SQLTransactionBackend> transaction) create 141 Source/modules/webdatabase/DatabaseTask.h static PassOwnPtr<DatabaseTableNamesTask> create(DatabaseBackend* db, TaskSynchronizer* synchronizer, Vector<String>& names) create 56 Source/modules/webdatabase/DatabaseThread.h static PassRefPtrWillBeRawPtr<DatabaseThread> create() { return adoptRefWillBeNoop(new DatabaseThread); } create 164 Source/modules/webdatabase/DatabaseTracker.cpp executionContext->postTask(NotifyDatabaseObserverOnCloseTask::create(database)); create 185 Source/modules/webdatabase/DatabaseTracker.cpp executionContext->postTask(NotifyDatabaseObserverOnCloseTask::create(database)); create 265 Source/modules/webdatabase/DatabaseTracker.cpp (*it)->databaseContext()->executionContext()->postTask(CloseOneDatabaseImmediatelyTask::create(originIdentifier, name, *it)); create 64 Source/modules/webdatabase/InspectorDatabaseAgent.cpp RefPtr<TypeBuilder::Database::Error> errorObject = TypeBuilder::Database::Error::create() create 83 Source/modules/webdatabase/InspectorDatabaseAgent.cpp RefPtr<TypeBuilder::Array<String> > columnNames = TypeBuilder::Array<String>::create(); create 88 Source/modules/webdatabase/InspectorDatabaseAgent.cpp RefPtr<TypeBuilder::Array<JSONValue> > values = TypeBuilder::Array<JSONValue>::create(); create 93 Source/modules/webdatabase/InspectorDatabaseAgent.cpp case SQLValue::StringValue: values->addItem(JSONString::create(value.string())); break; create 94 Source/modules/webdatabase/InspectorDatabaseAgent.cpp case SQLValue::NumberValue: values->addItem(JSONBasicValue::create(value.number())); break; create 144 Source/modules/webdatabase/InspectorDatabaseAgent.cpp OwnPtr<SQLStatementCallback> callback(StatementCallback::create(m_requestCallback.get())); create 145 Source/modules/webdatabase/InspectorDatabaseAgent.cpp OwnPtr<SQLStatementErrorCallback> errorCallback(StatementErrorCallback::create(m_requestCallback.get())); create 201 Source/modules/webdatabase/InspectorDatabaseAgent.cpp RefPtrWillBeRawPtr<InspectorDatabaseResource> resource = InspectorDatabaseResource::create(database, domain, name, version); create 267 Source/modules/webdatabase/InspectorDatabaseAgent.cpp names = TypeBuilder::Array<String>::create(); create 293 Source/modules/webdatabase/InspectorDatabaseAgent.cpp OwnPtr<SQLTransactionCallback> callback(TransactionCallback::create(query, requestCallback.get())); create 294 Source/modules/webdatabase/InspectorDatabaseAgent.cpp OwnPtr<SQLTransactionErrorCallback> errorCallback(TransactionErrorCallback::create(requestCallback.get())); create 295 Source/modules/webdatabase/InspectorDatabaseAgent.cpp OwnPtr<VoidCallback> successCallback(TransactionSuccessCallback::create()); create 52 Source/modules/webdatabase/InspectorDatabaseAgent.h static PassOwnPtr<InspectorDatabaseAgent> create() create 62 Source/modules/webdatabase/InspectorDatabaseResource.cpp RefPtr<TypeBuilder::Database::Database> jsonObject = TypeBuilder::Database::Database::create() create 47 Source/modules/webdatabase/InspectorDatabaseResource.h static PassRefPtrWillBeRawPtr<InspectorDatabaseResource> create(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version); create 75 Source/modules/webdatabase/SQLCallbackWrapper.h context->postTask(SafeReleaseTask::create(callback.release())); create 92 Source/modules/webdatabase/SQLCallbackWrapper.h static PassOwnPtr<SafeReleaseTask> create(PassOwnPtr<T> callbackToRelease) create 40 Source/modules/webdatabase/SQLError.h static PassOwnPtr<SQLErrorData> create(unsigned code, const String& message) create 45 Source/modules/webdatabase/SQLError.h static PassOwnPtr<SQLErrorData> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage) create 47 Source/modules/webdatabase/SQLError.h return create(code, String::format("%s (%d %s)", message, sqliteCode, sqliteMessage)); create 50 Source/modules/webdatabase/SQLError.h static PassOwnPtr<SQLErrorData> create(const SQLErrorData& data) create 52 Source/modules/webdatabase/SQLError.h return create(data.code(), data.message()); create 67 Source/modules/webdatabase/SQLError.h static PassRefPtrWillBeRawPtr<SQLError> create(const SQLErrorData& data) { return adoptRefWillBeNoop(new SQLError(data)); } create 39 Source/modules/webdatabase/SQLResultSet.cpp : m_rows(SQLResultSetRowList::create()) create 43 Source/modules/webdatabase/SQLResultSet.h static PassRefPtrWillBeRawPtr<SQLResultSet> create() { return adoptRefWillBeNoop(new SQLResultSet); } create 42 Source/modules/webdatabase/SQLResultSetRowList.h static PassRefPtrWillBeRawPtr<SQLResultSetRowList> create() { return adoptRefWillBeNoop(new SQLResultSetRowList); } create 88 Source/modules/webdatabase/SQLStatement.cpp RefPtrWillBeRawPtr<SQLError> sqlError = SQLError::create(*error); create 50 Source/modules/webdatabase/SQLStatement.h static PassOwnPtr<SQLStatement> create(Database*, create 87 Source/modules/webdatabase/SQLStatementBackend.cpp , m_resultSet(SQLResultSet::create()) create 135 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not prepare statement", result, "interrupted"); create 137 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::SYNTAX_ERR, "could not prepare statement", result, database->lastErrorMsg()); create 146 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(db->isInterrupted() ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count"); create 161 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not bind value", result, database->lastErrorMsg()); create 184 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not iterate results", result, database->lastErrorMsg()); create 197 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::CONSTRAINT_ERR, "could not execute statement due to a constaint failure", result, database->lastErrorMsg()); create 201 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::DATABASE_ERR, "could not execute statement", result, database->lastErrorMsg()); create 218 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match"); create 225 Source/modules/webdatabase/SQLStatementBackend.cpp m_error = SQLErrorData::create(SQLError::QUOTA_ERR, "there was not enough remaining storage space, or the storage quota was reached and the user declined to allow more space"); create 47 Source/modules/webdatabase/SQLStatementBackend.h static PassRefPtrWillBeRawPtr<SQLStatementBackend> create(PassOwnPtr<AbstractSQLStatement>, create 94 Source/modules/webdatabase/SQLStatementSync.cpp RefPtrWillBeRawPtr<SQLResultSet> resultSet = SQLResultSet::create(); create 160 Source/modules/webdatabase/SQLTransaction.cpp m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception"); create 179 Source/modules/webdatabase/SQLTransaction.cpp m_transactionError = SQLErrorData::create(*m_backend->transactionError()); create 182 Source/modules/webdatabase/SQLTransaction.cpp RefPtrWillBeRawPtr<SQLError> error = SQLError::create(*m_transactionError); create 210 Source/modules/webdatabase/SQLTransaction.cpp m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false"); create 280 Source/modules/webdatabase/SQLTransaction.cpp OwnPtr<SQLStatement> statement = SQLStatement::create(m_database.get(), callback, callbackError); create 56 Source/modules/webdatabase/SQLTransaction.h static PassRefPtrWillBeRawPtr<SQLTransaction> create(Database*, PassOwnPtr<SQLTransactionCallback>, create 531 Source/modules/webdatabase/SQLTransactionBackend.cpp enqueueStatementBackend(SQLStatementBackend::create(statement, sqlStatement, arguments, permissions)); create 581 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "unable to begin transaction", create 593 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "unable to read version", create 608 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(*m_wrapper->sqlError()); create 611 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction preflight"); create 709 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(*m_currentStatementBackend->sqlError()); create 712 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "the statement failed to execute"); create 724 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(*m_wrapper->sqlError()); create 727 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction postflight"); create 744 Source/modules/webdatabase/SQLTransactionBackend.cpp m_transactionError = SQLErrorData::create(SQLError::DATABASE_ERR, "unable to commit transaction", create 63 Source/modules/webdatabase/SQLTransactionBackend.h static PassRefPtrWillBeRawPtr<SQLTransactionBackend> create(DatabaseBackend*, create 43 Source/modules/webdatabase/SQLTransactionSync.h static PassRefPtrWillBeRawPtr<SQLTransactionSync> create(DatabaseSync*, PassOwnPtr<SQLTransactionSyncCallback>, bool readOnly = false); create 93 Source/modules/webmidi/MIDIAccess.cpp m_accessor = MIDIAccessor::create(this); create 102 Source/modules/webmidi/MIDIAccess.cpp reject(DOMError::create("SecurityError")); create 110 Source/modules/webmidi/MIDIAccess.cpp m_inputs.append(MIDIInput::create(this, id, manufacturer, name, version)); create 118 Source/modules/webmidi/MIDIAccess.cpp m_outputs.append(MIDIOutput::create(this, portIndex, id, manufacturer, name, version)); create 127 Source/modules/webmidi/MIDIAccess.cpp reject(DOMError::create("InvalidStateError")); create 208 Source/modules/webmidi/MIDIAccess.cpp reject(DOMError::create("SecurityError")); create 213 Source/modules/webmidi/MIDIAccess.cpp m_resolver = MIDIAccessResolver::create(ScriptPromiseResolver::create(executionContext()), toIsolate(executionContext())); create 215 Source/modules/webmidi/MIDIAccess.cpp promise.then(PostAction::create(toIsolate(executionContext()), m_weakPtrFactory.createWeakPtr(), Resolved), create 216 Source/modules/webmidi/MIDIAccess.cpp PostAction::create(toIsolate(executionContext()), m_weakPtrFactory.createWeakPtr(), Stopped)); create 228 Source/modules/webmidi/MIDIAccess.cpp reject(DOMError::create("SecurityError")); create 45 Source/modules/webmidi/MIDIAccessor.h static PassOwnPtr<MIDIAccessor> create(MIDIAccessorClient*); create 50 Source/modules/webmidi/MIDIConnectionEvent.h static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create() create 55 Source/modules/webmidi/MIDIConnectionEvent.h static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create(const AtomicString& type, PassRefPtr<MIDIPort> port) create 60 Source/modules/webmidi/MIDIConnectionEvent.h static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create(const AtomicString& type, const MIDIConnectionEventInit& initializer) create 71 Source/modules/webmidi/MIDIController.cpp MIDIController::provideTo(page, MIDIController::supplementName(), MIDIController::create(client)); create 49 Source/modules/webmidi/MIDIController.h static PassOwnPtr<MIDIController> create(PassOwnPtr<MIDIClient>); create 65 Source/modules/webmidi/MIDIInput.cpp RefPtr<Uint8Array> array = Uint8Array::create(data, length); create 66 Source/modules/webmidi/MIDIInput.cpp dispatchEvent(MIDIMessageEvent::create(timeStamp, array)); create 43 Source/modules/webmidi/MIDIInput.h static PassRefPtrWillBeRawPtr<MIDIInput> create(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version); create 51 Source/modules/webmidi/MIDIMessageEvent.h static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create() create 56 Source/modules/webmidi/MIDIMessageEvent.h static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create(double receivedTime, PassRefPtr<Uint8Array> data) create 61 Source/modules/webmidi/MIDIMessageEvent.h static PassRefPtrWillBeRawPtr<MIDIMessageEvent> create(const AtomicString& type, const MIDIMessageEventInit& initializer) create 210 Source/modules/webmidi/MIDIOutput.cpp RefPtr<Uint8Array> array = Uint8Array::create(unsignedData.size()); create 45 Source/modules/webmidi/MIDIOutput.h static PassRefPtrWillBeRawPtr<MIDIOutput> create(MIDIAccess*, unsigned portIndex, const String& id, const String& manufacturer, const String& name, const String& version); create 77 Source/modules/webmidi/NavigatorWebMIDI.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(v8::Isolate::GetCurrent()); create 80 Source/modules/webmidi/NavigatorWebMIDI.cpp resolver->reject(DOMError::create("AbortError")); create 52 Source/modules/websockets/CloseEvent.h static PassRefPtrWillBeRawPtr<CloseEvent> create() create 57 Source/modules/websockets/CloseEvent.h static PassRefPtrWillBeRawPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason) create 62 Source/modules/websockets/CloseEvent.h static PassRefPtrWillBeRawPtr<CloseEvent> create(const AtomicString& type, const CloseEventInit& initializer) create 102 Source/modules/websockets/MainThreadWebSocketChannel.cpp m_handle = SocketStreamHandle::create(m_handshake->url(), this); create 67 Source/modules/websockets/MainThreadWebSocketChannel.h static PassRefPtr<MainThreadWebSocketChannel> create(Document* document, WebSocketChannelClient* client, const String& sourceURL = String(), unsigned lineNumber = 0) { return adoptRef(new MainThreadWebSocketChannel(document, client, sourceURL, lineNumber)); } create 374 Source/modules/websockets/NewWebSocketChannelImpl.cpp m_handshakeRequest = WebSocketHandshakeRequest::create(request.toCoreRequest()); create 73 Source/modules/websockets/NewWebSocketChannelImpl.h static PassRefPtr<NewWebSocketChannelImpl> create(ExecutionContext* context, WebSocketChannelClient* client, const String& sourceURL = String(), unsigned lineNumber = 0) create 50 Source/modules/websockets/ThreadableWebSocketChannelClientWrapper.h static PassRefPtr<ThreadableWebSocketChannelClientWrapper> create(WebSocketChannelClient*); create 230 Source/modules/websockets/WebSocket.cpp , m_eventQueue(EventQueue::create(this)) create 248 Source/modules/websockets/WebSocket.cpp return create(context, url, protocols, exceptionState); create 272 Source/modules/websockets/WebSocket.cpp return create(context, url, protocols, exceptionState); create 332 Source/modules/websockets/WebSocket.cpp m_channel = WebSocketChannel::create(executionContext(), this); create 610 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(Event::create(EventTypeNames::open)); create 618 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(MessageEvent::create(msg, SecurityOrigin::create(m_url)->toString())); create 627 Source/modules/websockets/WebSocket.cpp RefPtr<RawData> rawData = RawData::create(); create 629 Source/modules/websockets/WebSocket.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 631 Source/modules/websockets/WebSocket.cpp RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); create 632 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(MessageEvent::create(blob.release(), SecurityOrigin::create(m_url)->toString())); create 637 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(MessageEvent::create(ArrayBuffer::create(binaryData->data(), binaryData->size()), SecurityOrigin::create(m_url)->toString())); create 646 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(Event::create(EventTypeNames::error)); create 672 Source/modules/websockets/WebSocket.cpp m_eventQueue->dispatch(CloseEvent::create(wasClean, code, reason)); create 60 Source/modules/websockets/WebSocket.h static PassRefPtr<WebSocket> create(ExecutionContext*, const String& url, ExceptionState&); create 61 Source/modules/websockets/WebSocket.h static PassRefPtr<WebSocket> create(ExecutionContext*, const String& url, const String& protocol, ExceptionState&); create 62 Source/modules/websockets/WebSocket.h static PassRefPtr<WebSocket> create(ExecutionContext*, const String& url, const Vector<String>& protocols, ExceptionState&); create 131 Source/modules/websockets/WebSocket.h static PassRefPtr<EventQueue> create(EventTarget* target) { return adoptRef(new EventQueue(target)); } create 66 Source/modules/websockets/WebSocketChannel.cpp return WorkerThreadableWebSocketChannel::create(*workerGlobalScope, client, sourceURL, lineNumber); create 71 Source/modules/websockets/WebSocketChannel.cpp return NewWebSocketChannelImpl::create(document, client, sourceURL, lineNumber); create 73 Source/modules/websockets/WebSocketChannel.cpp return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber); create 51 Source/modules/websockets/WebSocketChannel.h static PassRefPtr<WebSocketChannel> create(ExecutionContext*, WebSocketChannelClient*); create 159 Source/modules/websockets/WebSocketDeflateFramer.cpp return WebSocketExtensionDeflateFrame::create(this); create 164 Source/modules/websockets/WebSocketDeflateFramer.cpp m_deflater = WebSocketDeflater::create(windowBits, mode); create 165 Source/modules/websockets/WebSocketDeflateFramer.cpp m_inflater = WebSocketInflater::create(); create 176 Source/modules/websockets/WebSocketDeflateFramer.cpp OwnPtr<DeflateResultHolder> result = DeflateResultHolder::create(this); create 197 Source/modules/websockets/WebSocketDeflateFramer.cpp OwnPtr<InflateResultHolder> result = InflateResultHolder::create(this); create 47 Source/modules/websockets/WebSocketDeflateFramer.h static PassOwnPtr<DeflateResultHolder> create(WebSocketDeflateFramer* framer) create 70 Source/modules/websockets/WebSocketDeflateFramer.h static PassOwnPtr<InflateResultHolder> create(WebSocketDeflateFramer* framer) create 55 Source/modules/websockets/WebSocketDeflater.h static PassOwnPtr<WebSocketDeflater> create(int windowBits, ContextTakeOverMode = TakeOverContext); create 82 Source/modules/websockets/WebSocketDeflater.h static PassOwnPtr<WebSocketInflater> create(int windowBits = 15); create 39 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketDeflater> deflater = WebSocketDeflater::create(15); create 41 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketInflater> inflater = WebSocketInflater::create(); create 72 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketDeflater> deflater = WebSocketDeflater::create(15); create 74 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketInflater> inflater = WebSocketInflater::create(); create 91 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketDeflater> deflater = WebSocketDeflater::create(15, WebSocketDeflater::DoNotTakeOverContext); create 93 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketInflater> inflater = WebSocketInflater::create(); create 126 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketDeflater> deflater = WebSocketDeflater::create(8); create 131 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketInflater> inflater = WebSocketInflater::create(8); create 141 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketDeflater> deflater = WebSocketDeflater::create(15); create 143 Source/modules/websockets/WebSocketDeflaterTest.cpp OwnPtr<WebSocketInflater> inflater = WebSocketInflater::create(); create 248 Source/modules/websockets/WebSocketHandshake.cpp RefPtr<WebSocketHandshakeRequest> request = WebSocketHandshakeRequest::create(m_url); create 155 Source/modules/websockets/WebSocketPerMessageDeflate.cpp return CompressionMessageExtensionProcessor::create(*this); create 160 Source/modules/websockets/WebSocketPerMessageDeflate.cpp m_deflater = WebSocketDeflater::create(windowBits, mode); create 161 Source/modules/websockets/WebSocketPerMessageDeflate.cpp m_inflater = WebSocketInflater::create(); create 115 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp , m_workerClientWrapper(ThreadableWebSocketChannelClientWrapper::create(client)) create 116 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp , m_bridge(Bridge::create(m_workerClientWrapper, m_workerGlobalScope)) create 232 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_mainWebSocketChannel = NewWebSocketChannelImpl::create(document, this, sourceURL, lineNumber); create 234 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_mainWebSocketChannel = MainThreadWebSocketChannel::create(document, this, sourceURL, lineNumber); create 285 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp RefPtr<ArrayBuffer> binaryData = ArrayBuffer::create(data->data(), data->size()); create 463 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp OwnPtr<ThreadableWebSocketChannelSyncHelper> syncHelper = ThreadableWebSocketChannelSyncHelper::create(adoptPtr(blink::Platform::current()->createWaitableEvent())); create 478 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::connect, m_peer, url.copy(), protocol.isolatedCopy()))); create 486 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::send, m_peer, message.isolatedCopy()))); create 501 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::sendArrayBuffer, m_peer, data.release()))); create 512 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::sendBlob, m_peer, data))); create 523 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::bufferedAmount, m_peer))); create 531 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::close, m_peer, code, reason.isolatedCopy()))); create 536 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::fail, m_peer, reason.isolatedCopy(), level, sourceURL.isolatedCopy(), lineNumber))); create 547 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::suspend, m_peer))); create 552 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::resume, m_peer))); create 579 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp m_loaderProxy.postTaskToLoader(CallClosureTask::create(bind(&Peer::destroy, m_peer))); create 67 Source/modules/websockets/WorkerThreadableWebSocketChannel.h static PassRefPtr<WebSocketChannel> create(WorkerGlobalScope& workerGlobalScope, WebSocketChannelClient* client, const String& sourceURL, unsigned lineNumber) create 142 Source/modules/websockets/WorkerThreadableWebSocketChannel.h static PassRefPtr<Bridge> create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtrWillBeRawPtr<WorkerGlobalScope> workerGlobalScope) create 81 Source/platform/CalculationValue.h static PassRefPtr<CalculationValue> create(PassOwnPtr<CalcExpressionNode> value, ValueRange); create 37 Source/platform/Clock.h static PassOwnPtr<Clock> create(); create 44 Source/platform/ClockTest.cpp OwnPtr<Clock> clock = Clock::create(); create 54 Source/platform/ClockTest.cpp OwnPtr<Clock> clock = Clock::create(); create 165 Source/platform/DragImage.cpp OwnPtr<ImageBuffer> buffer(ImageBuffer::create(scaledImageSize)); create 199 Source/platform/DragImage.cpp return DragImage::create(image.get(), DoNotRespectImageOrientation, deviceScaleFactor); create 42 Source/platform/DragImage.h static PassOwnPtr<DragImage> create(Image*, RespectImageOrientationEnum = DoNotRespectImageOrientation, float deviceScaleFactor = 1); create 43 Source/platform/DragImage.h static PassOwnPtr<DragImage> create(const KURL&, const String& label, const FontDescription& systemFont, float deviceScaleFactor); create 67 Source/platform/DragImageTest.cpp m_nativeImage = NativeImageSkia::create(bitmap); create 106 Source/platform/DragImageTest.cpp EXPECT_FALSE(DragImage::create(0)); create 108 Source/platform/DragImageTest.cpp RefPtr<TestImage> nullTestImage(TestImage::create(IntSize())); create 109 Source/platform/DragImageTest.cpp EXPECT_FALSE(DragImage::create(nullTestImage.get())); create 114 Source/platform/DragImageTest.cpp RefPtr<TestImage> testImage(TestImage::create(IntSize(2, 2))); create 115 Source/platform/DragImageTest.cpp OwnPtr<DragImage> dragImage = DragImage::create(testImage.get()); create 131 Source/platform/DragImageTest.cpp RefPtr<TestImage> testImage(TestImage::create(IntSize())); create 132 Source/platform/DragImageTest.cpp EXPECT_FALSE(DragImage::create(testImage.get())); create 137 Source/platform/DragImageTest.cpp RefPtr<TestImage> testImage(TestImage::create(IntSize(1, 1))); create 138 Source/platform/DragImageTest.cpp OwnPtr<DragImage> dragImage = DragImage::create(testImage.get()); create 161 Source/platform/DragImageTest.cpp DragImage::create(url, testLabel, fontDescription, deviceScaleFactor); create 163 Source/platform/DragImageTest.cpp DragImage::create(url, expectedLabel, fontDescription, deviceScaleFactor); create 43 Source/platform/FileChooser.cpp m_chooser = FileChooser::create(this, settings); create 83 Source/platform/FileChooser.h static PassRefPtr<FileChooser> create(FileChooserClient*, const FileChooserSettings&); create 98 Source/platform/JSONValues.h static PassRefPtr<JSONBasicValue> create(bool value) create 103 Source/platform/JSONValues.h static PassRefPtr<JSONBasicValue> create(int value) create 108 Source/platform/JSONValues.h static PassRefPtr<JSONBasicValue> create(double value) create 135 Source/platform/JSONValues.h static PassRefPtr<JSONString> create(const String& value) create 140 Source/platform/JSONValues.h static PassRefPtr<JSONString> create(const char* value) create 215 Source/platform/JSONValues.h static PassRefPtr<JSONObject> create() create 286 Source/platform/JSONValues.h static PassRefPtr<JSONArray> create() create 320 Source/platform/JSONValues.h setValue(name, JSONBasicValue::create(value)); create 325 Source/platform/JSONValues.h setValue(name, JSONBasicValue::create(value)); create 330 Source/platform/JSONValues.h setValue(name, JSONString::create(value)); create 356 Source/platform/JSONValues.h m_data.append(JSONBasicValue::create(value)); create 361 Source/platform/JSONValues.h m_data.append(JSONBasicValue::create(value)); create 366 Source/platform/JSONValues.h m_data.append(JSONBasicValue::create(value)); create 371 Source/platform/JSONValues.h m_data.append(JSONString::create(value)); create 180 Source/platform/Length.cpp return Length(CalculationValue::create(adoptPtr(new CalcExpressionBlendLength(from, *this, progress)), range)); create 90 Source/platform/LifecycleContext.h return LifecycleContext<T>::Notifier::create(static_cast<T*>(this)); create 45 Source/platform/LifecycleNotifier.h static PassOwnPtr<LifecycleNotifier> create(Context* context) create 62 Source/platform/PODArena.h static PassRefPtr<FastMallocAllocator> create() create 75 Source/platform/PODArena.h static PassRefPtr<PODArena> create() create 81 Source/platform/PODArena.h static PassRefPtr<PODArena> create(PassRefPtr<Allocator> allocator) create 108 Source/platform/PODArena.h : m_allocator(FastMallocAllocator::create()) create 67 Source/platform/PODArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); create 68 Source/platform/PODArenaTest.cpp RefPtr<PODArena> arena = PODArena::create(allocator); create 78 Source/platform/PODArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); create 80 Source/platform/PODArenaTest.cpp RefPtr<PODArena> arena = PODArena::create(allocator); create 91 Source/platform/PODArenaTest.cpp RefPtr<PODArena> arena = PODArena::create(); create 36 Source/platform/PODFreeListArena.h static PassRefPtr<PODFreeListArena> create() create 42 Source/platform/PODFreeListArena.h static PassRefPtr<PODFreeListArena> create(PassRefPtr<PODArena::Allocator> allocator) create 86 Source/platform/PODFreeListArena.h : m_arena(PODArena::create()), m_freeList(0) { } create 89 Source/platform/PODFreeListArena.h : m_arena(PODArena::create(allocator)), m_freeList(0) { } create 75 Source/platform/PODFreeListArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); create 76 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(allocator); create 86 Source/platform/PODFreeListArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); create 88 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(allocator); create 99 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(); create 113 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(); create 142 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(); create 156 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass2> > arena = PODFreeListArena<TestClass2>::create(); create 125 Source/platform/PODRedBlackTree.h : m_arena(PODFreeListArena<Node>::create()) create 165 Source/platform/PODRedBlackTree.h m_arena = PODFreeListArena<Node>::create(); create 45 Source/platform/PODRedBlackTreeTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); create 48 Source/platform/PODRedBlackTreeTest.cpp RefPtr<PODIntegerArena> arena = PODIntegerArena::create(allocator); create 18 Source/platform/PermissionCallbacks.h static PassOwnPtr<PermissionCallbacks> create(const Closure& allowed, const Closure& denied); create 68 Source/platform/Prerender.h static PassRefPtr<Prerender> create(PrerenderClient*, const KURL&, unsigned relTypes, const String& referrer, ReferrerPolicy); create 218 Source/platform/SharedBuffer.cpp RefPtr<SharedBuffer> buffer = create(); create 43 Source/platform/SharedBuffer.h static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer); } create 44 Source/platform/SharedBuffer.h static PassRefPtr<SharedBuffer> create(size_t size) { return adoptRef(new SharedBuffer(size)); } create 45 Source/platform/SharedBuffer.h static PassRefPtr<SharedBuffer> create(const char* c, int i) { return adoptRef(new SharedBuffer(c, i)); } create 46 Source/platform/SharedBuffer.h static PassRefPtr<SharedBuffer> create(const unsigned char* c, int i) { return adoptRef(new SharedBuffer(c, i)); } create 55 Source/platform/SharedBufferTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(testData0, strlen(testData0)); create 106 Source/platform/SharedBufferTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(testData.data(), length); create 124 Source/platform/SharedBufferTest.cpp RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(length); create 127 Source/platform/UserGestureIndicator.cpp m_token = GestureToken::create(); create 101 Source/platform/animation/TimingFunction.h static PassRefPtr<CubicBezierTimingFunction> create(double x1, double y1, double x2, double y2) create 182 Source/platform/animation/TimingFunction.h static PassRefPtr<StepsTimingFunction> create(int steps, StepAtPosition stepAtPosition) create 88 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicCustomTiming = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 103 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepTimingCustomStart = StepsTimingFunction::create(3, StepsTimingFunction::StepAtStart); create 106 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepTimingCustomMiddle = StepsTimingFunction::create(4, StepsTimingFunction::StepAtMiddle); create 109 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepTimingCustomEnd = StepsTimingFunction::create(5, StepsTimingFunction::StepAtEnd); create 117 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicTiming2 = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 119 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTiming2 = StepsTimingFunction::create(5, StepsTimingFunction::StepAtStart); create 155 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicCustomTiming1 = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 156 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicCustomTiming2 = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 171 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicB = CubicBezierTimingFunction::create(0.42, 0.0, 1.0, 1.0); create 188 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustom1 = StepsTimingFunction::create(5, StepsTimingFunction::StepAtStart); create 189 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustom2 = StepsTimingFunction::create(5, StepsTimingFunction::StepAtEnd); create 190 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustom3 = StepsTimingFunction::create(7, StepsTimingFunction::StepAtStart); create 191 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustom4 = StepsTimingFunction::create(7, StepsTimingFunction::StepAtEnd); create 193 Source/platform/animation/TimingFunctionTest.cpp EXPECT_EQ(*StepsTimingFunction::create(5, StepsTimingFunction::StepAtStart), *stepsTimingCustom1); create 194 Source/platform/animation/TimingFunctionTest.cpp EXPECT_EQ(*StepsTimingFunction::create(5, StepsTimingFunction::StepAtEnd), *stepsTimingCustom2); create 195 Source/platform/animation/TimingFunctionTest.cpp EXPECT_EQ(*StepsTimingFunction::create(7, StepsTimingFunction::StepAtStart), *stepsTimingCustom3); create 196 Source/platform/animation/TimingFunctionTest.cpp EXPECT_EQ(*StepsTimingFunction::create(7, StepsTimingFunction::StepAtEnd), *stepsTimingCustom4); create 211 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsB = StepsTimingFunction::create(1, StepsTimingFunction::StepAtStart); create 246 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> cubicCustomTiming = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); create 272 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustomStart = StepsTimingFunction::create(4, StepsTimingFunction::StepAtStart); create 282 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustomMiddle = StepsTimingFunction::create(4, StepsTimingFunction::StepAtMiddle); create 294 Source/platform/animation/TimingFunctionTest.cpp RefPtr<TimingFunction> stepsTimingCustomEnd = StepsTimingFunction::create(4, StepsTimingFunction::StepAtEnd); create 187 Source/platform/audio/AudioBus.cpp RefPtr<AudioBus> audioBus = create(numberOfChannels, rangeLength); create 553 Source/platform/audio/AudioBus.cpp RefPtr<AudioBus> silentBus = create(numberOfSourceChannels, sourceBus->length() / sampleRateRatio); create 575 Source/platform/audio/AudioBus.cpp RefPtr<AudioBus> destinationBus = create(numberOfDestinationChannels, destinationLength); create 594 Source/platform/audio/AudioBus.cpp return create(1, sourceBus->length()); create 603 Source/platform/audio/AudioBus.cpp RefPtr<AudioBus> destinationBus = create(1, n); create 69 Source/platform/audio/AudioBus.h static PassRefPtr<AudioBus> create(unsigned numberOfChannels, size_t length, bool allocate = true); create 56 Source/platform/audio/AudioDestination.cpp , m_inputBus(AudioBus::create(numberOfInputChannels, renderBufferSize)) create 57 Source/platform/audio/AudioDestination.cpp , m_renderBus(AudioBus::create(numberOfOutputChannels, renderBufferSize, false)) create 102 Source/platform/audio/AudioDestination.cpp RefPtr<AudioBus> silence = AudioBus::create(2, renderBufferSize); create 155 Source/platform/audio/AudioDestination.cpp RefPtr<AudioBus> wrapperBus = AudioBus::create(2, numberOfFrames, false); create 55 Source/platform/audio/AudioDestination.h static PassOwnPtr<AudioDestination> create(AudioIOCallback&, const String& inputDeviceId, unsigned numberOfInputChannels, unsigned numberOfOutputChannels, float sampleRate); create 38 Source/platform/audio/AudioFIFO.cpp : m_fifoAudioBus(AudioBus::create(numberOfChannels, fifoLength)) create 41 Source/platform/audio/AudioPullFIFO.cpp , m_tempBus(AudioBus::create(numberOfChannels, providerSize)) create 44 Source/platform/audio/AudioResampler.cpp m_sourceBus = AudioBus::create(1, 0, false); create 53 Source/platform/audio/AudioResampler.cpp m_sourceBus = AudioBus::create(numberOfChannels, 0, false); create 70 Source/platform/audio/AudioResampler.cpp m_sourceBus = AudioBus::create(numberOfChannels, 0, false); create 46 Source/platform/audio/HRTFDatabase.h static PassOwnPtr<HRTFDatabase> create(float sampleRate); create 88 Source/platform/audio/HRTFDatabaseLoader.cpp m_hrtfDatabase = HRTFDatabase::create(m_databaseSampleRate); create 199 Source/platform/audio/HRTFElevation.cpp kernelL = HRTFKernel::create(leftEarImpulseResponse, fftSize, sampleRate); create 200 Source/platform/audio/HRTFElevation.cpp kernelR = HRTFKernel::create(rightEarImpulseResponse, fftSize, sampleRate); create 130 Source/platform/audio/HRTFKernel.cpp return HRTFKernel::create(interpolatedFrame.release(), frameDelay, sampleRate1); create 54 Source/platform/audio/HRTFKernel.h static PassRefPtr<HRTFKernel> create(AudioChannel* channel, size_t fftSize, float sampleRate) create 59 Source/platform/audio/HRTFKernel.h static PassRefPtr<HRTFKernel> create(PassOwnPtr<FFTFrame> fftFrame, float frameDelay, float sampleRate) create 67 Source/platform/audio/MultiChannelResampler.cpp m_multiChannelBus = AudioBus::create(m_numberOfChannels, framesToProcess); create 51 Source/platform/audio/Panner.h static PassOwnPtr<Panner> create(PanningModel, float sampleRate, HRTFDatabaseLoader*); create 133 Source/platform/audio/Reverb.cpp m_tempBuffer = AudioBus::create(2, MaxFrameSize); create 137 Source/platform/audio/SincResampler.cpp RefPtr<AudioBus> bus = AudioBus::create(1, numberOfSourceFrames, false); create 105 Source/platform/blob/BlobData.cpp RefPtr<RawData> data = RawData::create(); create 120 Source/platform/blob/BlobData.cpp RefPtr<RawData> data = RawData::create(); create 170 Source/platform/blob/BlobData.cpp BlobRegistry::registerBlobData(m_uuid, BlobData::create()); create 47 Source/platform/blob/BlobData.h static PassRefPtr<RawData> create() create 164 Source/platform/blob/BlobData.h static PassOwnPtr<BlobData> create(); create 209 Source/platform/blob/BlobData.h static PassRefPtr<BlobDataHandle> create() create 215 Source/platform/blob/BlobData.h static PassRefPtr<BlobDataHandle> create(PassOwnPtr<BlobData> data, long long size) create 221 Source/platform/blob/BlobData.h static PassRefPtr<BlobDataHandle> create(const String& uuid, const String& type, long long size) create 41 Source/platform/exported/WebArrayBuffer.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(numElements, elementByteSize); create 52 Source/platform/exported/WebAudioBus.cpp RefPtr<AudioBus> audioBus = AudioBus::create(numberOfChannels, length); create 62 Source/platform/exported/WebCryptoResult.cpp WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1); create 52 Source/platform/exported/WebData.cpp m_private = SharedBuffer::create(data, size); create 65 Source/platform/exported/WebFileSystemCallbacks.cpp m_private = WebFileSystemCallbacksPrivate::create(callbacks); create 102 Source/platform/exported/WebFileSystemCallbacks.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 104 Source/platform/exported/WebFileSystemCallbacks.cpp RefPtr<BlobDataHandle> snapshotBlob = BlobDataHandle::create(blobData.release(), webFileInfo.length); create 46 Source/platform/exported/WebHTTPBody.cpp assign(static_cast<WebHTTPBodyPrivate*>(FormData::create().leakRef())); create 54 Source/platform/exported/WebImageSkia.cpp OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored)); create 102 Source/platform/exported/WebImageSkia.cpp OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored)); create 42 Source/platform/exported/WebMediaConstraints.cpp static PassRefPtr<WebMediaConstraintsPrivate> create(); create 43 Source/platform/exported/WebMediaConstraints.cpp static PassRefPtr<WebMediaConstraintsPrivate> create(const WebVector<WebMediaConstraint>& optional, const WebVector<WebMediaConstraint>& mandatory); create 146 Source/platform/exported/WebMediaConstraints.cpp m_private = WebMediaConstraintsPrivate::create(); create 152 Source/platform/exported/WebMediaConstraints.cpp m_private = WebMediaConstraintsPrivate::create(optional, mandatory); create 38 Source/platform/exported/WebMediaDeviceInfo.cpp static PassRefPtr<WebMediaDeviceInfoPrivate> create(const WebString& deviceId, WebMediaDeviceInfo::MediaDeviceKind, const WebString& label, const WebString& groupId); create 79 Source/platform/exported/WebMediaDeviceInfo.cpp m_private = WebMediaDeviceInfoPrivate::create(deviceId, kind, label, groupId); create 153 Source/platform/exported/WebMediaStream.cpp m_private = MediaStreamDescriptor::create(label, audio, video); create 107 Source/platform/exported/WebMediaStreamSource.cpp m_private = MediaStreamSource::create(id, static_cast<MediaStreamSource::Type>(type), name); create 214 Source/platform/exported/WebMediaStreamSource.cpp m_private->addAudioConsumer(ConsumerWrapper::create(consumer)); create 85 Source/platform/exported/WebMediaStreamTrack.cpp m_private = MediaStreamComponent::create(source); create 90 Source/platform/exported/WebMediaStreamTrack.cpp m_private = MediaStreamComponent::create(id, source); create 31 Source/platform/exported/WebPermissionCallbacks.cpp m_private = WebPermissionCallbacksPrivate::create(callbacks); create 107 Source/platform/exported/WebPrerender.cpp m_private->setExtraData(ExtraDataContainer::create(extraData)); create 82 Source/platform/exported/WebRTCICECandidate.cpp m_private = WebRTCICECandidatePrivate::create(candidate, sdpMid, sdpMLineIndex); create 43 Source/platform/exported/WebRTCSessionDescription.cpp static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp); create 81 Source/platform/exported/WebRTCSessionDescription.cpp m_private = WebRTCSessionDescriptionPrivate::create(type, sdp); create 44 Source/platform/exported/WebScrollbarThemeGeometryNative.h static PassOwnPtr<WebScrollbarThemeGeometryNative> create(WebCore::ScrollbarTheme*); create 42 Source/platform/exported/WebSocketHandshakeRequestInfo.cpp WebSocketHandshakeRequestInfo::WebSocketHandshakeRequestInfo() : m_private(WebSocketHandshakeRequest::create()) create 43 Source/platform/exported/WebSocketStreamError.cpp m_private = SocketStreamError::create(code, message); create 38 Source/platform/exported/WebSourceInfo.cpp static PassRefPtr<WebSourceInfoPrivate> create(const WebString& id, WebSourceInfo::SourceKind, const WebString& label, WebSourceInfo::VideoFacingMode); create 79 Source/platform/exported/WebSourceInfo.cpp m_private = WebSourceInfoPrivate::create(id, kind, label, facing); create 36 Source/platform/exported/WebSpeechSynthesisVoice.cpp : m_private(WebCore::PlatformSpeechSynthesisVoice::create()) create 33 Source/platform/exported/WebStorageQuotaCallbacks.cpp m_private = WebStorageQuotaCallbacksPrivate::create(callbacks); create 43 Source/platform/exported/WebURLLoadTiming.cpp m_private = ResourceLoadTiming::create(); create 317 Source/platform/exported/WebURLRequest.cpp m_private->m_resourceRequest->setExtraData(ExtraDataContainer::create(extraData)); create 431 Source/platform/exported/WebURLResponse.cpp m_private->m_resourceResponse->setExtraData(ExtraDataContainer::create(extraData)); create 39 Source/platform/fonts/CustomFontData.h static PassRefPtr<CustomFontData> create() { return adoptRef(new CustomFontData()); } create 101 Source/platform/fonts/Font.cpp m_fontFallbackList = FontFallbackList::create(); create 139 Source/platform/fonts/FontCache.cpp RefPtr<OpenTypeVerticalData> verticalData = OpenTypeVerticalData::create(platformData); create 59 Source/platform/fonts/FontCustomPlatformData.h static PassOwnPtr<FontCustomPlatformData> create(SharedBuffer*); create 55 Source/platform/fonts/FontDataCache.cpp pair<RefPtr<SimpleFontData>, unsigned> newValue(SimpleFontData::create(*platformData), shouldRetain == Retain ? 1 : 0); create 67 Source/platform/fonts/FontFallbackList.h static PassRefPtr<FontFallbackList> create() { return adoptRef(new FontFallbackList()); } create 59 Source/platform/fonts/FontFamily.h static PassRefPtr<SharedFontFamily> create() create 53 Source/platform/fonts/FontFeatureSettings.h static PassRefPtr<FontFeatureSettings> create() create 58 Source/platform/fonts/SegmentedFontData.h static PassRefPtr<SegmentedFontData> create() { return adoptRef(new SegmentedFontData); } create 175 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData = DerivedFontData::create(isCustomFont()); create 179 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData->verticalRightOrientation = create(verticalRightPlatformData, isCustomFont() ? CustomFontData::create(): nullptr, true); create 187 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData = DerivedFontData::create(isCustomFont()); create 189 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData->uprightOrientation = create(m_platformData, isCustomFont() ? CustomFontData::create(): nullptr, true); create 196 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData = DerivedFontData::create(isCustomFont()); create 206 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData = DerivedFontData::create(isCustomFont()); create 216 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData = DerivedFontData::create(isCustomFont()); create 218 Source/platform/fonts/SimpleFontData.cpp m_derivedFontData->brokenIdeograph = create(m_platformData, isCustomFont() ? CustomFontData::create(): nullptr); create 60 Source/platform/fonts/SimpleFontData.h static PassRefPtr<SimpleFontData> create(const FontPlatformData& platformData, PassRefPtr<CustomFontData> customData = nullptr, bool isTextOrientationFallback = false) create 66 Source/platform/fonts/SimpleFontData.h static PassRefPtr<SimpleFontData> create(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic) create 220 Source/platform/fonts/SimpleFontData.h static PassOwnPtr<DerivedFontData> create(bool forCustomFont); create 251 Source/platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp m_harfBuzzFace = HarfBuzzFace::create(const_cast<FontPlatformData*>(this), uniqueID()); create 87 Source/platform/fonts/harfbuzz/HarfBuzzFace.cpp result.storedValue->value = FaceCacheEntry::create(createFace()); create 50 Source/platform/fonts/harfbuzz/HarfBuzzFace.h static PassRefPtr<HarfBuzzFace> create(FontPlatformData* platformData, uint64_t uniqueID) create 777 Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp return m_harfBuzzRuns.append(HarfBuzzRun::create(fontData, create 74 Source/platform/fonts/harfbuzz/HarfBuzzShaper.h static PassOwnPtr<HarfBuzzRun> create(const SimpleFontData* fontData, unsigned startIndex, unsigned numCharacters, TextDirection direction, hb_script_t script) create 77 Source/platform/fonts/mac/ComplexTextController.h static PassRefPtr<ComplexTextRun> create(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange) create 82 Source/platform/fonts/mac/ComplexTextController.h static PassRefPtr<ComplexTextRun> create(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr) create 75 Source/platform/fonts/mac/MemoryActivatedFont.h static PassRefPtr<MemoryActivatedFont> create(uint32_t fontID, NSFont*, CGFontRef); create 66 Source/platform/fonts/opentype/OpenTypeSanitizer.cpp return SharedBuffer::create(static_cast<unsigned char*>(output.get()), transcodeLen); create 45 Source/platform/fonts/opentype/OpenTypeVerticalData.h static PassRefPtr<OpenTypeVerticalData> create(const FontPlatformData& platformData) create 197 Source/platform/fonts/skia/SimpleFontDataSkia.cpp return SimpleFontData::create(FontPlatformData(m_platformData, scaledSize), isCustomFont() ? CustomFontData::create() : nullptr); create 258 Source/platform/fonts/win/FontPlatformDataWin.cpp m_harfBuzzFace = HarfBuzzFace::create(const_cast<FontPlatformData*>(this), uniqueID()); create 50 Source/platform/graphics/BitmapImage.h static PassRefPtr<BitmapImage> create(PassRefPtr<NativeImageSkia> nativeImage, ImageObserver* observer = 0) create 54 Source/platform/graphics/BitmapImage.h static PassRefPtr<BitmapImage> create(ImageObserver* observer = 0) create 112 Source/platform/graphics/BitmapImageTest.cpp m_image = BitmapImage::create(&m_imageObserver); create 44 Source/platform/graphics/Canvas2DImageBufferSurface.h , m_layerBridge(Canvas2DLayerBridge::create(size, opacityMode, msaaSampleCount)) create 57 Source/platform/graphics/Canvas2DLayerBridge.h static PassRefPtr<Canvas2DLayerBridge> create(const IntSize&, OpacityMode, int msaaSampleCount); create 41 Source/platform/graphics/CrossfadeGeneratedImage.h static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size) create 66 Source/platform/graphics/DeferredImageDecoder.cpp OwnPtr<ImageDecoder> actualDecoder = ImageDecoder::create(data, alphaOption, gammaAndColorOption); create 215 Source/platform/graphics/DeferredImageDecoder.cpp m_frameGenerator = ImageFrameGenerator::create(SkISize::Make(m_actualDecoder->decodedSize().width(), m_actualDecoder->decodedSize().height()), m_data, m_allDataReceived, !isSingleFrame); create 48 Source/platform/graphics/DeferredImageDecoder.h static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption); create 75 Source/platform/graphics/DeferredImageDecoderTest.cpp m_data = SharedBuffer::create(whitePNG, sizeof(whitePNG)); create 76 Source/platform/graphics/DeferredImageDecoderTest.cpp OwnPtr<MockImageDecoder> decoder = MockImageDecoder::create(this); create 133 Source/platform/graphics/DeferredImageDecoderTest.cpp m_lazyDecoder->frameGenerator()->setImageDecoderFactory(MockImageDecoderFactory::create(this, m_decodedSize)); create 176 Source/platform/graphics/DeferredImageDecoderTest.cpp RefPtr<SharedBuffer> partialData = SharedBuffer::create(m_data->data(), m_data->size() - 10); create 65 Source/platform/graphics/DrawLooperBuilder.h static PassOwnPtr<DrawLooperBuilder> create(); create 51 Source/platform/graphics/Gradient.h static PassRefPtr<Gradient> create(const FloatPoint& p0, const FloatPoint& p1) create 55 Source/platform/graphics/Gradient.h static PassRefPtr<Gradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio = 1) create 40 Source/platform/graphics/GradientGeneratedImage.h static PassRefPtr<GradientGeneratedImage> create(PassRefPtr<Gradient> generator, const IntSize& size) create 137 Source/platform/graphics/GraphicsContext.cpp m_paintStateStack.append(GraphicsContextState::create()); create 306 Source/platform/graphics/GraphicsContext.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 701 Source/platform/graphics/GraphicsContext.cpp OwnPtr<DrawLooperBuilder> drawLooperBuilder = DrawLooperBuilder::create(); create 448 Source/platform/graphics/GraphicsContext.h m_paintStateStack.append(GraphicsContextState::create()); create 177 Source/platform/graphics/GraphicsContextRecorder.cpp return ImageBuffer::create(IntSize(m_picture->width(), m_picture->height()), m_isCertainlyOpaque ? Opaque : NonOpaque); create 51 Source/platform/graphics/GraphicsContextState.h static PassOwnPtr<GraphicsContextState> create() { return adoptPtr(new GraphicsContextState()); } create 244 Source/platform/graphics/GraphicsContextTest.cpp OwnPtr<ImageBuffer> alphaImage = ImageBuffer::create(IntSize(100, 100)); create 281 Source/platform/graphics/GraphicsContextTest.cpp OwnPtr<ImageBuffer> alphaImage = ImageBuffer::create(IntSize(100, 100)); create 524 Source/platform/graphics/GraphicsContextTest.cpp RefPtr<BitmapImage> opaqueImage = BitmapImage::create(NativeImageSkia::create(opaqueBitmap)); create 533 Source/platform/graphics/GraphicsContextTest.cpp RefPtr<BitmapImage> alphaImage = BitmapImage::create(NativeImageSkia::create(alphaBitmap)); create 87 Source/platform/graphics/GraphicsLayer.h static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayerClient*); create 37 Source/platform/graphics/GraphicsLayerDebugInfo.cpp RefPtr<JSONObject> jsonObject = JSONObject::create(); create 55 Source/platform/graphics/GraphicsLayerDebugInfo.cpp RefPtr<JSONArray> jsonArray = JSONArray::create(); create 58 Source/platform/graphics/GraphicsLayerDebugInfo.cpp RefPtr<JSONObject> rectContainer = JSONObject::create(); create 59 Source/platform/graphics/GraphicsLayerDebugInfo.cpp RefPtr<JSONArray> rectArray = JSONArray::create(); create 72 Source/platform/graphics/GraphicsLayerDebugInfo.cpp RefPtr<JSONArray> jsonArray = JSONArray::create(); create 61 Source/platform/graphics/Image.cpp DEFINE_STATIC_REF(Image, nullImage, (BitmapImage::create())); create 71 Source/platform/graphics/Image.cpp RefPtr<Image> image = BitmapImage::create(); create 137 Source/platform/graphics/ImageBuffer.cpp return BitmapImage::create(NativeImageSkia::create()); create 140 Source/platform/graphics/ImageBuffer.cpp return BitmapImage::create(NativeImageSkia::create(copyBehavior == CopyBackingStore ? deepSkBitmapCopy(bitmap) : bitmap)); create 247 Source/platform/graphics/ImageBuffer.cpp RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap)); create 266 Source/platform/graphics/ImageBuffer.cpp RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap)); create 335 Source/platform/graphics/ImageBuffer.cpp return Uint8ClampedArray::create(rect.width() * rect.height() * 4); create 342 Source/platform/graphics/ImageBuffer.cpp return Uint8ClampedArray::create(rect.width() * rect.height() * 4); create 80 Source/platform/graphics/ImageBuffer.h static PassOwnPtr<ImageBuffer> create(const IntSize&, OpacityMode = NonOpaque); create 81 Source/platform/graphics/ImageBuffer.h static PassOwnPtr<ImageBuffer> create(PassOwnPtr<ImageBufferSurface>); create 77 Source/platform/graphics/ImageDecodingStore.cpp setInstance(ImageDecodingStore::create().leakPtr()); create 201 Source/platform/graphics/ImageDecodingStore.cpp OwnPtr<DecoderCacheEntry> newCacheEntry = DecoderCacheEntry::create(generator, decoder, isDiscardable); create 88 Source/platform/graphics/ImageDecodingStore.h static PassOwnPtr<ImageDecodingStore> create() { return adoptPtr(new ImageDecodingStore); } create 227 Source/platform/graphics/ImageDecodingStore.h static PassOwnPtr<DecoderCacheEntry> create(const ImageFrameGenerator* generator, PassOwnPtr<ImageDecoder> decoder, bool isDiscardable) create 46 Source/platform/graphics/ImageDecodingStoreTest.cpp m_data = SharedBuffer::create(); create 47 Source/platform/graphics/ImageDecodingStoreTest.cpp m_generator = ImageFrameGenerator::create(SkISize::Make(100, 100), m_data, true); create 247 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder = MockImageDecoder::create(this); create 259 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder = MockImageDecoder::create(this); create 276 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder1 = MockImageDecoder::create(this); create 277 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder2 = MockImageDecoder::create(this); create 278 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder3 = MockImageDecoder::create(this); create 303 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder1 = MockImageDecoder::create(this); create 304 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder2 = MockImageDecoder::create(this); create 305 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder3 = MockImageDecoder::create(this); create 332 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder = MockImageDecoder::create(this); create 441 Source/platform/graphics/ImageDecodingStoreTest.cpp OwnPtr<ImageDecoder> decoder = MockImageDecoder::create(this); create 247 Source/platform/graphics/ImageFrameGenerator.cpp *decoder = m_imageDecoderFactory->create().leakPtr(); create 250 Source/platform/graphics/ImageFrameGenerator.cpp *decoder = ImageDecoder::create(*data, ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied).leakPtr(); create 53 Source/platform/graphics/ImageFrameGenerator.h virtual PassOwnPtr<ImageDecoder> create() = 0; create 59 Source/platform/graphics/ImageFrameGenerator.h static PassRefPtr<ImageFrameGenerator> create(const SkISize& fullSize, PassRefPtr<SharedBuffer> data, bool allDataReceived, bool isMultiFrame = false) create 52 Source/platform/graphics/ImageFrameGeneratorTest.cpp m_data = SharedBuffer::create(); create 53 Source/platform/graphics/ImageFrameGeneratorTest.cpp m_generator = ImageFrameGenerator::create(fullSize(), m_data, false); create 89 Source/platform/graphics/ImageFrameGeneratorTest.cpp m_generator->setImageDecoderFactory(MockImageDecoderFactory::create(this, fullSize())); create 258 Source/platform/graphics/ImageFrameGeneratorTest.cpp m_generator = ImageFrameGenerator::create(fullSize(), m_data, false, true); create 60 Source/platform/graphics/ImageLayerChromiumTest.cpp m_nativeImage = NativeImageSkia::create(bitmap); create 116 Source/platform/graphics/ImageLayerChromiumTest.cpp RefPtr<Image> opaqueImage = TestImage::create(IntSize(100, 100), true /* opaque */); create 118 Source/platform/graphics/ImageLayerChromiumTest.cpp RefPtr<Image> nonOpaqueImage = TestImage::create(IntSize(100, 100), false /* opaque */); create 65 Source/platform/graphics/ImageSource.cpp m_decoder = DeferredImageDecoder::create(*data, m_alphaOption, m_gammaAndColorProfileOption); create 47 Source/platform/graphics/Pattern.h static PassRefPtr<Pattern> create(PassRefPtr<Image> tileImage, bool repeatX, bool repeatY) create 35 Source/platform/graphics/ThreadSafeDataTransport.cpp : m_readBuffer(SharedBuffer::create()) create 53 Source/platform/graphics/ThreadSafeDataTransport.cpp newBufferQueue.append(SharedBuffer::create(segment, length)); create 42 Source/platform/graphics/ThreadSafeDataTransportTest.cpp RefPtr<SharedBuffer> buffer = SharedBuffer::create(testString, sizeof(testString)); create 61 Source/platform/graphics/ThreadSafeDataTransportTest.cpp RefPtr<SharedBuffer> buffer1 = SharedBuffer::create(testString1, sizeof(testString1) - 1); create 63 Source/platform/graphics/ThreadSafeDataTransportTest.cpp RefPtr<SharedBuffer> buffer2 = SharedBuffer::create(testString2, sizeof(testString2) - 1); create 65 Source/platform/graphics/ThreadSafeDataTransportTest.cpp RefPtr<SharedBuffer> buffer3 = SharedBuffer::create(testString3, sizeof(testString3) - 1); create 32 Source/platform/graphics/filters/DistantLightSource.h static PassRefPtr<DistantLightSource> create(float azimuth, float elevation) create 37 Source/platform/graphics/filters/DistantLightSource.h virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const OVERRIDE create 42 Source/platform/graphics/filters/FEBlend.h static PassRefPtr<FEBlend> create(Filter*, BlendModeType); create 42 Source/platform/graphics/filters/FEColorMatrix.h static PassRefPtr<FEColorMatrix> create(Filter*, ColorMatrixType, const Vector<float>&); create 65 Source/platform/graphics/filters/FEComponentTransfer.h static PassRefPtr<FEComponentTransfer> create(Filter*, const ComponentTransferFunction& redFunc, const ComponentTransferFunction& greenFunc, create 44 Source/platform/graphics/filters/FEComposite.h static PassRefPtr<FEComposite> create(Filter*, const CompositeOperationType&, float, float, float, float); create 44 Source/platform/graphics/filters/FEConvolveMatrix.h static PassRefPtr<FEConvolveMatrix> create(Filter*, const IntSize&, create 34 Source/platform/graphics/filters/FEDiffuseLighting.h static PassRefPtr<FEDiffuseLighting> create(Filter*, const Color&, float, float, create 42 Source/platform/graphics/filters/FEDisplacementMap.h static PassRefPtr<FEDisplacementMap> create(Filter*, ChannelSelectorType xChannelSelector, ChannelSelectorType yChannelSelector, float); create 32 Source/platform/graphics/filters/FEDropShadow.h static PassRefPtr<FEDropShadow> create(Filter*, float, float, float, float, const Color&, float); create 34 Source/platform/graphics/filters/FEFlood.h static PassRefPtr<FEFlood> create(Filter* filter, const Color&, float); create 33 Source/platform/graphics/filters/FEGaussianBlur.h static PassRefPtr<FEGaussianBlur> create(Filter*, float, float); create 340 Source/platform/graphics/filters/FELighting.cpp RefPtr<LightSource> lightSource = m_lightSource->create(worldScale, originOffset); create 34 Source/platform/graphics/filters/FEMerge.h static PassRefPtr<FEMerge> create(Filter*); create 39 Source/platform/graphics/filters/FEMorphology.h static PassRefPtr<FEMorphology> create(Filter*, MorphologyOperatorType, float radiusX, float radiusY); create 33 Source/platform/graphics/filters/FEOffset.h static PassRefPtr<FEOffset> create(Filter*, float dx, float dy); create 32 Source/platform/graphics/filters/FESpecularLighting.h static PassRefPtr<FESpecularLighting> create(Filter*, const Color&, float, float, create 76 Source/platform/graphics/filters/FETile.cpp OwnPtr<ImageBuffer> tileImage = ImageBuffer::create(surface.release()); create 85 Source/platform/graphics/filters/FETile.cpp RefPtr<Pattern> pattern = Pattern::create(tileImage->copyImage(CopyBackingStore), true, true); create 33 Source/platform/graphics/filters/FETile.h static PassRefPtr<FETile> create(Filter* filter); create 41 Source/platform/graphics/filters/FETurbulence.h static PassRefPtr<FETurbulence> create(Filter*, TurbulenceType, float, float, int, float, bool); create 290 Source/platform/graphics/filters/FilterEffect.cpp m_imageBufferResult = ImageBuffer::create(surface.release()); create 431 Source/platform/graphics/filters/FilterEffect.cpp m_imageBufferResult = ImageBuffer::create(surface.release()); create 78 Source/platform/graphics/filters/FilterOperation.cpp return BasicColorMatrixFilterOperation::create(result, m_type); create 116 Source/platform/graphics/filters/FilterOperation.cpp return BasicComponentTransferFilterOperation::create(result, m_type); create 123 Source/platform/graphics/filters/FilterOperation.cpp return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative)); create 126 Source/platform/graphics/filters/FilterOperation.cpp return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative)); create 132 Source/platform/graphics/filters/FilterOperation.cpp return DropShadowFilterOperation::create( create 139 Source/platform/graphics/filters/FilterOperation.cpp return DropShadowFilterOperation::create( create 118 Source/platform/graphics/filters/FilterOperation.h static PassRefPtr<ReferenceFilterOperation> create(const String& url, const AtomicString& fragment) create 165 Source/platform/graphics/filters/FilterOperation.h static PassRefPtr<BasicColorMatrixFilterOperation> create(double amount, OperationType type) create 203 Source/platform/graphics/filters/FilterOperation.h static PassRefPtr<BasicComponentTransferFilterOperation> create(double amount, OperationType type) create 242 Source/platform/graphics/filters/FilterOperation.h static PassRefPtr<BlurFilterOperation> create(Length stdDeviation) create 276 Source/platform/graphics/filters/FilterOperation.h static PassRefPtr<DropShadowFilterOperation> create(const IntPoint& location, int stdDeviation, Color color) create 39 Source/platform/graphics/filters/FilterOperationsTest.cpp ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed))); create 51 Source/platform/graphics/filters/FilterOperationsTest.cpp ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3))); create 45 Source/platform/graphics/filters/ImageFilterBuilderTest.cpp RefPtr<ReferenceFilter> referenceFilter = ReferenceFilter::create(); create 53 Source/platform/graphics/filters/ImageFilterBuilderTest.cpp FEGaussianBlur::create(referenceFilter.get(), 3.0f, 3.0f); create 59 Source/platform/graphics/filters/ImageFilterBuilderTest.cpp FEBlend::create(referenceFilter.get(), FEBLEND_MODE_NORMAL); create 67 Source/platform/graphics/filters/ImageFilterBuilderTest.cpp RefPtr<FilterEffect> mergeEffect = FEMerge::create(referenceFilter.get()); create 71 Source/platform/graphics/filters/LightSource.h virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const = 0; create 32 Source/platform/graphics/filters/PointLightSource.h static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) create 37 Source/platform/graphics/filters/PointLightSource.h virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const OVERRIDE create 42 Source/platform/graphics/filters/ReferenceFilter.cpp , m_sourceGraphic(SourceGraphic::create(this)) create 46 Source/platform/graphics/filters/ReferenceFilter.h static PassRefPtr<ReferenceFilter> create() create 31 Source/platform/graphics/filters/SourceAlpha.h static PassRefPtr<SourceAlpha> create(Filter*); create 32 Source/platform/graphics/filters/SourceGraphic.h static PassRefPtr<SourceGraphic> create(Filter*); create 32 Source/platform/graphics/filters/SpotLightSource.h static PassRefPtr<SpotLightSource> create(const FloatPoint3D& position, create 38 Source/platform/graphics/filters/SpotLightSource.h virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const OVERRIDE create 82 Source/platform/graphics/gpu/DrawingBuffer.h static PassRefPtr<DrawingBuffer> create(blink::WebGraphicsContext3D*, const IntSize&, PreserveDrawingBuffer, PassRefPtr<ContextEvictionManager>); create 114 Source/platform/graphics/gpu/DrawingBufferTest.cpp m_drawingBuffer = DrawingBuffer::create(m_context.get(), IntSize(initialWidth, initialHeight), DrawingBuffer::Preserve, contextEvictionManager.release()); create 131 Source/platform/graphics/gpu/DrawingBufferTest.cpp OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(imageBufferSurface.release()); create 1553 Source/platform/graphics/gpu/WebGLImageConversion.cpp OwnPtr<ImageDecoder> decoder(ImageDecoder::create( create 107 Source/platform/graphics/media/MediaPlayer.h static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); create 77 Source/platform/graphics/skia/NativeImageSkia.h static PassRefPtr<NativeImageSkia> create() create 85 Source/platform/graphics/skia/NativeImageSkia.h static PassRefPtr<NativeImageSkia> create(const SkBitmap& bitmap) create 52 Source/platform/graphics/test/MockImageDecoder.h static PassOwnPtr<MockImageDecoder> create(MockImageDecoderClient* client) { return adoptPtr(new MockImageDecoder(client)); } create 118 Source/platform/graphics/test/MockImageDecoder.h static PassOwnPtr<MockImageDecoderFactory> create(MockImageDecoderClient* client, const SkISize& decodedSize) create 123 Source/platform/graphics/test/MockImageDecoder.h static PassOwnPtr<MockImageDecoderFactory> create(MockImageDecoderClient* client, const IntSize& decodedSize) create 128 Source/platform/graphics/test/MockImageDecoder.h virtual PassOwnPtr<ImageDecoder> create() OVERRIDE create 130 Source/platform/graphics/test/MockImageDecoder.h OwnPtr<MockImageDecoder> decoder = MockImageDecoder::create(m_client); create 34 Source/platform/heap/HeapTerminatedArray.h static PassPtr create(size_t capacity) create 365 Source/platform/heap/HeapTest.cpp OwnPtr<GlobalIntWrapperPersistent> globalPersistent = adoptPtr(new GlobalIntWrapperPersistent(IntWrapper::create(0x0ed0cabb))); create 368 Source/platform/heap/HeapTest.cpp wrapper = IntWrapper::create(0x0bbac0de); create 370 Source/platform/heap/HeapTest.cpp globalPersistent = adoptPtr(new GlobalIntWrapperPersistent(IntWrapper::create(0x0ed0cabb))); create 413 Source/platform/heap/HeapTest.cpp weakMap->add(static_cast<unsigned>(i), IntWrapper::create(0)); create 414 Source/platform/heap/HeapTest.cpp weakMap2.add(static_cast<unsigned>(i), IntWrapper::create(0)); create 490 Source/platform/heap/HeapTest.cpp : m_traceCounter(TraceCounter::create()) create 653 Source/platform/heap/HeapTest.cpp m_bars[i] = Bar::create(); create 671 Source/platform/heap/HeapTest.cpp m_intWrapper = IntWrapper::create(42); create 697 Source/platform/heap/HeapTest.cpp m_intWrapper = IntWrapper::create(23); create 1155 Source/platform/heap/HeapTest.cpp static UseMixin* create() create 1182 Source/platform/heap/HeapTest.cpp m_value = SimpleFinalizedObject::create(); create 1201 Source/platform/heap/HeapTest.cpp m_value = SimpleFinalizedObject::create(); create 1286 Source/platform/heap/HeapTest.cpp *m_wrapper = IntWrapper::create(42); create 1300 Source/platform/heap/HeapTest.cpp RefPtr<TransitionRefCounted> refCounted = TransitionRefCounted::create(); create 1308 Source/platform/heap/HeapTest.cpp RefPtrWillBePersistent<PointsBack> pointsBack1 = PointsBack::create(); create 1309 Source/platform/heap/HeapTest.cpp RefPtrWillBePersistent<PointsBack> pointsBack2 = PointsBack::create(); create 1310 Source/platform/heap/HeapTest.cpp RefPtrWillBePersistent<SuperClass> superClass = SuperClass::create(pointsBack1); create 1311 Source/platform/heap/HeapTest.cpp RefPtrWillBePersistent<SubClass> subClass = SubClass::create(pointsBack2); create 1382 Source/platform/heap/HeapTest.cpp DynamicallySizedObject* alloc32 = DynamicallySizedObject::create(32); create 1385 Source/platform/heap/HeapTest.cpp DynamicallySizedObject* alloc64 = DynamicallySizedObject::create(64); create 1420 Source/platform/heap/HeapTest.cpp Persistent<DynamicallySizedObject> bigArea = DynamicallySizedObject::create(big); create 1431 Source/platform/heap/HeapTest.cpp persistents[persistentCount++] = new Persistent<DynamicallySizedObject>(DynamicallySizedObject::create(size)); create 1440 Source/platform/heap/HeapTest.cpp DynamicallySizedObject* alloc32b(DynamicallySizedObject::create(32)); create 1443 Source/platform/heap/HeapTest.cpp DynamicallySizedObject* alloc64b(DynamicallySizedObject::create(64)); create 1475 Source/platform/heap/HeapTest.cpp Persistent<DynamicallySizedObject>* alloc = new Persistent<DynamicallySizedObject>(DynamicallySizedObject::create(big / 2)); create 1530 Source/platform/heap/HeapTest.cpp Persistent<TraceCounter> traceCounter = TraceCounter::create(); create 1536 Source/platform/heap/HeapTest.cpp Persistent<ClassWithMember> classWithMember = ClassWithMember::create(); create 1547 Source/platform/heap/HeapTest.cpp Persistent<SimpleFinalizedObject> finalized = SimpleFinalizedObject::create(); create 1560 Source/platform/heap/HeapTest.cpp HeapTestSubClass* t1 = HeapTestSubClass::create(); create 1561 Source/platform/heap/HeapTest.cpp HeapTestSubClass* t2 = HeapTestSubClass::create(); create 1562 Source/platform/heap/HeapTest.cpp HeapTestSuperClass* t3 = HeapTestSuperClass::create(); create 1582 Source/platform/heap/HeapTest.cpp Persistent<TraceCounter> generalHeapObject = TraceCounter::create(); create 1583 Source/platform/heap/HeapTest.cpp Persistent<TestTypedHeapClass> typedHeapObject = TestTypedHeapClass::create(); create 1606 Source/platform/heap/HeapTest.cpp h1 = Baz::create(Bar::create()); create 1609 Source/platform/heap/HeapTest.cpp h2 = Baz::create(Bar::create()); create 1627 Source/platform/heap/HeapTest.cpp Persistent<Bar> bar = Bar::create(); create 1631 Source/platform/heap/HeapTest.cpp Foo* foo = Foo::create(bar); create 1651 Source/platform/heap/HeapTest.cpp Bar* bar = Bar::create(); create 1653 Source/platform/heap/HeapTest.cpp Foo* foo = Foo::create(bar); create 1657 Source/platform/heap/HeapTest.cpp Foo* foo2 = Foo::create(foo); create 1674 Source/platform/heap/HeapTest.cpp Bars* bars = Bars::create(); create 1716 Source/platform/heap/HeapTest.cpp IntWrapper* one(IntWrapper::create(1)); create 1717 Source/platform/heap/HeapTest.cpp IntWrapper* anotherOne(IntWrapper::create(1)); create 1760 Source/platform/heap/HeapTest.cpp IntWrapper* iWrapper(IntWrapper::create(i)); create 1761 Source/platform/heap/HeapTest.cpp IntWrapper* iSquared(IntWrapper::create(i * i)); create 1793 Source/platform/heap/HeapTest.cpp Persistent<ConstructorAllocation> constructorAllocation = ConstructorAllocation::create(); create 1808 Source/platform/heap/HeapTest.cpp Persistent<LargeObject> object = LargeObject::create(); create 1833 Source/platform/heap/HeapTest.cpp object = LargeObject::create(); create 1886 Source/platform/heap/HeapTest.cpp m_deque1.append(ShouldBeTraced(IntWrapper::create(1))); create 1887 Source/platform/heap/HeapTest.cpp m_vector1.append(ShouldBeTraced(IntWrapper::create(2))); create 1888 Source/platform/heap/HeapTest.cpp m_deque2.append(IntWrapper::create(3)); create 1889 Source/platform/heap/HeapTest.cpp m_vector2.append(IntWrapper::create(4)); create 1890 Source/platform/heap/HeapTest.cpp m_hashSet.add(IntWrapper::create(5)); create 1891 Source/platform/heap/HeapTest.cpp m_hashMap.add(this, IntWrapper::create(6)); create 1892 Source/platform/heap/HeapTest.cpp m_listHashSet.add(IntWrapper::create(7)); create 1930 Source/platform/heap/HeapTest.cpp IntWrapper* val = IntWrapper::create(1); create 1939 Source/platform/heap/HeapTest.cpp IntWrapper* one = IntWrapper::create(1); create 1940 Source/platform/heap/HeapTest.cpp IntWrapper* two = IntWrapper::create(2); create 1941 Source/platform/heap/HeapTest.cpp IntWrapper* three = IntWrapper::create(3); create 1942 Source/platform/heap/HeapTest.cpp IntWrapper* four = IntWrapper::create(4); create 1943 Source/platform/heap/HeapTest.cpp IntWrapper* five = IntWrapper::create(5); create 1944 Source/platform/heap/HeapTest.cpp IntWrapper* six = IntWrapper::create(6); create 2030 Source/platform/heap/HeapTest.cpp Persistent<Container> container = Container::create(); create 2034 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> one(IntWrapper::create(1)); create 2035 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> two(IntWrapper::create(2)); create 2036 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> oneB(IntWrapper::create(1)); create 2037 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> twoB(IntWrapper::create(2)); create 2038 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> oneC(IntWrapper::create(1)); create 2039 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> oneD(IntWrapper::create(1)); create 2041 Source/platform/heap/HeapTest.cpp IntWrapper* three(IntWrapper::create(3)); create 2042 Source/platform/heap/HeapTest.cpp IntWrapper* four(IntWrapper::create(4)); create 2043 Source/platform/heap/HeapTest.cpp IntWrapper* threeB(IntWrapper::create(3)); create 2044 Source/platform/heap/HeapTest.cpp IntWrapper* fourB(IntWrapper::create(4)); create 2045 Source/platform/heap/HeapTest.cpp IntWrapper* threeC(IntWrapper::create(3)); create 2046 Source/platform/heap/HeapTest.cpp IntWrapper* fourC(IntWrapper::create(4)); create 2047 Source/platform/heap/HeapTest.cpp IntWrapper* fiveC(IntWrapper::create(5)); create 2048 Source/platform/heap/HeapTest.cpp IntWrapper* threeD(IntWrapper::create(3)); create 2049 Source/platform/heap/HeapTest.cpp IntWrapper* fourD(IntWrapper::create(4)); create 2050 Source/platform/heap/HeapTest.cpp IntWrapper* fiveD(IntWrapper::create(5)); create 2249 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> two = IntWrapper::create(2); create 2251 Source/platform/heap/HeapTest.cpp keepNumbersAlive.append(IntWrapper::create(103)); create 2252 Source/platform/heap/HeapTest.cpp keepNumbersAlive.append(IntWrapper::create(10)); create 2255 Source/platform/heap/HeapTest.cpp weakStrong->add(IntWrapper::create(1), two); create 2256 Source/platform/heap/HeapTest.cpp strongWeak->add(two, IntWrapper::create(1)); create 2257 Source/platform/heap/HeapTest.cpp weakWeak->add(two, IntWrapper::create(42)); create 2258 Source/platform/heap/HeapTest.cpp weakWeak->add(IntWrapper::create(42), two); create 2259 Source/platform/heap/HeapTest.cpp weakSet->add(IntWrapper::create(0)); create 2339 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> luck(IntWrapper::create(103)); create 2350 Source/platform/heap/HeapTest.cpp stackMap.add(IntWrapper::create(42), ThingWithDestructor(1729)); create 2352 Source/platform/heap/HeapTest.cpp stackRefMap.add(IntWrapper::create(42), RefCountedAndGarbageCollected::create()); create 2353 Source/platform/heap/HeapTest.cpp stackRefMap.add(luck, RefCountedAndGarbageCollected::create()); create 2373 Source/platform/heap/HeapTest.cpp map->add(IntWrapper::create(42), ThingWithDestructor(1729)); create 2375 Source/platform/heap/HeapTest.cpp refMap->add(IntWrapper::create(42), RefCountedAndGarbageCollected::create()); create 2376 Source/platform/heap/HeapTest.cpp refMap->add(luck, RefCountedAndGarbageCollected::create()); create 2480 Source/platform/heap/HeapTest.cpp Persistent<IntWrapper> two = IntWrapper::create(2); create 2482 Source/platform/heap/HeapTest.cpp weakStrong->add(PairWeakStrong(IntWrapper::create(1), &*two)); create 2484 Source/platform/heap/HeapTest.cpp strongWeak->add(PairStrongWeak(&*two, IntWrapper::create(1))); create 2486 Source/platform/heap/HeapTest.cpp weakUnwrapped->add(PairWeakUnwrapped(IntWrapper::create(1), 2)); create 2488 Source/platform/heap/HeapTest.cpp unwrappedWeak->add(PairUnwrappedWeak(2, IntWrapper::create(1))); create 2537 Source/platform/heap/HeapTest.cpp IntWrapper* wrapped = IntWrapper::create(i); create 2538 Source/platform/heap/HeapTest.cpp IntWrapper* wrapped2 = IntWrapper::create(i + 1); create 2636 Source/platform/heap/HeapTest.cpp IntWrapper* wrapped = IntWrapper::create(i); create 2680 Source/platform/heap/HeapTest.cpp RefPtr<RefCountedAndGarbageCollected> refPtr1 = RefCountedAndGarbageCollected::create(); create 2681 Source/platform/heap/HeapTest.cpp RefPtr<RefCountedAndGarbageCollected> refPtr2 = RefCountedAndGarbageCollected::create(); create 2711 Source/platform/heap/HeapTest.cpp RefPtr<RefCountedAndGarbageCollected> object1 = RefCountedAndGarbageCollected::create(); create 2712 Source/platform/heap/HeapTest.cpp RefPtr<RefCountedAndGarbageCollected2> object2 = RefCountedAndGarbageCollected2::create(); create 2762 Source/platform/heap/HeapTest.cpp Persistent<Bar> h1 = Bar::create(); create 2768 Source/platform/heap/HeapTest.cpp Bar* h2 = Bar::create(); create 2769 Source/platform/heap/HeapTest.cpp Bar* h3 = Bar::create(); create 2770 Source/platform/heap/HeapTest.cpp h4 = Weak::create(h2, h3); create 2771 Source/platform/heap/HeapTest.cpp h5 = WithWeakMember::create(h2, h3); create 2801 Source/platform/heap/HeapTest.cpp Observable* foo = Observable::create(Bar::create()); create 2803 Source/platform/heap/HeapTest.cpp o = FinalizationObserver<Observable>::create(foo); create 2812 Source/platform/heap/HeapTest.cpp Observable* foo = Observable::create(Bar::create()); create 2826 Source/platform/heap/HeapTest.cpp Persistent<Bar> barPersistent = Bar::create(); create 2827 Source/platform/heap/HeapTest.cpp Persistent<Foo> fooPersistent = Foo::create(barPersistent); create 2844 Source/platform/heap/HeapTest.cpp SimpleObject* object = SimpleObject::create(); create 2849 Source/platform/heap/HeapTest.cpp LargeObject* largeObject = LargeObject::create(); create 2900 Source/platform/heap/HeapTest.cpp Persistent<OffHeapContainer> container = OffHeapContainer::create(); create 2924 Source/platform/heap/HeapTest.cpp IntWrapper* one(IntWrapper::create(1)); create 2925 Source/platform/heap/HeapTest.cpp IntWrapper* two(IntWrapper::create(2)); create 2926 Source/platform/heap/HeapTest.cpp IntWrapper* three(IntWrapper::create(3)); create 2927 Source/platform/heap/HeapTest.cpp IntWrapper* four(IntWrapper::create(4)); create 2928 Source/platform/heap/HeapTest.cpp IntWrapper* five(IntWrapper::create(5)); create 2929 Source/platform/heap/HeapTest.cpp IntWrapper* six(IntWrapper::create(6)); create 2978 Source/platform/heap/HeapTest.cpp it->value.append(IntWrapper::create(42)); create 2996 Source/platform/heap/HeapTest.cpp Persistent<UseMixin> usemixin = UseMixin::create(); create 3007 Source/platform/heap/HeapTest.cpp weakMap.add(UseMixin::create()); create 3026 Source/platform/heap/HeapTest.cpp it->value.add(IntWrapper::create(42)); create 3048 Source/platform/heap/HeapTest.cpp it->append(IntWrapper::create(42)); create 3122 Source/platform/heap/HeapTest.cpp builder.append(TerminatedArrayItem(IntWrapper::create(i))); create 3136 Source/platform/heap/HeapTest.cpp builder.append(TerminatedArrayItem(IntWrapper::create(prefixSize + i))); create 3173 Source/platform/heap/HeapTest.cpp stack->push(TerminatedArrayItem(IntWrapper::create(i))); create 76 Source/platform/image-decoders/ImageDecoder.h static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption); create 79 Source/platform/image-decoders/ImageDecoder.h static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedSize); create 119 Source/platform/image-decoders/ImageFrame.cpp return NativeImageSkia::create(m_bitmap); create 200 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); create 226 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); create 272 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), i); create 286 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), i); create 315 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); create 350 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); create 397 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), partialSize); create 443 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), partialSize); create 174 Source/platform/image-decoders/ico/ICOImageDecoder.cpp RefPtr<SharedBuffer> pngData(SharedBuffer::create(&m_data->data()[dirEntry.m_imageOffset], m_data->size() - dirEntry.m_imageOffset)); create 347 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); create 394 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), fullData->size() - 1); create 412 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), partialSize); create 440 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), i); create 453 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), i); create 481 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); create 512 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), partialSize); create 556 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(fullData->data(), partialSize); create 138 Source/platform/mediastream/MediaStreamCenter.cpp return MediaStreamWebAudioSource::create(adoptPtr(m_private->createWebAudioSourceFromMediaStreamTrack(track))); create 58 Source/platform/mediastream/MediaStreamComponent.h static PassRefPtr<MediaStreamComponent> create(PassRefPtr<MediaStreamSource>); create 59 Source/platform/mediastream/MediaStreamComponent.h static PassRefPtr<MediaStreamComponent> create(const String& id, PassRefPtr<MediaStreamSource>); create 109 Source/platform/mediastream/MediaStreamDescriptor.cpp m_audioComponents.append(MediaStreamComponent::create(audioSources[i])); create 112 Source/platform/mediastream/MediaStreamDescriptor.cpp m_videoComponents.append(MediaStreamComponent::create(videoSources[i])); create 60 Source/platform/mediastream/MediaStreamDescriptor.h static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources); create 62 Source/platform/mediastream/MediaStreamDescriptor.h static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamComponentVector& audioComponents, const MediaStreamComponentVector& videoComponents); create 64 Source/platform/mediastream/MediaStreamDescriptor.h static PassRefPtr<MediaStreamDescriptor> create(const String& id, const MediaStreamComponentVector& audioComponents, const MediaStreamComponentVector& videoComponents); create 71 Source/platform/mediastream/MediaStreamSource.h static PassRefPtr<MediaStreamSource> create(const String& id, Type, const String& name, ReadyState = ReadyStateLive, bool requiresConsumer = false); create 49 Source/platform/mediastream/MediaStreamWebAudioSource.h static PassOwnPtr<MediaStreamWebAudioSource> create(PassOwnPtr<blink::WebAudioSourceProvider> provider) { return adoptPtr(new MediaStreamWebAudioSource(provider)); } create 44 Source/platform/mediastream/RTCConfiguration.h static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& username, const String& credential) create 68 Source/platform/mediastream/RTCConfiguration.h static PassRefPtr<RTCConfiguration> create() { return adoptRef(new RTCConfiguration()); } create 59 Source/platform/mhtml/ArchiveResource.cpp return create(data, url, response.mimeType(), response.textEncodingName(), String(), response); create 42 Source/platform/mhtml/ArchiveResource.h static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KURL&, const ResourceResponse&); create 43 Source/platform/mhtml/ArchiveResource.h static PassRefPtr<ArchiveResource> create(PassRefPtr<SharedBuffer>, const KURL&, create 150 Source/platform/mhtml/MHTMLArchive.cpp RefPtr<SharedBuffer> mhtmlData = SharedBuffer::create(); create 50 Source/platform/mhtml/MHTMLArchive.h static PassRefPtr<MHTMLArchive> create(); create 51 Source/platform/mhtml/MHTMLArchive.h static PassRefPtr<MHTMLArchive> create(const KURL&, SharedBuffer*); create 210 Source/platform/mhtml/MHTMLParser.cpp RefPtr<MHTMLArchive> archive = MHTMLArchive::create(); create 273 Source/platform/mhtml/MHTMLParser.cpp RefPtr<MHTMLArchive> subframe = MHTMLArchive::create(); create 287 Source/platform/mhtml/MHTMLParser.cpp RefPtr<SharedBuffer> content = SharedBuffer::create(); create 364 Source/platform/mhtml/MHTMLParser.cpp return ArchiveResource::create(contentBuffer, location, AtomicString(mimeHeader.contentType()), AtomicString(mimeHeader.charset()), String()); create 59 Source/platform/network/FormData.cpp RefPtr<FormData> result = create(); create 66 Source/platform/network/FormData.cpp RefPtr<FormData> result = create(); create 73 Source/platform/network/FormData.cpp RefPtr<FormData> result = create(); create 85 Source/platform/network/FormData.cpp RefPtr<FormData> formData(create()); create 95 Source/platform/network/FormData.h static PassRefPtr<FormData> create(); create 96 Source/platform/network/FormData.h static PassRefPtr<FormData> create(const void*, size_t); create 97 Source/platform/network/FormData.h static PassRefPtr<FormData> create(const CString&); create 98 Source/platform/network/FormData.h static PassRefPtr<FormData> create(const Vector<char>&); create 41 Source/platform/network/HTTPRequest.cpp RefPtr<HTTPRequest> request = HTTPRequest::create(); create 47 Source/platform/network/HTTPRequest.h static PassRefPtr<HTTPRequest> create() { return adoptRef(new HTTPRequest()); } create 48 Source/platform/network/HTTPRequest.h static PassRefPtr<HTTPRequest> create(const String& requestMethod, const KURL& url, HTTPVersion version) { return adoptRef(new HTTPRequest(requestMethod, url, version)); } create 39 Source/platform/network/ResourceLoadTiming.h static PassRefPtr<ResourceLoadTiming> create() create 46 Source/platform/network/ResourceLoadTiming.h RefPtr<ResourceLoadTiming> timing = create(); create 555 Source/platform/network/ResourceResponse.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 558 Source/platform/network/ResourceResponse.cpp m_downloadedFileHandle = BlobDataHandle::create(blobData.release(), -1); create 44 Source/platform/network/SocketStreamError.h static PassRefPtr<SocketStreamError> create(int errorCode, const String& errorMessage) create 171 Source/platform/network/SocketStreamHandle.cpp m_internal = SocketStreamHandleInternal::create(this); create 50 Source/platform/network/SocketStreamHandle.h static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } create 50 Source/platform/network/SocketStreamHandleInternal.h static PassOwnPtr<SocketStreamHandleInternal> create(SocketStreamHandle* handle) create 47 Source/platform/network/WebSocketHandshakeRequest.h static PassRefPtr<WebSocketHandshakeRequest> create(const KURL& url) { return adoptRef(new WebSocketHandshakeRequest(url)); } create 48 Source/platform/network/WebSocketHandshakeRequest.h static PassRefPtr<WebSocketHandshakeRequest> create() { return adoptRef(new WebSocketHandshakeRequest); } create 49 Source/platform/network/WebSocketHandshakeRequest.h static PassRefPtr<WebSocketHandshakeRequest> create(const WebSocketHandshakeRequest& request) { return adoptRef(new WebSocketHandshakeRequest(request)); } create 53 Source/platform/plugins/PluginData.h static PassRefPtr<PluginData> create(const Page* page) { return adoptRef(new PluginData(page)); } create 51 Source/platform/scroll/ScrollAnimator.h static PassOwnPtr<ScrollAnimator> create(ScrollableArea*); create 103 Source/platform/scroll/ScrollView.cpp return Scrollbar::create(this, orientation, RegularScrollbar); create 93 Source/platform/scroll/ScrollableArea.cpp m_scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this)); create 50 Source/platform/scroll/Scrollbar.h static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize); create 46 Source/platform/speech/PlatformSpeechSynthesisUtterance.h static PassRefPtr<PlatformSpeechSynthesisUtterance> create(PlatformSpeechSynthesisUtteranceClient*); create 38 Source/platform/speech/PlatformSpeechSynthesisVoice.h static PassRefPtr<PlatformSpeechSynthesisVoice> create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault); create 39 Source/platform/speech/PlatformSpeechSynthesisVoice.h static PassRefPtr<PlatformSpeechSynthesisVoice> create(); create 64 Source/platform/speech/PlatformSpeechSynthesizer.h static PassOwnPtr<PlatformSpeechSynthesizer> create(PlatformSpeechSynthesizerClient*); create 42 Source/platform/testing/ArenaTestHelpers.h static PassRefPtr<TrackedAllocator> create() create 80 Source/platform/text/BidiContext.cpp return BidiContext::create(newLevel, context->dir(), context->override(), context->source(), parent); create 42 Source/platform/text/BidiContext.h static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override = false, BidiEmbeddingSource = FromStyleOrDOM, BidiContext* parent = 0); create 143 Source/platform/text/BidiResolver.h context = BidiContext::create(textDirection == LTR ? 0 : 1, direction, isOverride); create 523 Source/platform/text/BidiResolver.h toContext = BidiContext::create(level, direction, override, embedding.source(), toContext.get()); create 49 Source/platform/text/LocaleICU.cpp return LocaleICU::create(locale.utf8().data()); create 49 Source/platform/text/LocaleICU.h static PassOwnPtr<LocaleICU> create(const char* localeString); create 50 Source/platform/text/LocaleMac.h static PassOwnPtr<LocaleMac> create(const String&); create 51 Source/platform/text/LocaleMac.h static PassOwnPtr<LocaleMac> create(NSLocale*); create 154 Source/platform/text/LocaleWin.cpp return LocaleWin::create(LCIDFromLocale(locale, defaultsForLocale), defaultsForLocale); create 47 Source/platform/text/LocaleWin.h static PassOwnPtr<LocaleWin> create(LCID, bool defaultsForLocale); create 184 Source/platform/text/PlatformLocale.cpp static Locale* locale = Locale::create(defaultLanguage()).leakPtr(); create 40 Source/platform/text/PlatformLocale.h static PassOwnPtr<Locale> create(const String& localeIdentifier); create 34 Source/platform/transforms/IdentityTransformOperation.h static PassRefPtr<IdentityTransformOperation> create() create 66 Source/platform/transforms/InterpolatedTransformOperation.cpp fromOperations.operations().append(IdentityTransformOperation::create()); create 69 Source/platform/transforms/InterpolatedTransformOperation.cpp return InterpolatedTransformOperation::create(thisOperations, fromOperations, progress); create 42 Source/platform/transforms/InterpolatedTransformOperation.h static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) create 53 Source/platform/transforms/Matrix3DTransformOperation.cpp return Matrix3DTransformOperation::create(toT); create 35 Source/platform/transforms/Matrix3DTransformOperation.h static PassRefPtr<Matrix3DTransformOperation> create(const TransformationMatrix& matrix) create 49 Source/platform/transforms/MatrixTransformOperation.cpp return MatrixTransformOperation::create(toT.a(), toT.b(), toT.c(), toT.d(), toT.e(), toT.f()); create 35 Source/platform/transforms/MatrixTransformOperation.h static PassRefPtr<MatrixTransformOperation> create(double a, double b, double c, double d, double e, double f) create 40 Source/platform/transforms/MatrixTransformOperation.h static PassRefPtr<MatrixTransformOperation> create(const TransformationMatrix& t) create 43 Source/platform/transforms/PerspectiveTransformOperation.cpp return PerspectiveTransformOperation::create(clampToPositiveInteger(p)); create 58 Source/platform/transforms/PerspectiveTransformOperation.cpp return PerspectiveTransformOperation::create(clampToPositiveInteger(val)); create 60 Source/platform/transforms/PerspectiveTransformOperation.cpp return PerspectiveTransformOperation::create(0); create 35 Source/platform/transforms/PerspectiveTransformOperation.h static PassRefPtr<PerspectiveTransformOperation> create(double p) create 39 Source/platform/transforms/RotateTransformOperation.cpp return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type); create 48 Source/platform/transforms/RotateTransformOperation.cpp return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x, create 93 Source/platform/transforms/RotateTransformOperation.cpp return RotateTransformOperation::create(x, y, z, angle, Rotate3D); create 34 Source/platform/transforms/RotateTransformOperation.h static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) create 39 Source/platform/transforms/RotateTransformOperation.h static PassRefPtr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) create 35 Source/platform/transforms/ScaleTransformOperation.cpp return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress), create 43 Source/platform/transforms/ScaleTransformOperation.cpp return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress), create 34 Source/platform/transforms/ScaleTransformOperation.h static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) create 39 Source/platform/transforms/ScaleTransformOperation.h static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) create 35 Source/platform/transforms/SkewTransformOperation.cpp return SkewTransformOperation::create(WebCore::blend(m_angleX, 0.0, progress), WebCore::blend(m_angleY, 0.0, progress), m_type); create 40 Source/platform/transforms/SkewTransformOperation.cpp return SkewTransformOperation::create(WebCore::blend(fromAngleX, m_angleX, progress), WebCore::blend(fromAngleY, m_angleY, progress), m_type); create 34 Source/platform/transforms/SkewTransformOperation.h static PassRefPtr<SkewTransformOperation> create(double angleX, double angleY, OperationType type) create 36 Source/platform/transforms/TransformOperations.cpp m_operations.append(IdentityTransformOperation::create()); create 82 Source/platform/transforms/TransformOperations.cpp RefPtr<TransformOperation> identityOperation = IdentityTransformOperation::create(); create 96 Source/platform/transforms/TransformOperations.cpp result.operations().append(InterpolatedTransformOperation::create(from, *this, progress)); create 34 Source/platform/transforms/TranslateTransformOperation.cpp return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), WebCore::blend(0., m_z, progress), m_type); create 40 Source/platform/transforms/TranslateTransformOperation.cpp return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), WebCore::blend(fromZ, m_z, progress), m_type); create 36 Source/platform/transforms/TranslateTransformOperation.h static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) create 41 Source/platform/transforms/TranslateTransformOperation.h static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, double tz, OperationType type) create 87 Source/platform/weborigin/DatabaseIdentifier.cpp return SecurityOrigin::create(url); create 70 Source/platform/weborigin/DatabaseIdentifierTest.cpp RefPtr<SecurityOrigin> origin = SecurityOrigin::create(cases[i].protocol, cases[i].host, cases[i].port); create 192 Source/platform/weborigin/DatabaseIdentifierTest.cpp RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", cases[i].hostname, 80); create 295 Source/platform/weborigin/SecurityOrigin.cpp RefPtr<SecurityOrigin> targetOrigin = SecurityOrigin::create(url); create 465 Source/platform/weborigin/SecurityOrigin.cpp return SecurityOrigin::create(KURL(KURL(), originString)); create 473 Source/platform/weborigin/SecurityOrigin.cpp return create(KURL(KURL(), protocol + "://" + host + ":" + String::number(port) + "/")); create 49 Source/platform/weborigin/SecurityOrigin.h static PassRefPtr<SecurityOrigin> create(const KURL&); create 53 Source/platform/weborigin/SecurityOrigin.h static PassRefPtr<SecurityOrigin> create(const String& protocol, const String& host, int port); create 48 Source/platform/weborigin/SecurityOriginTest.cpp RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", "example.com", ports[i]); create 58 Source/platform/weborigin/SecurityOriginTest.cpp RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", "example.com", ports[i]); create 109 Source/platform/weborigin/SecurityPolicy.cpp RefPtr<SecurityOrigin> targetOrigin = SecurityOrigin::create(url); create 129 Source/web/AssociatedURLLoader.cpp static PassOwnPtr<ClientAdapter> create(AssociatedURLLoader*, WebURLLoaderClient*, const WebURLLoaderOptions&); create 342 Source/web/AssociatedURLLoader.cpp m_clientAdapter = ClientAdapter::create(this, m_client, m_options); create 354 Source/web/AssociatedURLLoader.cpp m_loader = DocumentThreadableLoader::create(webcoreDocument, m_clientAdapter.get(), webcoreRequest, options); create 613 Source/web/ChromeClientImpl.cpp return DateTimeChooserImpl::create(this, pickerClient, parameters); create 615 Source/web/ChromeClientImpl.cpp return ExternalDateTimeChooser::create(this, m_webView->client(), pickerClient, parameters); create 212 Source/web/ChromeClientImpl.h static PassOwnPtr<NavigatorContentUtilsClientImpl> create(WebViewImpl*); create 41 Source/web/DatabaseClientImpl.h static PassOwnPtr<DatabaseClientImpl> create(); create 56 Source/web/DateTimeChooserImpl.cpp , m_locale(WebCore::Locale::create(parameters.locale)) create 49 Source/web/DateTimeChooserImpl.h static PassRefPtr<DateTimeChooserImpl> create(ChromeClientImpl*, WebCore::DateTimeChooserClient*, const WebCore::DateTimeChooserParameters&); create 44 Source/web/ExternalDateTimeChooser.h static PassRefPtr<ExternalDateTimeChooser> create(ChromeClientImpl*, WebViewClient*, WebCore::DateTimeChooserClient*, const WebCore::DateTimeChooserParameters&); create 577 Source/web/FrameLoaderClientImpl.cpp RefPtr<WebDataSourceImpl> ds = WebDataSourceImpl::create(frame, request, data); create 651 Source/web/FrameLoaderClientImpl.cpp WebPluginContainerImpl::create(element, webPlugin); create 48 Source/web/FullscreenController.h static PassOwnPtr<FullscreenController> create(WebViewImpl*); create 43 Source/web/IDBFactoryBackendProxy.h static PassRefPtr<WebCore::IDBFactoryBackendInterface> create(); create 72 Source/web/InspectorFrontendClientImpl.cpp m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); create 54 Source/web/LinkHighlight.h static PassOwnPtr<LinkHighlight> create(WebCore::Node*, WebViewImpl*); create 41 Source/web/LocalFileSystemClient.h static PassOwnPtr<FileSystemClient> create(); create 47 Source/web/MIDIClientProxy.h static PassOwnPtr<MIDIClientProxy> create(WebMIDIClient* client) create 116 Source/web/PageOverlay.cpp m_layerClient = OverlayGraphicsLayerClientImpl::create(m_overlay); create 117 Source/web/PageOverlay.cpp m_layer = GraphicsLayer::create(m_viewImpl->graphicsLayerFactory(), m_layerClient.get()); create 49 Source/web/PageOverlay.h static PassOwnPtr<PageOverlay> create(WebViewImpl*, WebPageOverlay*); create 57 Source/web/PageOverlayList.cpp OwnPtr<PageOverlay> pageOverlay = PageOverlay::create(m_viewImpl, overlay); create 48 Source/web/PageOverlayList.h static PassOwnPtr<PageOverlayList> create(WebViewImpl*); create 95 Source/web/PopupContainer.cpp : m_listBox(PopupListBox::create(client, deviceSupportsTouch)) create 51 Source/web/PopupContainer.h static PassRefPtr<PopupContainer> create(WebCore::PopupMenuClient*, bool deviceSupportsTouch); create 91 Source/web/PopupListBox.h static PassRefPtr<PopupListBox> create(WebCore::PopupMenuClient* client, bool deviceSupportsTouch) create 62 Source/web/PopupMenuChromium.cpp m_popup = PopupContainer::create(m_popupClient, deviceSupportsTouch); create 43 Source/web/ServiceWorkerGlobalScopeClientImpl.h static PassOwnPtr<WebCore::ServiceWorkerGlobalScopeClient> create(PassOwnPtr<WebServiceWorkerContextClient>); create 66 Source/web/ServiceWorkerGlobalScopeProxy.cpp RefPtr<WaitUntilObserver> observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Install, eventID); create 68 Source/web/ServiceWorkerGlobalScopeProxy.cpp m_workerGlobalScope->dispatchEvent(InstallEvent::create(EventTypeNames::install, EventInit(), observer)); create 75 Source/web/ServiceWorkerGlobalScopeProxy.cpp RefPtr<WaitUntilObserver> observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Activate, eventID); create 77 Source/web/ServiceWorkerGlobalScopeProxy.cpp m_workerGlobalScope->dispatchEvent(InstallPhaseEvent::create(EventTypeNames::activate, EventInit(), observer)); create 84 Source/web/ServiceWorkerGlobalScopeProxy.cpp RefPtr<RespondWithObserver> observer = RespondWithObserver::create(m_workerGlobalScope, eventID); create 85 Source/web/ServiceWorkerGlobalScopeProxy.cpp m_workerGlobalScope->dispatchEvent(FetchEvent::create(observer)); create 95 Source/web/ServiceWorkerGlobalScopeProxy.cpp m_workerGlobalScope->dispatchEvent(MessageEvent::create(ports.release(), value)); create 101 Source/web/ServiceWorkerGlobalScopeProxy.cpp m_workerGlobalScope->dispatchEvent(Event::create(EventTypeNames::sync)); create 65 Source/web/ServiceWorkerGlobalScopeProxy.h static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImpl&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&); create 46 Source/web/SharedWorkerRepositoryClientImpl.h static PassOwnPtr<SharedWorkerRepositoryClientImpl> create(WebSharedWorkerRepositoryClient* client) create 56 Source/web/SpeechInputClientImpl.h static PassOwnPtr<SpeechInputClientImpl> create(WebViewClient*); create 128 Source/web/SpeechRecognitionClientProxy.cpp recognition->didReceiveError(SpeechRecognitionError::create(errorCode, message)); create 46 Source/web/SpeechRecognitionClientProxy.h static PassOwnPtr<SpeechRecognitionClientProxy> create(WebSpeechRecognizer*); create 70 Source/web/StorageQuotaClientImpl.cpp OwnPtr<StorageQuotaCallbacks> callbacks = DeprecatedStorageQuotaCallbacksImpl::create(successCallback, errorCallback); create 74 Source/web/StorageQuotaClientImpl.cpp executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError)); create 82 Source/web/StorageQuotaClientImpl.cpp RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(executionContext); create 88 Source/web/StorageQuotaClientImpl.cpp OwnPtr<StorageQuotaCallbacks> callbacks = StorageQuotaCallbacksImpl::create(resolver, executionContext); create 92 Source/web/StorageQuotaClientImpl.cpp resolver->reject(DOMError::create(NotSupportedError)); create 41 Source/web/StorageQuotaClientImpl.h static PassOwnPtr<StorageQuotaClientImpl> create(); create 57 Source/web/TextFinder.h static PassOwnPtr<TextFinder> create(WebFrameImpl& ownerFrame); create 44 Source/web/ValidationMessageClientImpl.h static PassOwnPtr<ValidationMessageClientImpl> create(WebViewImpl&); create 890 Source/web/WebAXObject.cpp return WebString(CSSPrimitiveValue::create(renderStyle->display())->getStringValue()); create 46 Source/web/WebBlob.cpp OwnPtr<BlobData> blobData = BlobData::create(); create 48 Source/web/WebBlob.cpp RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); create 45 Source/web/WebDOMError.cpp return WebDOMError(DOMError::create(name, message)); create 67 Source/web/WebDOMFileSystem.cpp RefPtrWillBeRawPtr<DOMFileSystem> domFileSystem = DOMFileSystem::create(toWebFrameImpl(frame)->frame()->document(), name, static_cast<WebCore::FileSystemType>(type), rootURL); create 127 Source/web/WebDOMFileSystem.cpp return toV8(DirectoryEntry::create(m_private.get(), path), v8::Handle<v8::Object>(), toIsolate(m_private->executionContext())); create 129 Source/web/WebDOMFileSystem.cpp return toV8(FileEntry::create(m_private.get(), path), v8::Handle<v8::Object>(), toIsolate(m_private->executionContext())); create 42 Source/web/WebDOMProgressEvent.cpp : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total)) create 44 Source/web/WebDOMResourceProgressEvent.cpp assign(ResourceProgressEvent::create(type, lengthIsComputable, loaded, total, url)); create 50 Source/web/WebDataSourceImpl.h static PassRefPtr<WebDataSourceImpl> create(WebCore::LocalFrame*, const WebCore::ResourceRequest&, const WebCore::SubstituteData&); create 213 Source/web/WebDocument.cpp RefPtrWillBeRawPtr<StyleSheetContents> parsedSheet = StyleSheetContents::create(CSSParserContext(*document.get(), 0)); create 52 Source/web/WebDragData.cpp m_private = DataObject::create(); create 161 Source/web/WebDragData.cpp DraggedIsolatedFileSystem::provideTo(*m_private.get(), DraggedIsolatedFileSystem::supplementName(), DraggedIsolatedFileSystem::create(filesystemId)); create 98 Source/web/WebEmbeddedWorkerImpl.cpp Loader() : m_scriptLoader(WorkerScriptLoader::create()) create 194 Source/web/WebEmbeddedWorkerImpl.cpp m_webView = WebView::create(0); create 195 Source/web/WebEmbeddedWorkerImpl.cpp m_mainFrame = WebFrame::create(this); create 204 Source/web/WebEmbeddedWorkerImpl.cpp RefPtr<SharedBuffer> buffer(SharedBuffer::create(content.data(), length)); create 223 Source/web/WebEmbeddedWorkerImpl.cpp m_mainScriptLoader = Loader::create(); create 249 Source/web/WebEmbeddedWorkerImpl.cpp OwnPtr<WorkerClients> workerClients = WorkerClients::create(); create 251 Source/web/WebEmbeddedWorkerImpl.cpp provideServiceWorkerGlobalScopeClientToWorker(workerClients.get(), ServiceWorkerGlobalScopeClientImpl::create(m_workerContextClient.release())); create 254 Source/web/WebEmbeddedWorkerImpl.cpp WorkerThreadStartupData::create( create 266 Source/web/WebEmbeddedWorkerImpl.cpp m_workerGlobalScopeProxy = ServiceWorkerGlobalScopeProxy::create(*this, *toWebFrameImpl(m_mainFrame)->frame()->document(), *contextClient); create 267 Source/web/WebEmbeddedWorkerImpl.cpp m_loaderProxy = LoaderProxy::create(*this); create 269 Source/web/WebEmbeddedWorkerImpl.cpp m_workerThread = ServiceWorkerThread::create(*m_loaderProxy, *m_workerGlobalScopeProxy, startupData.release()); create 535 Source/web/WebFrameImpl.cpp m_sharedWorkerRepositoryClient = SharedWorkerRepositoryClientImpl::create(client); create 1109 Source/web/WebFrameImpl.cpp return PlainTextRange::create(*editable, *range.get()).start(); create 1220 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> markerRange = Range::create(caretRange->ownerDocument(), caretRange->startContainer(), markers[0]->startOffset(), caretRange->endContainer(), markers[0]->endOffset()); create 1632 Source/web/WebFrameImpl.cpp return WebFrameImpl::create(client); create 1675 Source/web/WebFrameImpl.cpp setWebCoreFrame(LocalFrame::create(&m_frameLoaderClientImpl, &page->frameHost(), 0)); create 1689 Source/web/WebFrameImpl.cpp RefPtr<LocalFrame> childFrame = LocalFrame::create(&webframe->m_frameLoaderClientImpl, frame()->host(), ownerElement); create 1958 Source/web/WebFrameImpl.cpp m_textFinder = TextFinder::create(*this); create 240 Source/web/WebFrameImpl.h static WebFrameImpl* create(WebFrameClient*); create 38 Source/web/WebGeolocationError.cpp m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message); create 37 Source/web/WebGeolocationPosition.cpp m_private = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed); create 70 Source/web/WebHelperPluginImpl.cpp m_objectElement = HTMLObjectElement::create(*frame->frame()->document(), 0, false); create 75 Source/web/WebHistoryItem.cpp m_private = HistoryItem::create(); create 48 Source/web/WebIDBDatabaseError.cpp m_private = DOMError::create(code); create 53 Source/web/WebIDBDatabaseError.cpp m_private = DOMError::create(code, message); create 47 Source/web/WebIDBKeyRange.cpp m_private = IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoundClosed, upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange::UpperBoundClosed); create 188 Source/web/WebKit.cpp WebCore::setIDBFactoryBackendInterfaceCreateFunction(blink::IDBFactoryBackendProxy::create); create 190 Source/web/WebKit.cpp WebCore::MediaPlayer::setMediaEngineCreateFunction(blink::WebMediaPlayerClientImpl::create); create 77 Source/web/WebMediaDevicesRequest.cpp devices[i] = MediaDeviceInfo::create(webDevices[i]); create 346 Source/web/WebMediaPlayerClientImpl.cpp return TimeRanges::create(m_webMediaPlayer->buffered()); create 347 Source/web/WebMediaPlayerClientImpl.cpp return TimeRanges::create(); create 66 Source/web/WebMediaPlayerClientImpl.h static PassOwnPtr<WebCore::MediaPlayer> create(WebCore::MediaPlayerClient*); create 216 Source/web/WebPagePopupImpl.cpp RefPtr<LocalFrame> frame = LocalFrame::create(emptyFrameLoaderClient, &m_page->frameHost(), 0); create 217 Source/web/WebPagePopupImpl.cpp frame->setView(FrameView::create(frame.get())); create 225 Source/web/WebPagePopupImpl.cpp RefPtr<SharedBuffer> data = SharedBuffer::create(); create 70 Source/web/WebPluginContainerImpl.h static PassRefPtr<WebPluginContainerImpl> create(WebCore::HTMLPlugInElement* element, WebPlugin* webPlugin) create 69 Source/web/WebPluginScrollbarImpl.cpp m_scrollbar = Scrollbar::create( create 287 Source/web/WebSearchableFormData.cpp RefPtr<FormData> formData = FormData::create(encodedString); create 60 Source/web/WebSecurityOrigin.cpp return WebSecurityOrigin(SecurityOrigin::create(url)); create 87 Source/web/WebSecurityPolicy.cpp *SecurityOrigin::create(sourceOrigin), destinationProtocol, create 98 Source/web/WebSecurityPolicy.cpp *SecurityOrigin::create(sourceOrigin), destinationProtocol, create 50 Source/web/WebSerializedScriptValue.cpp WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, 0, exceptionState, v8::Isolate::GetCurrent()); create 58 Source/web/WebSerializedScriptValue.cpp return SerializedScriptValue::create(); create 123 Source/web/WebSharedWorkerImpl.cpp Loader() : m_scriptLoader(WorkerScriptLoader::create()), m_identifier(0), m_appCacheID(0) create 147 Source/web/WebSharedWorkerImpl.cpp SecurityOrigin::create(KURL(ParsedURLString, "http://localhost")); create 156 Source/web/WebSharedWorkerImpl.cpp , m_client(WeakReference<WebSharedWorkerClient>::create(client)) create 191 Source/web/WebSharedWorkerImpl.cpp m_webView = WebView::create(0); create 195 Source/web/WebSharedWorkerImpl.cpp m_mainFrame = WebFrame::create(this); create 204 Source/web/WebSharedWorkerImpl.cpp RefPtr<SharedBuffer> buffer(SharedBuffer::create(content.data(), length)); create 219 Source/web/WebSharedWorkerImpl.cpp m_mainScriptLoader = Loader::create(); create 310 Source/web/WebSharedWorkerImpl.cpp RefPtr<MessagePort> port = MessagePort::create(*context); create 349 Source/web/WebSharedWorkerImpl.cpp OwnPtr<WorkerClients> workerClients = WorkerClients::create(); create 350 Source/web/WebSharedWorkerImpl.cpp provideLocalFileSystemToWorker(workerClients.get(), LocalFileSystemClient::create()); create 351 Source/web/WebSharedWorkerImpl.cpp provideDatabaseClientToWorker(workerClients.get(), DatabaseClientImpl::create()); create 354 Source/web/WebSharedWorkerImpl.cpp OwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(m_url, m_loadingDocument->userAgent(m_url), m_mainScriptLoader->script(), startMode, m_contentSecurityPolicy, static_cast<WebCore::ContentSecurityPolicyHeaderType>(m_policyType), workerClients.release()); create 355 Source/web/WebSharedWorkerImpl.cpp setWorkerThread(SharedWorkerThread::create(m_name, *this, *this, startupData.release())); create 56 Source/web/WebSocketImpl.cpp m_private = NewWebSocketChannelImpl::create(coreDocument.get(), this); create 58 Source/web/WebSocketImpl.cpp m_private = MainThreadWebSocketChannel::create(coreDocument.get(), this); create 143 Source/web/WebSocketImpl.cpp m_client->didReceiveArrayBuffer(WebArrayBuffer(ArrayBuffer::create(binaryData->data(), binaryData->size()))); create 48 Source/web/WebSpeechInputResult.cpp m_private = WebCore::SpeechInputResult::create(utterance, confidence); create 53 Source/web/WebSpeechInputResult.cpp m_private = WebCore::SpeechInputResult::create(*other.m_private.get()); create 50 Source/web/WebSpeechRecognitionResult.cpp alternatives[i] = WebCore::SpeechRecognitionAlternative::create(transcripts[i], confidences[i]); create 52 Source/web/WebSpeechRecognitionResult.cpp m_private = WebCore::SpeechRecognitionResult::create(alternatives, final); create 49 Source/web/WebStorageEventDispatcherImpl.cpp RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin); create 61 Source/web/WebStorageEventDispatcherImpl.cpp RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin); create 247 Source/web/WebViewImpl.cpp return WebViewImpl::create(client); create 367 Source/web/WebViewImpl.cpp , m_fullscreenController(FullscreenController::create(this)) create 390 Source/web/WebViewImpl.cpp provideMIDITo(*m_page, MIDIClientProxy::create(client ? client->webMIDIClient() : 0)); create 392 Source/web/WebViewImpl.cpp provideSpeechInputTo(*m_page, SpeechInputClientImpl::create(client)); create 394 Source/web/WebViewImpl.cpp provideSpeechRecognitionTo(*m_page, SpeechRecognitionClientProxy::create(client ? client->speechRecognizer() : 0)); create 396 Source/web/WebViewImpl.cpp provideNavigatorContentUtilsTo(*m_page, NavigatorContentUtilsClientImpl::create(this)); create 404 Source/web/WebViewImpl.cpp provideLocalFileSystemTo(*m_page, LocalFileSystemClient::create()); create 405 Source/web/WebViewImpl.cpp provideDatabaseClientTo(*m_page, DatabaseClientImpl::create()); create 407 Source/web/WebViewImpl.cpp provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create()); create 408 Source/web/WebViewImpl.cpp m_validationMessage = ValidationMessageClientImpl::create(*this); create 410 Source/web/WebViewImpl.cpp provideWorkerGlobalScopeProxyProviderTo(*m_page, WorkerGlobalScopeProxyProviderImpl::create()); create 1205 Source/web/WebViewImpl.cpp m_linkHighlights.append(LinkHighlight::create(node, this)); create 2018 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*editable, *range.get())); create 2054 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*node, *range.get())); create 2062 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*node, *range.get())); create 2168 Source/web/WebViewImpl.cpp RefPtrWillBeRawPtr<Range> range(Range::create(selectedRange->startContainer()->document(), create 2175 Source/web/WebViewImpl.cpp range = Range::create(selectedRange->endContainer()->document(), create 3532 Source/web/WebViewImpl.cpp m_pageOverlays = PageOverlayList::create(this); create 118 Source/web/WebViewImpl.h static WebViewImpl* create(WebViewClient*); create 66 Source/web/WebWorkerRunLoop.cpp return m_workerRunLoop->postTask(TaskForwarder::create(adoptPtr(task))); create 60 Source/web/WorkerGlobalScopeProxyProviderImpl.cpp OwnPtr<WorkerClients> workerClients = WorkerClients::create(); create 61 Source/web/WorkerGlobalScopeProxyProviderImpl.cpp provideLocalFileSystemToWorker(workerClients.get(), LocalFileSystemClient::create()); create 62 Source/web/WorkerGlobalScopeProxyProviderImpl.cpp provideDatabaseClientToWorker(workerClients.get(), DatabaseClientImpl::create()); create 48 Source/web/WorkerGlobalScopeProxyProviderImpl.h static PassOwnPtr<WorkerGlobalScopeProxyProviderImpl> create() create 104 Source/web/WorkerPermissionClient.cpp WorkerPermissionClient::provideTo(*clients, WorkerPermissionClient::supplementName(), WorkerPermissionClient::create(proxy)); create 50 Source/web/WorkerPermissionClient.h static PassOwnPtr<WorkerPermissionClient> create(PassOwnPtr<WebWorkerPermissionClientProxy>); create 90 Source/web/tests/ChromeClientImplTest.cpp m_webView = toWebViewImpl(WebView::create(&m_webViewClient)); create 91 Source/web/tests/ChromeClientImplTest.cpp m_mainFrame = WebFrame::create(&m_webFrameClient); create 79 Source/web/tests/CompositedLayerMappingTest.cpp m_mainFrame = WebFrame::create(&m_mockWebFrameClient); create 80 Source/web/tests/CompositedLayerMappingTest.cpp m_webViewImpl = toWebViewImpl(WebView::create(&m_mockWebViewClient)); create 113 Source/web/tests/CustomEventTest.cpp RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::create(); create 114 Source/web/tests/CustomEventTest.cpp RefPtr<EventListener> listener = TestListener::create(isolate, *world); create 72 Source/web/tests/FrameLoaderClientImplTest.cpp m_webView = WebView::create(0); create 73 Source/web/tests/FrameLoaderClientImplTest.cpp m_mainFrame = WebFrame::create(&m_webFrameClient); create 116 Source/web/tests/FrameTestHelpers.cpp m_webView = WebViewImpl::create(webViewClient); create 125 Source/web/tests/FrameTestHelpers.cpp m_webView->setMainFrame(WebFrameImpl::create(webFrameClient)); create 150 Source/web/tests/FrameTestHelpers.cpp WebFrame* frame = WebFrame::create(this); create 61 Source/web/tests/KeyboardTest.cpp RefPtrWillBeRawPtr<KeyboardEvent> keyboardEvent = KeyboardEvent::create(evt, 0); create 62 Source/web/tests/KeyboardTest.cpp OwnPtr<Settings> settings = Settings::create(); create 92 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 98 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 104 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 110 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 116 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 122 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 128 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 134 Source/web/tests/LocaleICUTest.cpp OwnPtr<LocaleICU> locale = LocaleICU::create(localeString); create 229 Source/web/tests/LocaleICUTest.cpp OwnPtr<Locale> locale = Locale::create(localeIdentifier); create 242 Source/web/tests/LocaleICUTest.cpp OwnPtr<Locale> locale = Locale::create(localeIdentifier); create 74 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 83 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 92 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 98 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 104 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 110 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 116 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 122 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 129 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 135 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 141 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 147 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 153 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 159 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 165 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 171 Source/web/tests/LocaleMacTest.cpp OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); create 358 Source/web/tests/LocaleMacTest.cpp OwnPtr<Locale> locale = Locale::create(localeString); create 89 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 95 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 101 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 107 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 113 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 120 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 126 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 132 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 138 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 144 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 150 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 267 Source/web/tests/LocaleWinTest.cpp OwnPtr<LocaleWin> locale = LocaleWin::create(lcid, true /* defaultsForLocale */); create 50 Source/web/tests/OpenTypeVerticalDataTest.cpp RefPtr<SharedBuffer> buffer = SharedBuffer::create(sizeof(TestTable)); create 54 Source/web/tests/OpenTypeVerticalDataTest.cpp buffer = SharedBuffer::create(sizeof(TestTable) - 1); create 58 Source/web/tests/OpenTypeVerticalDataTest.cpp buffer = SharedBuffer::create(sizeof(TestTable) + 1); create 65 Source/web/tests/OpenTypeVerticalDataTest.cpp RefPtr<SharedBuffer> buffer = SharedBuffer::create(sizeof(TestTable)); create 157 Source/web/tests/PopupMenuTest.cpp TestWebViewClient() : m_webPopupMenu(TestWebPopupMenuImpl::create(&m_webWidgetClient)) { } create 165 Source/web/tests/WebFrameTest.cpp RefPtrWillBeRawPtr<WebCore::StyleSheetContents> styleSheet = WebCore::StyleSheetContents::create(WebCore::CSSParserContext(WebCore::UASheetMode, 0)); create 167 Source/web/tests/WebFrameTest.cpp OwnPtrWillBeRawPtr<WebCore::RuleSet> ruleSet = WebCore::RuleSet::create(); create 631 Source/web/tests/WebFrameTest.cpp WebSecurityOrigin correctOrigin(WebSecurityOrigin::create(toKURL(m_baseURL))); create 639 Source/web/tests/WebFrameTest.cpp WebSecurityOrigin incorrectOrigin(WebSecurityOrigin::create(toKURL(m_chromeURL))); create 658 Source/web/tests/WebFrameTest.cpp frame->domWindow()->postMessage(WebCore::SerializedScriptValue::create("message"), 0, "*", frame->domWindow(), exceptionState); create 4762 Source/web/tests/WebFrameTest.cpp RefPtrWillBeRawPtr<WebCore::Event> event = WebCore::MouseEvent::create(WebCore::EventTypeNames::click, false, false, create 4812 Source/web/tests/WebFrameTest.cpp RefPtrWillBeRawPtr<WebCore::Event> event = WebCore::MouseEvent::create(WebCore::EventTypeNames::click, false, false, create 4933 Source/web/tests/WebFrameTest.cpp WebFrame* frame = WebFrame::create(m_client); create 66 Source/web/tests/WebHelperPluginTest.cpp m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame())); create 76 Source/web/tests/WebHelperPluginTest.cpp m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame())); create 88 Source/web/tests/WebHelperPluginTest.cpp m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame())); create 57 Source/web/tests/WebInputEventConversionTest.cpp return WebCore::KeyboardEvent::create("keydown", true, true, 0, "", location, false, false, false, false, false); create 88 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<WebCore::TouchEvent> event = WebCore::TouchEvent::create(); create 252 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<MouseEvent> mouseEvent = MouseEvent::create(WebCore::EventTypeNames::mousemove, domWindow, platformMouseEvent, 0, document); create 265 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<MouseEvent> mouseEvent = MouseEvent::create(WebCore::EventTypeNames::mousemove, domWindow, platformMouseEvent, 0, document); create 272 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<GestureEvent> gestureEvent = GestureEvent::create(domWindow, platformGestureEvent); create 284 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<Touch> touch = Touch::create(webViewImpl->page()->mainFrame(), document.get(), 0, 10, 10, 10, 10, 10, 10, 0, 0); create 285 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<TouchList> touchList = TouchList::create(); create 287 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<TouchEvent> touchEvent = TouchEvent::create(touchList.get(), touchList.get(), touchList.get(), WebCore::EventTypeNames::touchmove, domWindow, 10, 10, 10, 10, false, false, false, false); create 484 Source/web/tests/WebInputEventConversionTest.cpp RefPtrWillBeRawPtr<WebCore::GestureEvent> coreGestureEvent = WebCore::GestureEvent::create(domWindow, platformGestureBuilder); create 196 Source/web/tests/WebInputEventFactoryTestGtk.cpp RefPtrWillBeRawPtr<WebCore::KeyboardEvent> keypress = WebCore::KeyboardEvent::create(platformBuilder, 0); create 265 Source/web/tests/WebViewTest.cpp WebView* webView = WebViewImpl::create(0); create 43 Source/wtf/ArrayBuffer.h static inline PassRefPtr<ArrayBuffer> create(unsigned numElements, unsigned elementByteSize); create 44 Source/wtf/ArrayBuffer.h static inline PassRefPtr<ArrayBuffer> create(ArrayBuffer*); create 45 Source/wtf/ArrayBuffer.h static inline PassRefPtr<ArrayBuffer> create(const void* source, unsigned byteLength); create 46 Source/wtf/ArrayBuffer.h static inline PassRefPtr<ArrayBuffer> create(ArrayBufferContents&); create 71 Source/wtf/ArrayBuffer.h static inline PassRefPtr<ArrayBuffer> create(unsigned numElements, unsigned elementByteSize, ArrayBufferContents::InitializationPolicy); create 93 Source/wtf/ArrayBuffer.h PassRefPtr<ArrayBuffer> ArrayBuffer::create(unsigned numElements, unsigned elementByteSize) create 95 Source/wtf/ArrayBuffer.h return create(numElements, elementByteSize, ArrayBufferContents::ZeroInitialize); create 98 Source/wtf/ArrayBuffer.h PassRefPtr<ArrayBuffer> ArrayBuffer::create(ArrayBuffer* other) create 100 Source/wtf/ArrayBuffer.h return ArrayBuffer::create(other->data(), other->byteLength()); create 103 Source/wtf/ArrayBuffer.h PassRefPtr<ArrayBuffer> ArrayBuffer::create(const void* source, unsigned byteLength) create 113 Source/wtf/ArrayBuffer.h PassRefPtr<ArrayBuffer> ArrayBuffer::create(ArrayBufferContents& contents) create 120 Source/wtf/ArrayBuffer.h return create(numElements, elementByteSize, ArrayBufferContents::DontInitialize); create 123 Source/wtf/ArrayBuffer.h PassRefPtr<ArrayBuffer> ArrayBuffer::create(unsigned numElements, unsigned elementByteSize, ArrayBufferContents::InitializationPolicy policy) create 165 Source/wtf/ArrayBuffer.h return ArrayBuffer::create(static_cast<const char*>(data()) + begin, size); create 45 Source/wtf/ArrayBufferBuilder.cpp m_buffer = ArrayBuffer::create(defaultBufferCapacity, 1); create 67 Source/wtf/ArrayBufferBuilder.cpp RefPtr<ArrayBuffer> newBuffer = ArrayBuffer::create(newBufferSize, 1); create 56 Source/wtf/ArrayBufferBuilder.h m_buffer = ArrayBuffer::create(capacity, 1); create 240 Source/wtf/ArrayBufferBuilderTest.cpp RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(INT_MAX + 1u, 1); create 44 Source/wtf/BitVector.cpp OutOfLineBits* newOutOfLineBits = OutOfLineBits::create(other.size()); create 96 Source/wtf/BitVector.cpp OutOfLineBits* newOutOfLineBits = OutOfLineBits::create(numBits); create 204 Source/wtf/BitVector.h static OutOfLineBits* create(size_t numBits); create 37 Source/wtf/Float32Array.h static inline PassRefPtr<Float32Array> create(unsigned length); create 38 Source/wtf/Float32Array.h static inline PassRefPtr<Float32Array> create(const float* array, unsigned length); create 39 Source/wtf/Float32Array.h static inline PassRefPtr<Float32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 70 Source/wtf/Float32Array.h PassRefPtr<Float32Array> Float32Array::create(unsigned length) create 72 Source/wtf/Float32Array.h return TypedArrayBase<float>::create<Float32Array>(length); create 75 Source/wtf/Float32Array.h PassRefPtr<Float32Array> Float32Array::create(const float* array, unsigned length) create 77 Source/wtf/Float32Array.h return TypedArrayBase<float>::create<Float32Array>(array, length); create 80 Source/wtf/Float32Array.h PassRefPtr<Float32Array> Float32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 82 Source/wtf/Float32Array.h return TypedArrayBase<float>::create<Float32Array>(buffer, byteOffset, length); create 37 Source/wtf/Float64Array.h static inline PassRefPtr<Float64Array> create(unsigned length); create 38 Source/wtf/Float64Array.h static inline PassRefPtr<Float64Array> create(const double* array, unsigned length); create 39 Source/wtf/Float64Array.h static inline PassRefPtr<Float64Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 70 Source/wtf/Float64Array.h PassRefPtr<Float64Array> Float64Array::create(unsigned length) create 72 Source/wtf/Float64Array.h return TypedArrayBase<double>::create<Float64Array>(length); create 75 Source/wtf/Float64Array.h PassRefPtr<Float64Array> Float64Array::create(const double* array, unsigned length) create 77 Source/wtf/Float64Array.h return TypedArrayBase<double>::create<Float64Array>(array, length); create 80 Source/wtf/Float64Array.h PassRefPtr<Float64Array> Float64Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 82 Source/wtf/Float64Array.h return TypedArrayBase<double>::create<Float64Array>(buffer, byteOffset, length); create 141 Source/wtf/FunctionalTest.cpp RefPtr<Number> five = Number::create(5); create 145 Source/wtf/FunctionalTest.cpp Function<int ()> multiplyFourByTwoFunction = bind(multiplyNumberByTwo, Number::create(4)); create 148 Source/wtf/FunctionalTest.cpp RefPtr<Number> six = Number::create(6); create 37 Source/wtf/Int16Array.h static inline PassRefPtr<Int16Array> create(unsigned length); create 38 Source/wtf/Int16Array.h static inline PassRefPtr<Int16Array> create(const short* array, unsigned length); create 39 Source/wtf/Int16Array.h static inline PassRefPtr<Int16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 64 Source/wtf/Int16Array.h PassRefPtr<Int16Array> Int16Array::create(unsigned length) create 66 Source/wtf/Int16Array.h return TypedArrayBase<short>::create<Int16Array>(length); create 69 Source/wtf/Int16Array.h PassRefPtr<Int16Array> Int16Array::create(const short* array, unsigned length) create 71 Source/wtf/Int16Array.h return TypedArrayBase<short>::create<Int16Array>(array, length); create 74 Source/wtf/Int16Array.h PassRefPtr<Int16Array> Int16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 76 Source/wtf/Int16Array.h return TypedArrayBase<short>::create<Int16Array>(buffer, byteOffset, length); create 36 Source/wtf/Int32Array.h static inline PassRefPtr<Int32Array> create(unsigned length); create 37 Source/wtf/Int32Array.h static inline PassRefPtr<Int32Array> create(const int* array, unsigned length); create 38 Source/wtf/Int32Array.h static inline PassRefPtr<Int32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 63 Source/wtf/Int32Array.h PassRefPtr<Int32Array> Int32Array::create(unsigned length) create 65 Source/wtf/Int32Array.h return TypedArrayBase<int>::create<Int32Array>(length); create 68 Source/wtf/Int32Array.h PassRefPtr<Int32Array> Int32Array::create(const int* array, unsigned length) create 70 Source/wtf/Int32Array.h return TypedArrayBase<int>::create<Int32Array>(array, length); create 73 Source/wtf/Int32Array.h PassRefPtr<Int32Array> Int32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 75 Source/wtf/Int32Array.h return TypedArrayBase<int>::create<Int32Array>(buffer, byteOffset, length); create 38 Source/wtf/Int8Array.h static inline PassRefPtr<Int8Array> create(unsigned length); create 39 Source/wtf/Int8Array.h static inline PassRefPtr<Int8Array> create(const signed char* array, unsigned length); create 40 Source/wtf/Int8Array.h static inline PassRefPtr<Int8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 65 Source/wtf/Int8Array.h PassRefPtr<Int8Array> Int8Array::create(unsigned length) create 67 Source/wtf/Int8Array.h return TypedArrayBase<signed char>::create<Int8Array>(length); create 70 Source/wtf/Int8Array.h PassRefPtr<Int8Array> Int8Array::create(const signed char* array, unsigned length) create 72 Source/wtf/Int8Array.h return TypedArrayBase<signed char>::create<Int8Array>(array, length); create 75 Source/wtf/Int8Array.h PassRefPtr<Int8Array> Int8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 77 Source/wtf/Int8Array.h return TypedArrayBase<signed char>::create<Int8Array>(buffer, byteOffset, length); create 76 Source/wtf/TerminatedArray.h static PassPtr create(size_t capacity) create 33 Source/wtf/TerminatedArrayBuilder.h m_array = ArrayType<T>::Allocator::create(m_capacity); create 44 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> root = TestTree::create(); create 45 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> firstChild = TestTree::create(); create 46 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> lastChild = TestTree::create(); create 63 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> root = TestTree::create(); create 64 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> firstChild = TestTree::create(); create 65 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> middleChild = TestTree::create(); create 66 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> lastChild = TestTree::create(); create 96 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> root = TestTree::create(); create 97 Source/wtf/TreeNodeTest.cpp RefPtr<TestTree> child = TestTree::create(); create 112 Source/wtf/TreeNodeTest.cpp : root(TestTree::create()) create 113 Source/wtf/TreeNodeTest.cpp , firstChild(TestTree::create()) create 114 Source/wtf/TreeNodeTest.cpp , middleChild(TestTree::create()) create 115 Source/wtf/TreeNodeTest.cpp , lastChild(TestTree::create()) create 174 Source/wtf/TreeNodeTest.cpp : grandChild(TestTree::create()) create 92 Source/wtf/TypedArrayBase.h static PassRefPtr<Subclass> create(unsigned length) create 94 Source/wtf/TypedArrayBase.h RefPtr<ArrayBuffer> buffer = ArrayBuffer::create(length, sizeof(T)); create 97 Source/wtf/TypedArrayBase.h return create<Subclass>(buffer, 0, length); create 101 Source/wtf/TypedArrayBase.h static PassRefPtr<Subclass> create(const T* array, unsigned length) create 103 Source/wtf/TypedArrayBase.h RefPtr<Subclass> a = create<Subclass>(length); create 111 Source/wtf/TypedArrayBase.h static PassRefPtr<Subclass> create(PassRefPtr<ArrayBuffer> buffer, create 128 Source/wtf/TypedArrayBase.h return create<Subclass>(buffer, 0, length); create 137 Source/wtf/TypedArrayBase.h return create<Subclass>(buffer(), offset, length); create 38 Source/wtf/Uint16Array.h static inline PassRefPtr<Uint16Array> create(unsigned length); create 39 Source/wtf/Uint16Array.h static inline PassRefPtr<Uint16Array> create(const unsigned short* array, unsigned length); create 40 Source/wtf/Uint16Array.h static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 65 Source/wtf/Uint16Array.h PassRefPtr<Uint16Array> Uint16Array::create(unsigned length) create 67 Source/wtf/Uint16Array.h return TypedArrayBase<unsigned short>::create<Uint16Array>(length); create 70 Source/wtf/Uint16Array.h PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, unsigned length) create 72 Source/wtf/Uint16Array.h return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length); create 75 Source/wtf/Uint16Array.h PassRefPtr<Uint16Array> Uint16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 77 Source/wtf/Uint16Array.h return TypedArrayBase<unsigned short>::create<Uint16Array>(buffer, byteOffset, length); create 38 Source/wtf/Uint32Array.h static inline PassRefPtr<Uint32Array> create(unsigned length); create 39 Source/wtf/Uint32Array.h static inline PassRefPtr<Uint32Array> create(const unsigned* array, unsigned length); create 40 Source/wtf/Uint32Array.h static inline PassRefPtr<Uint32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 65 Source/wtf/Uint32Array.h PassRefPtr<Uint32Array> Uint32Array::create(unsigned length) create 67 Source/wtf/Uint32Array.h return TypedArrayBase<unsigned>::create<Uint32Array>(length); create 70 Source/wtf/Uint32Array.h PassRefPtr<Uint32Array> Uint32Array::create(const unsigned int* array, unsigned length) create 72 Source/wtf/Uint32Array.h return TypedArrayBase<unsigned>::create<Uint32Array>(array, length); create 75 Source/wtf/Uint32Array.h PassRefPtr<Uint32Array> Uint32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 77 Source/wtf/Uint32Array.h return TypedArrayBase<unsigned>::create<Uint32Array>(buffer, byteOffset, length); create 38 Source/wtf/Uint8Array.h static inline PassRefPtr<Uint8Array> create(unsigned length); create 39 Source/wtf/Uint8Array.h static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length); create 40 Source/wtf/Uint8Array.h static inline PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 65 Source/wtf/Uint8Array.h PassRefPtr<Uint8Array> Uint8Array::create(unsigned length) create 67 Source/wtf/Uint8Array.h return TypedArrayBase<unsigned char>::create<Uint8Array>(length); create 70 Source/wtf/Uint8Array.h PassRefPtr<Uint8Array> Uint8Array::create(const unsigned char* array, unsigned length) create 72 Source/wtf/Uint8Array.h return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length); create 75 Source/wtf/Uint8Array.h PassRefPtr<Uint8Array> Uint8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 77 Source/wtf/Uint8Array.h return TypedArrayBase<unsigned char>::create<Uint8Array>(buffer, byteOffset, length); create 38 Source/wtf/Uint8ClampedArray.h static inline PassRefPtr<Uint8ClampedArray> create(unsigned length); create 39 Source/wtf/Uint8ClampedArray.h static inline PassRefPtr<Uint8ClampedArray> create(const unsigned char* array, unsigned length); create 40 Source/wtf/Uint8ClampedArray.h static inline PassRefPtr<Uint8ClampedArray> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length); create 70 Source/wtf/Uint8ClampedArray.h PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(unsigned length) create 72 Source/wtf/Uint8ClampedArray.h return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(length); create 75 Source/wtf/Uint8ClampedArray.h PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(const unsigned char* array, unsigned length) create 77 Source/wtf/Uint8ClampedArray.h return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(array, length); create 80 Source/wtf/Uint8ClampedArray.h PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) create 82 Source/wtf/Uint8ClampedArray.h return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(buffer, byteOffset, length); create 42 Source/wtf/WeakPtr.h static PassRefPtr<WeakReference<T> > create(T* ptr) { return adoptRef(new WeakReference(ptr)); } create 120 Source/wtf/WeakPtr.h explicit WeakPtrFactory(T* ptr) : m_ref(WeakReference<T>::create(ptr)) { } create 138 Source/wtf/WeakPtr.h m_ref = WeakReference<T>::create(ptr); create 104 Source/wtf/text/AtomicString.cpp table = AtomicStringTable::create(data); create 136 Source/wtf/text/AtomicString.cpp location = StringImpl::create(c).leakRef(); create 200 Source/wtf/text/AtomicString.cpp location = StringImpl::create(buffer.characters, buffer.length).leakRef(); create 268 Source/wtf/text/AtomicString.cpp newString = StringImpl::create(buffer.characters, buffer.length); create 378 Source/wtf/text/AtomicString.cpp location = StringImpl::create(buf.s, buf.length).leakRef(); create 398 Source/wtf/text/AtomicString.cpp location = StringImpl::create(buf.s, buf.length).leakRef(); create 40 Source/wtf/text/IntegerToStringConversion.h static inline ReturnType flush(LChar* characters, unsigned length, void*) { return StringImpl::create(characters, length); } create 45 Source/wtf/text/StringCF.cpp m_impl = StringImpl::create(lcharBuffer.data(), size); create 51 Source/wtf/text/StringCF.cpp m_impl = StringImpl::create(buffer.data(), size); create 196 Source/wtf/text/StringImpl.cpp RefPtr<PerStringStats> value = entry == stats.end() ? RefPtr<PerStringStats>(PerStringStats::create()) : entry->value; create 433 Source/wtf/text/StringImpl.cpp return create(characters, length); create 446 Source/wtf/text/StringImpl.cpp return create(string, length); create 483 Source/wtf/text/StringImpl.cpp return create(characters8() + start, length); create 485 Source/wtf/text/StringImpl.cpp return create(characters16() + start, length); create 770 Source/wtf/text/StringImpl.cpp return create(target.getBuffer(), target.length()); create 864 Source/wtf/text/StringImpl.cpp return create(characters8() + start, end + 1 - start); create 865 Source/wtf/text/StringImpl.cpp return create(characters16() + start, end + 1 - start); create 189 Source/wtf/text/StringImpl.h static PassRefPtr<StringImpl> create(const UChar*, unsigned length); create 190 Source/wtf/text/StringImpl.h static PassRefPtr<StringImpl> create(const LChar*, unsigned length); create 198 Source/wtf/text/StringImpl.h ALWAYS_INLINE static PassRefPtr<StringImpl> create(const char* s, unsigned length) { return create(reinterpret_cast<const LChar*>(s), length); } create 199 Source/wtf/text/StringImpl.h static PassRefPtr<StringImpl> create(const LChar*); create 200 Source/wtf/text/StringImpl.h ALWAYS_INLINE static PassRefPtr<StringImpl> create(const char* s) { return create(reinterpret_cast<const LChar*>(s)); } create 716 Source/wtf/text/StringImpl.h return create(characters8(), m_length); create 717 Source/wtf/text/StringImpl.h return create(characters16(), m_length); create 121 Source/wtf/text/StringImplCF.cpp static CFAllocatorRef allocator = create(); create 36 Source/wtf/text/StringImplTest.cpp RefPtr<StringImpl> testStringImpl = StringImpl::create("1224"); create 94 Source/wtf/text/StringView.h return StringImpl::create(characters8(), m_length); create 95 Source/wtf/text/StringView.h return StringImpl::create(characters16(), m_length); create 219 Source/wtf/text/TextCodecICU.cpp registrar("ISO-8859-8-I", create, 0); create 232 Source/wtf/text/TextCodecICU.cpp registrar(standardName, create, 0); create 49 Source/wtf/text/TextCodecICU.h static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*); create 67 Source/wtf/text/TextCodecUTF8.cpp registrar("UTF-8", create, 0); create 39 Source/wtf/text/TextCodecUTF8.h static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*); create 48 Source/wtf/text/WTFString.cpp : m_impl(characters ? StringImpl::create(characters, length) : nullptr) create 57 Source/wtf/text/WTFString.cpp m_impl = StringImpl::create(str, lengthOfNullTerminatedString(str)); create 62 Source/wtf/text/WTFString.cpp : m_impl(characters ? StringImpl::create(characters, length) : nullptr) create 67 Source/wtf/text/WTFString.cpp : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters), length) : nullptr) create 73 Source/wtf/text/WTFString.cpp : m_impl(characters ? StringImpl::create(characters) : nullptr) create 78 Source/wtf/text/WTFString.cpp : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters)) : nullptr) create 131 Source/wtf/text/WTFString.cpp m_impl = StringImpl::create(&c, 1); create 182 Source/wtf/text/WTFString.cpp m_impl = StringImpl::create(charactersToAppend, lengthToAppend); create 216 Source/wtf/text/WTFString.cpp m_impl = StringImpl::create(charactersToAppend, lengthToAppend); create 499 Source/wtf/text/WTFString.cpp return StringImpl::create(reinterpret_cast<const LChar*>(buffer.data()), len); create 911 Source/wtf/text/WTFString.cpp return StringImpl::create(stringStart, length); create 923 Source/wtf/text/WTFString.cpp return StringImpl::create(bufferStart, utf16Length); create 497 Source/wtf/text/WTFString.h : m_impl(vector.size() ? StringImpl::create(vector.data(), vector.size()) : StringImpl::empty()) create 62 public/platform/WebArrayBuffer.h BLINK_PLATFORM_EXPORT static WebArrayBuffer create(unsigned numElements, unsigned elementByteSize); create 104 public/platform/WebCryptoKey.h BLINK_PLATFORM_EXPORT static WebCryptoKey create(WebCryptoKeyHandle*, WebCryptoKeyType, bool extractable, const WebCryptoKeyAlgorithm&, WebCryptoKeyUsageMask); create 41 public/platform/WebIDBKeyPath.h BLINK_EXPORT static WebIDBKeyPath create(const WebString&); create 42 public/platform/WebIDBKeyPath.h BLINK_EXPORT static WebIDBKeyPath create(const WebVector<WebString>&); create 59 public/web/WebDOMError.h BLINK_EXPORT static WebDOMError create(const WebString& name, const WebString& message); create 78 public/web/WebDOMFileSystem.h BLINK_EXPORT static WebDOMFileSystem create( create 46 public/web/WebDevToolsFrontend.h BLINK_EXPORT static WebDevToolsFrontend* create(WebView* view, create 50 public/web/WebEmbeddedWorker.h BLINK_EXPORT static WebEmbeddedWorker* create( create 51 public/web/WebFont.h BLINK_EXPORT static WebFont* create(const WebFontDescription&); create 103 public/web/WebFrame.h BLINK_EXPORT static WebLocalFrame* create(WebFrameClient*); create 46 public/web/WebHelperPlugin.h BLINK_EXPORT static WebHelperPlugin* create(const WebString& PluginType, WebLocalFrame*); create 43 public/web/WebPagePopup.h BLINK_EXPORT static WebPagePopup* create(WebWidgetClient*); create 43 public/web/WebPopupMenu.h BLINK_EXPORT static WebPopupMenu* create(WebWidgetClient*); create 61 public/web/WebSecurityOrigin.h BLINK_EXPORT static WebSecurityOrigin create(const WebURL&); create 52 public/web/WebSharedWorker.h BLINK_EXPORT static WebSharedWorker* create(WebSharedWorkerClient*); create 73 public/web/WebSocket.h BLINK_EXPORT static WebSocket* create(const WebDocument&, WebSocketClient*); create 88 public/web/WebView.h BLINK_EXPORT static WebView* create(WebViewClient*);