Searched refs:move (Results 51 - 75 of 1342) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKSessionState.mm53 _sessionState = std::move(sessionState);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/UserContent/
H A DWebScriptMessageHandler.cpp59 return adoptRef(new WebScriptMessageHandler(WTF::move(client), name));
64 , m_client(WTF::move(client))
/macosx-10.10/WebCore-7600.1.25/crypto/algorithms/
H A DCryptoAlgorithmAES_KW.cpp74 platformEncrypt(toCryptoKeyAES(key), data, WTF::move(callback), WTF::move(failureCallback), ec);
84 platformDecrypt(toCryptoKeyAES(key), data, WTF::move(callback), WTF::move(failureCallback), ec);
/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoAlgorithmAES_CBCMac.cpp87 transformAES_CBC(kCCEncrypt, parameters, key, data, WTF::move(callback), WTF::move(failureCallback));
92 transformAES_CBC(kCCDecrypt, parameters, key, data, WTF::move(callback), WTF::move(failureCallback));
/macosx-10.10/WebCore-7600.1.25/platform/
H A DLengthBox.h53 : m_left(WTF::move(left))
54 , m_right(WTF::move(right))
55 , m_top(WTF::move(top))
56 , m_bottom(WTF::move(bottom))
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderFrame.cpp32 : RenderFrameBase(frame, WTF::move(style))
H A DRenderTableCaption.cpp28 : RenderBlockFlow(element, WTF::move(style))
H A DRenderMediaControlElements.cpp39 : RenderBlockFlow(element, WTF::move(style))
63 : RenderFlexibleBox(element, WTF::move(style))
85 : RenderBlockFlow(element, WTF::move(style))
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGHiddenContainer.cpp29 : RenderSVGContainer(element, WTF::move(style))
H A DRenderSVGTSpan.h32 : RenderSVGInline(element, WTF::move(style))
/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DMessageSender.h50 return sendMessage(WTF::move(encoder), messageSendFlags);
58 return sendSync(std::forward<T>(message), WTF::move(reply), messageSenderDestinationID(), timeout, syncSendFlags);
66 return messageSenderConnection()->sendSync(WTF::move(message), WTF::move(reply), destinationID, timeout, syncSendFlags);
H A DConnection.cpp162 connectionAndIncomingMessage.message = WTF::move(message);
170 m_messagesToDispatchWhileWaitingForSyncReply.append(WTF::move(connectionAndIncomingMessage));
197 messagesToPutBack.append(WTF::move(connectionAndIncomingMessage));
201 connectionAndIncomingMessage.connection->dispatchMessage(WTF::move(connectionAndIncomingMessage.message));
208 m_messagesToDispatchWhileWaitingForSyncReply.append(WTF::move(message));
325 sendSyncReply(WTF::move(replyEncoder));
380 m_outgoingMessages.append(WTF::move(encoder));
390 return sendMessage(WTF::move(encoder));
405 std::unique_ptr<MessageDecoder> returnedMessage = WTF::move(message);
429 auto decoder = WTF::move(m_waitingForMessag
[all...]
/macosx-10.10/Chess-310.6/Sources/
H A DMBCBoard.h3 Contains: Fundamental move and board classes.
147 // A compact move has a very short existence and is only used in places
153 // MBCMove - A move
159 MBCSquare fFromSquare; // Starting square of piece if move
160 MBCSquare fToSquare; // Finishing square if move or drop
164 MBCCastling fCastling; // Castling move, set by [board makeMove]
174 - (id) initFromCompactMove:(MBCCompactMove)move;
175 + (id) newFromCompactMove:(MBCCompactMove)move;
176 + (id) moveFromCompactMove:(MBCCompactMove)move;
180 + (BOOL) compactMoveIsWin:(MBCCompactMove)move;
[all...]
H A DMBCEngine.mm244 - (void) executeMove:(MBCMove *) move;
250 fLastEngineMove = [move retain];
253 object:fDocument userInfo:(id)move];
258 MBCMove * move = [MBCMove moveFromCompactMove:[message msgid]];
261 if (move->fCommand == kCmdStartGame) {
267 // Otherwise, handle move confirmations or rejections here and
270 switch (move->fCommand) {
273 // Last unchecked move was rejected
278 object:fDocument userInfo:(id)move];
284 // Suspend processing until move performe
[all...]
/macosx-10.10/Chess-310.6/sjeng/
H A Dutils.c69 /* calculate move speed. The idea is that if we are behind, we move
145 void comp_to_san (move_s move, char str[]) argument
157 f_rank = rank (move.from);
158 t_rank = rank (move.target);
160 f_file = file (move.from)+converter-1;
161 t_file = file (move.target)+converter-1;
163 if (move.from == 0)
165 sprintf (str, "%c@%c%d", type_to_char[move.promoted], t_file, t_rank);
167 else if ((board[move
309 comp_to_coord(move_s move, char str[]) argument
484 move_s move; local
654 char move[STR_BUFF]; local
914 verify_coord(char input[], move_s *move) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DWebKitBlobBuilder.cpp93 m_items.append(BlobPart(WTF::move(m_appendableData)));
100 m_items.append(BlobPart(WTF::move(m_appendableData)));
101 return WTF::move(m_items);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperTile.cpp41 sourceOffset.move(-dirtyRect.x(), -dirtyRect.y());
44 targetRect.move(-m_rect.x(), -m_rect.y());
62 targetRect.move(-m_rect.x(), -m_rect.y());
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DAPIArray.cpp40 return adoptRef(new Array(WTF::move(elements)));
51 return create(WTF::move(elements));
69 : m_elements(WTF::move(elements))
/macosx-10.10/ncurses-44/ncurses/test/
H A Dlrtest.c112 move(LINES / 2 - 1, 4);
121 move(LINES / 2, 4);
125 move(LINES / 2, 4);
127 move(LINES / 2 + 1, 4);
129 move(LINES / 2 + 2, 4);
H A Dsavescreen.c101 move(0, 0);
104 move(y, x);
245 move(2, 0);
246 printw("Use h,j,k,l or arrows to move around the screen\n");
307 move(0, 0);
309 move(y, x);
311 move(y, x);
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssemblerX86_64.h64 move(TrustedImmPtr(address.m_ptr), scratchRegister);
70 move(TrustedImmPtr(address.m_ptr), scratchRegister);
76 move(TrustedImmPtr(address.m_ptr), scratchRegister);
82 move(TrustedImmPtr(address.m_ptr), scratchRegister);
88 move(TrustedImmPtr(address.m_ptr), scratchRegister);
94 move(TrustedImmPtr(address.m_ptr), scratchRegister);
100 move(TrustedImmPtr(address), dest);
109 move(TrustedImmPtr(address), dest);
116 move(TrustedImmPtr(address.m_ptr), scratchRegister);
122 move(im
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DMessagePort.cpp83 m_entangledChannel->postMessageToRemote(message, WTF::move(channels));
97 return WTF::move(m_entangledChannel);
137 m_entangledChannel = WTF::move(remote);
163 std::unique_ptr<MessagePortArray> ports = MessagePort::entanglePorts(*m_scriptExecutionContext, WTF::move(channels));
164 RefPtr<Event> evt = MessageEvent::create(WTF::move(ports), message.release());
208 (*portArray)[i] = WTF::move(channel);
221 port->entangle(WTF::move((*channels)[i]));
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathPredicate.cpp50 : m_value(WTF::move(value))
61 addSubexpression(WTF::move(expression));
72 addSubexpression(WTF::move(lhs));
73 addSubexpression(WTF::move(rhs));
101 addSubexpression(WTF::move(lhs));
102 addSubexpression(WTF::move(rhs));
204 addSubexpression(WTF::move(lhs));
205 addSubexpression(WTF::move(rhs));
226 addSubexpression(WTF::move(lhs));
227 addSubexpression(WTF::move(rh
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DTransformState.cpp63 m_lastPlanarPoint.move(adjustedOffset);
65 m_lastPlanarQuad.move(adjustedOffset);
68 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) function in class:WebCore::TransformState
82 // Just move the point and/or quad.
113 move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate);
158 point.move((m_direction == ApplyTransformDirection) ? m_accumulatedOffset : -m_accumulatedOffset);
174 quad.move((m_direction == ApplyTransformDirection) ? m_accumulatedOffset : -m_accumulatedOffset);
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGSaneStringGetByValSlowPathGenerator.h61 jit->m_jit.move(
64 jit->m_jit.move(
66 jit->m_jit.move(

Completed in 150 milliseconds

1234567891011>>