Searched refs:nodeID (Results 1 - 25 of 100) sorted by relevance

1234

/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingTreeOverflowScrollingNode.cpp36 ScrollingTreeOverflowScrollingNode::ScrollingTreeOverflowScrollingNode(ScrollingTree& scrollingTree, ScrollingNodeID nodeID) argument
37 : ScrollingTreeScrollingNode(scrollingTree, OverflowScrollingNode, nodeID)
H A DScrollingTreeNode.cpp35 ScrollingTreeNode::ScrollingTreeNode(ScrollingTree& scrollingTree, ScrollingNodeType nodeType, ScrollingNodeID nodeID) argument
38 , m_nodeID(nodeID)
H A DScrollingStateOverflowScrollingNode.cpp37 PassRefPtr<ScrollingStateOverflowScrollingNode> ScrollingStateOverflowScrollingNode::create(ScrollingStateTree& stateTree, ScrollingNodeID nodeID) argument
39 return adoptRef(new ScrollingStateOverflowScrollingNode(stateTree, nodeID));
42 ScrollingStateOverflowScrollingNode::ScrollingStateOverflowScrollingNode(ScrollingStateTree& stateTree, ScrollingNodeID nodeID) argument
43 : ScrollingStateScrollingNode(stateTree, OverflowScrollingNode, nodeID)
H A DScrollingTree.cpp88 void ScrollingTree::setOrClearLatchedNode(const PlatformWheelEvent& wheelEvent, ScrollingNodeID nodeID) argument
91 setLatchedNode(nodeID);
102 void ScrollingTree::viewportChangedViaDelegatedScrolling(ScrollingNodeID nodeID, const WebCore::FloatRect& fixedPositionRect, double scale) argument
104 ScrollingTreeNode* node = nodeForID(nodeID);
114 void ScrollingTree::scrollPositionChangedViaDelegatedScrolling(ScrollingNodeID nodeID, const WebCore::FloatPoint& scrollPosition, bool inUserInteration) argument
116 ScrollingTreeNode* node = nodeForID(nodeID);
127 scrollingTreeNodeDidScroll(nodeID, scrollPosition, inUserInteration ? SyncScrollingLayerPosition : SetScrollingLayerPosition);
167 ScrollingNodeID nodeID = stateNode->scrollingNodeID(); local
170 auto it = m_nodeMap.find(nodeID);
176 node = createScrollingTreeNode(stateNode->nodeType(), nodeID);
[all...]
H A DScrollingStateFixedNode.cpp38 PassRefPtr<ScrollingStateFixedNode> ScrollingStateFixedNode::create(ScrollingStateTree& stateTree, ScrollingNodeID nodeID) argument
40 return adoptRef(new ScrollingStateFixedNode(stateTree, nodeID));
43 ScrollingStateFixedNode::ScrollingStateFixedNode(ScrollingStateTree& tree, ScrollingNodeID nodeID) argument
44 : ScrollingStateNode(FixedNode, tree, nodeID)
H A DThreadedScrollingTree.cpp98 void ThreadedScrollingTree::scrollingTreeNodeDidScroll(ScrollingNodeID nodeID, const FloatPoint& scrollPosition, SetOrSyncScrollingLayerPosition scrollingLayerPositionAction) argument
103 if (nodeID == rootNode()->scrollingNodeID())
106 callOnMainThread(bind(&AsyncScrollingCoordinator::scheduleUpdateScrollPositionAfterAsyncScroll, m_scrollingCoordinator.get(), nodeID, scrollPosition, isHandlingProgrammaticScroll(), scrollingLayerPositionAction));
H A DScrollingStateStickyNode.cpp38 PassRefPtr<ScrollingStateStickyNode> ScrollingStateStickyNode::create(ScrollingStateTree& stateTree, ScrollingNodeID nodeID) argument
40 return adoptRef(new ScrollingStateStickyNode(stateTree, nodeID));
43 ScrollingStateStickyNode::ScrollingStateStickyNode(ScrollingStateTree& tree, ScrollingNodeID nodeID) argument
44 : ScrollingStateNode(StickyNode, tree, nodeID)
H A DScrollingStateTree.cpp70 PassRefPtr<ScrollingStateNode> ScrollingStateTree::createNode(ScrollingNodeType nodeType, ScrollingNodeID nodeID) argument
74 return ScrollingStateFixedNode::create(*this, nodeID);
76 return ScrollingStateStickyNode::create(*this, nodeID);
78 return ScrollingStateFrameScrollingNode::create(*this, nodeID);
80 return ScrollingStateOverflowScrollingNode::create(*this, nodeID);
136 void ScrollingStateTree::detachNode(ScrollingNodeID nodeID) argument
138 if (!nodeID)
142 ScrollingStateNode* node = m_stateNodeMap.take(nodeID);
H A DScrollingTreeFrameScrollingNode.cpp36 ScrollingTreeFrameScrollingNode::ScrollingTreeFrameScrollingNode(ScrollingTree& scrollingTree, ScrollingNodeID nodeID) argument
37 : ScrollingTreeScrollingNode(scrollingTree, FrameScrollingNode, nodeID)
H A DAsyncScrollingCoordinator.h116 : nodeID(0)
122 : nodeID(scrollingNodeID)
128 ScrollingNodeID nodeID; member in struct:WebCore::AsyncScrollingCoordinator::ScheduledScrollUpdate
135 return nodeID == other.nodeID
/macosx-10.10/WebCore-7600.1.25/page/scrolling/mac/
H A DScrollingTreeMac.cpp47 PassRefPtr<ScrollingTreeNode> ScrollingTreeMac::createScrollingTreeNode(ScrollingNodeType nodeType, ScrollingNodeID nodeID) argument
51 return ScrollingTreeFrameScrollingNodeMac::create(*this, nodeID);
56 return ScrollingTreeFixedNode::create(*this, nodeID);
58 return ScrollingTreeStickyNode::create(*this, nodeID);
H A DScrollingTreeFixedNode.mm37 PassRefPtr<ScrollingTreeFixedNode> ScrollingTreeFixedNode::create(ScrollingTree& scrollingTree, ScrollingNodeID nodeID)
39 return adoptRef(new ScrollingTreeFixedNode(scrollingTree, nodeID));
42 ScrollingTreeFixedNode::ScrollingTreeFixedNode(ScrollingTree& scrollingTree, ScrollingNodeID nodeID)
43 : ScrollingTreeNode(scrollingTree, FixedNode, nodeID)
H A DScrollingTreeStickyNode.mm38 PassRefPtr<ScrollingTreeStickyNode> ScrollingTreeStickyNode::create(ScrollingTree& scrollingTree, ScrollingNodeID nodeID)
40 return adoptRef(new ScrollingTreeStickyNode(scrollingTree, nodeID));
43 ScrollingTreeStickyNode::ScrollingTreeStickyNode(ScrollingTree& scrollingTree, ScrollingNodeID nodeID)
44 : ScrollingTreeNode(scrollingTree, StickyNode, nodeID)
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Scrolling/
H A DRemoteScrollingTree.cpp103 void RemoteScrollingTree::scrollingTreeNodeDidScroll(ScrollingNodeID nodeID, const FloatPoint& scrollPosition, SetOrSyncScrollingLayerPosition scrollingLayerPositionAction) argument
105 m_scrollingCoordinatorProxy.scrollingTreeNodeDidScroll(nodeID, scrollPosition, scrollingLayerPositionAction);
108 void RemoteScrollingTree::scrollingTreeNodeRequestsScroll(ScrollingNodeID nodeID, const FloatPoint& scrollPosition, bool representsProgrammaticScroll) argument
110 m_scrollingCoordinatorProxy.scrollingTreeNodeRequestsScroll(nodeID, scrollPosition, representsProgrammaticScroll);
113 PassRefPtr<ScrollingTreeNode> RemoteScrollingTree::createScrollingTreeNode(ScrollingNodeType nodeType, ScrollingNodeID nodeID) argument
118 return ScrollingTreeFrameScrollingNodeIOS::create(*this, nodeID);
120 return ScrollingTreeFrameScrollingNodeMac::create(*this, nodeID);
124 return ScrollingTreeOverflowScrollingNodeIOS::create(*this, nodeID);
130 return ScrollingTreeFixedNode::create(*this, nodeID);
132 return ScrollingTreeStickyNode::create(*this, nodeID);
[all...]
/macosx-10.10/WebCore-7600.1.25/page/scrolling/ios/
H A DScrollingTreeIOS.cpp85 void ScrollingTreeIOS::scrollingTreeNodeDidScroll(ScrollingNodeID nodeID, const FloatPoint& scrollPosition, SetOrSyncScrollingLayerPosition scrollingLayerPositionAction) argument
90 if (nodeID == rootNode()->scrollingNodeID())
93 callOnMainThread(bind(&AsyncScrollingCoordinator::scheduleUpdateScrollPositionAfterAsyncScroll, m_scrollingCoordinator.get(), nodeID, scrollPosition, isHandlingProgrammaticScroll(), scrollingLayerPositionAction));
96 PassRefPtr<ScrollingTreeNode> ScrollingTreeIOS::createScrollingTreeNode(ScrollingNodeType nodeType, ScrollingNodeID nodeID) argument
100 return ScrollingTreeFrameScrollingNodeIOS::create(*this, nodeID);
105 return ScrollingTreeFixedNode::create(*this, nodeID);
107 return ScrollingTreeStickyNode::create(*this, nodeID);
/macosx-10.10/WebCore-7600.1.25/page/scrolling/coordinatedgraphics/
H A DScrollingCoordinatorCoordinatedGraphics.cpp61 void ScrollingCoordinatorCoordinatedGraphics::detachFromStateTree(ScrollingNodeID nodeID) argument
63 ScrollingStateNode* node = m_scrollingStateTree->stateNodeForID(nodeID);
67 m_scrollingStateTree->detachNode(nodeID);
75 void ScrollingCoordinatorCoordinatedGraphics::updateViewportConstrainedNode(ScrollingNodeID nodeID, const ViewportConstraints& constraints, GraphicsLayer* graphicsLayer) argument
79 ScrollingStateNode* node = m_scrollingStateTree->stateNodeForID(nodeID);
/macosx-10.10/IOFireWireAVC-422.4.0/IOFireWireAVC/
H A DIOFireWireAVCTargetSpace.h48 UInt16 nodeID,
60 UInt16 nodeID);
183 virtual UInt32 doWrite(UInt16 nodeID, IOFWSpeed &speed, FWAddress addr, UInt32 len,
187 IOReturn targetSendAVCResponse(UInt32 generation, UInt16 nodeID, IOBufferMemoryDescriptor *pBufMemDesc, UInt32 size);
190 IOReturn handleUnitInfoCommand(UInt16 nodeID, UInt32 generation, const char *buf, UInt32 len);
191 IOReturn handleSubUnitInfoCommand(UInt16 nodeID, UInt32 generation, const char *buf, UInt32 len);
192 IOReturn handlePlugInfoCommand(UInt16 nodeID, UInt32 generation, const char *buf, UInt32 len);
193 IOReturn handlePowerCommand(UInt16 nodeID, UInt32 generation, const char *buf, UInt32 len);
194 IOReturn handleConnectCommand(UInt16 nodeID, UInt32 generation, const char *buf, UInt32 len);
195 IOReturn handleDisconnectCommand(UInt16 nodeID, UInt3
[all...]
H A DIOFireWireAVCProtocolUserClient.h50 static void forwardPlugWrite(void *refcon, UInt16 nodeID, UInt32 plug, UInt32 oldVal, UInt32 newVal);
54 UInt16 nodeID,
66 UInt16 nodeID);
68 virtual IOReturn sendAVCResponse(UInt32 generation, UInt16 nodeID, const char *buffer, UInt32 size);
114 UInt16 nodeID,
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWAddressSpace.h60 typedef UInt32 (*FWWriteCallback)(void *refcon, UInt16 nodeID, IOFWSpeed &speed,
66 @param nodeID is the node originating the request
85 typedef UInt32 (*FWReadCallback)(void *refcon, UInt16 nodeID, IOFWSpeed &speed,
130 virtual bool isTrustedNode( UInt16 nodeID );
198 @param nodeID FireWire Read from nodeID.
201 @param len read 'len' bytes from nodeID.
206 virtual UInt32 doRead(UInt16 nodeID, IOFWSpeed &speed, FWAddress addr, UInt32 len,
212 @param nodeID FireWire Write to nodeID
[all...]
H A DIOFWUserPseudoAddressSpace.h133 io_user_reference_t nodeID ; member in struct:IOFWPacketHeader_t::__anon1530
172 io_user_reference_t nodeID ; member in struct:IOFWPacketHeader_t::ReadPacket_t
193 UInt16 nodeID,
209 UInt16 nodeID,
219 UInt16 nodeID,
254 UInt16 nodeID,
265 UInt16 nodeID,
282 UInt16 nodeID,
291 UInt16 nodeID,
H A DIOFireWireLink.h123 virtual IOReturn asyncRead(UInt16 nodeID, UInt16 addrHi, UInt32 addrLo,
127 virtual IOReturn asyncReadQuadResponse(UInt16 nodeID, int speed,
130 virtual IOReturn asyncReadResponse(UInt16 nodeID, int speed,
134 virtual IOReturn asyncWrite( UInt16 nodeID,
145 virtual IOReturn asyncWriteResponse(UInt16 nodeID, int speed,
159 virtual IOReturn asyncLockResponse(UInt16 nodeID, int speed,
187 virtual void setNodeIDPhysicalFilter ( UInt16 nodeID, bool state ) = 0;
188 virtual void setNodeFlags ( UInt16 nodeID, UInt32 flags ) = 0;
224 virtual bool isPhysicalAccessEnabledForNodeID( UInt16 nodeID );
H A DIOFWUserPseudoAddressSpace.cpp186 UInt16 nodeID,
199 header->IncomingPacket.nodeID = nodeID ;
230 UInt16 nodeID,
243 header->ReadPacket.nodeID = nodeID ;
257 UInt16 nodeID,
263 InitIncomingPacketHeader( header, next, len, offset, ref, nodeID, speed, addr, true ) ;
577 UInt32 IOFWUserPseudoAddressSpace::doLock(UInt16 nodeID, IOFWSpeed &speed, FWAddress addr, UInt32 inLen, argument
592 return doPacket( nodeID, spee
180 InitIncomingPacketHeader( IOFWPacketHeader_t* header, IOFWPacketHeader_t* next, const IOByteCount len, const IOByteCount offset, OSAsyncReference64* ref, UInt16 nodeID, const IOFWSpeed& speed, const FWAddress& addr, const bool isLock) argument
223 InitReadPacketHeader( IOFWPacketHeader* header, IOFWPacketHeader* next, IOByteCount len, IOByteCount offset, OSAsyncReference64* ref, IOFWRequestRefCon reqrefcon, UInt16 nodeID, IOFWSpeed& speed, FWAddress addr, UInt32 generation) argument
251 InitLockPacketHeader( IOFWPacketHeader* header, IOFWPacketHeader* next, IOByteCount len, IOByteCount offset, OSAsyncReference64* ref, UInt16 nodeID, IOFWSpeed& speed, FWAddress addr, const UInt32 generation, IOFWRequestRefCon reqrefcon) argument
599 doPacket( UInt16 nodeID, IOFWSpeed& speed, FWAddress addr, UInt32 len, const void* buf, IOFWRequestRefCon reqrefcon, IOFWPacketHeader::QueueTag tag, UInt32* oldVal) argument
787 pseudoAddrSpaceReader( void* refCon, UInt16 nodeID, IOFWSpeed& speed, FWAddress addr, UInt32 len, IOMemoryDescriptor** buf, IOByteCount* outOffset, IOFWRequestRefCon reqrefcon) argument
806 pseudoAddrSpaceWriter( void* refCon, UInt16 nodeID, IOFWSpeed& speed, FWAddress addr, UInt32 len, const void* buf, IOFWRequestRefCon reqrefcon) argument
[all...]
/macosx-10.10/cddafs-253/
H A DAppleCDDAFileSystemUtils.h49 UInt32 nodeID,
56 UInt32 nodeID,
68 UInt32 nodeID,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Scrolling/
H A DRemoteScrollingCoordinator.mm93 void RemoteScrollingCoordinator::scrollPositionChangedForNode(ScrollingNodeID nodeID, const FloatPoint& scrollPosition, bool syncLayerPosition)
95 scheduleUpdateScrollPositionAfterAsyncScroll(nodeID, scrollPosition, false /* FIXME */, syncLayerPosition ? SyncScrollingLayerPosition : SetScrollingLayerPosition);
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DSCatalog.c163 HFSCatalogNodeID nodeID; local
185 nodeID = 0;
192 nodeID = rec.hfsFolder.folderID;
199 nodeID = rec.hfsPlusFolder.folderID;
204 nodeID = rec.hfsFile.fileID;
208 nodeID = rec.hfsPlusFile.fileID;
215 if (nodeID == kHFSRootFolderID)
224 if ( nodeID ) {
225 BuildCatalogKey(nodeID, NULL, isHFSPlus, keyp);

Completed in 387 milliseconds

1234