Searched refs:move (Results 151 - 175 of 1342) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/dom/default/
H A DPlatformMessagePortChannel.cpp42 , m_channels(WTF::move(channels))
57 port1->entangle(WTF::move(channel2));
58 port2->entangle(WTF::move(channel1));
94 bool wasEmpty = m_channel->m_outgoingQueue->appendAndCheckEmpty(std::make_unique<PlatformMessagePortChannel::EventData>(message, WTF::move(channels)));
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DWorkerInspectorController.cpp89 m_agents.append(WTF::move(runtimeAgent));
96 m_agents.append(WTF::move(debuggerAgent));
100 m_agents.append(WTF::move(profilerAgent));
103 m_agents.append(WTF::move(consoleAgent));
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderFullScreen.cpp40 : RenderBlockFlow(owner.document(), WTF::move(style))
58 : RenderFlexibleBox(document, WTF::move(style))
196 m_placeholder->setStyle(WTF::move(style));
200 m_placeholder = new RenderFullScreenPlaceholder(*this, WTF::move(style));
H A DRenderRegionSet.cpp34 : RenderRegion(document, WTF::move(style), &flowThread)
H A DRenderRubyText.cpp39 : RenderBlockFlow(element, WTF::move(style))
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DStyleReflection.h53 void setOffset(Length offset) { m_offset = WTF::move(offset); }
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGBlock.cpp32 : RenderBlockFlow(element, WTF::move(style))
H A DRenderSVGGradientStop.cpp35 : RenderElement(element, WTF::move(style), 0)
H A DRenderSVGResourceLinearGradient.cpp30 : RenderSVGResourceGradient(element, WTF::move(style))
H A DRenderSVGTextPath.cpp36 : RenderSVGInline(element, WTF::move(style))
H A DRenderSVGTransformableContainer.cpp31 : RenderSVGContainer(element, WTF::move(style))
/macosx-10.10/WebCore-7600.1.25/replay/
H A DCapturingInputCursor.cpp58 m_storage.store(WTF::move(input));
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGSwitchElement.cpp65 return createRenderer<RenderSVGTransformableContainer>(*this, WTF::move(style));
H A DSVGPathParser.cpp93 m_currentPoint.move(toX, 0);
110 m_currentPoint.move(0, toY);
158 point1.move(-m_controlPoint.x(), -m_controlPoint.y());
183 point1.move(2 * m_controlPoint.x(), 2 * m_controlPoint.y());
186 point1.move(2 * m_currentPoint.x(), 2 * m_currentPoint.y());
187 point2.move(3 * m_currentPoint.x(), 3 * m_currentPoint.y());
218 cubicPoint.move(-m_controlPoint.x(), -m_controlPoint.y());
461 centerPoint.move(-delta.height(), delta.width());
492 point1.move(centerPoint.x(), centerPoint.y());
494 targetPoint.move(centerPoin
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/
H A DWKDictionary.cpp46 return toAPI(ImmutableDictionary::create(WTF::move(map)).release().leakRef());
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DAPIWebArchive.cpp85 m_legacyWebArchive = LegacyWebArchive::create(coreMainResource.release(), WTF::move(coreArchiveResources), WTF::move(coreSubframeLegacyWebArchives));
119 m_cachedSubresources = API::Array::create(WTF::move(subresources));
134 m_cachedSubframeArchives = API::Array::create(WTF::move(subframeWebArchives));
H A DChildProcessProxy.cpp94 m_pendingMessages.append(std::make_pair(WTF::move(encoder), messageSendFlags));
98 return connection()->sendMessage(WTF::move(encoder), messageSendFlags);
145 std::unique_ptr<IPC::MessageEncoder> message = WTF::move(m_pendingMessages[i].first);
147 m_connection->sendMessage(WTF::move(message), messageSendFlags);
H A DWebRenderObject.cpp81 m_elementClassNames = API::Array::create(WTF::move(classNames));
104 children.append(WTF::move(child));
114 children.append(WTF::move(contentRenderer));
120 m_children = API::Array::create(WTF::move(children));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/InspectorServer/
H A DWebSocketServer.cpp82 m_connections.append(WTF::move(connection));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebFormClient.cpp48 RefPtr<ImmutableDictionary> textFieldsMap = ImmutableDictionary::create(WTF::move(map));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DInputMethodContextEfl.h40 return std::make_unique<InputMethodContextEfl>(viewImpl, WTF::move(context));
/macosx-10.10/doc_cmds-49/colcrt/
H A Dcolcrt.c79 static void move(int, int);
236 move(i, i - 1);
237 move(i, i + 1);
263 move(int l, int m) function
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathGrammar.y169 $$ = new Step(Step::ChildAxis, WTF::move(*nodeTest), WTF::move(*predicateList));
171 $$ = new Step(Step::ChildAxis, WTF::move(*nodeTest));
187 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), WTF::move(*predicateList));
198 $$ = new Step($1, WTF::move(*nodeTest), WTF::move(*predicateList));
200 $$ = new Step($1, WTF::move(*nodeTest));
216 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), WTF::move(*predicateList));
325 $$ = new StringExpression(WTF::move(literal));
350 $$ = XPath::Function::create(name, WTF::move(*argumentLis
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/replay/scripts/tests/expected/
H A Dgenerate-enum-with-guard.json-TestReplayInputs.cpp41 , m_platformEvent(WTF::move(platformEvent))
68 input = std::make_unique<Test::HandleWheelEvent>(WTF::move(platformEvent));
H A Dgenerate-memoized-type-modes.json-TestReplayInputs.cpp50 , m_data(WTF::move(data))
98 input = std::make_unique<Test::MapInput>(WTF::move(data));

Completed in 275 milliseconds

1234567891011>>